Reputation: 17568
Basically we have a very large java application that needs to be ran on 32 bit jre based on many 3rd party components that require 32 bit jre (so that they can load their own 32bit dlls).
Now, we have a new 3rd party software whos API we must call in a 64 bit jre (for the similar reason that their dlls are 64 bit only).
Is it possible for the whole application to run under 32 bit jre, and then when we need to call our new API, launch some sort of module that runs on 64 bit jre, so that the 3rd party API won't blow up when it uses it's 64 bit dlls?
FYI the development environment we use is IntelliJ.
Upvotes: 0
Views: 77