Hey. This kind of simple question.

Locally I have x32 Win7 + jdk1.7.0_60 x32 .

The server is x64 Windows Server 2012 + jdk1.7.0_45 x64 .

Question: if I collect the project locally (through idea 13.1) and upload it to the server, what problems may there be with it?

    1 answer 1

    None Bytecode does not depend on the processor architecture.

    • Thanks for the answer. And the version in this case also will not affect? - kidar2
    • @ kidar2 is desirable in development to have the same version of the JVM, as well as on the server. There have been cases when a regular JDK update broke a working code, for example jaxenter.com/… . - a_gura