Reputation: 679
We have an open source solution with complex installation based on the Java platform. The JDK, MySQL and Tomcat and the webapp are needed. We run cross platform so we want to use LZPack which is JRE based. Our software can be find here http://open-modeling.sourceforge.net It is getting difficult when there is already a JDK and/or MySQL version present. Does anyone have an install script for this and likes to share it with us. Some starting point on LZPack are also welcome. The MySQL databased must be filled by means of executing SQL files.
John
Upvotes: 1
Views: 432
Reputation: 4444
If your data base is not too large, you can try to use pure java, embedded in process database (sych as hypersonic or apache derby). This will simplify setup of your application significantly.
And if you will use absolute path to YOUR JRE, you will not be affected by already installed JRE
Upvotes: 2