Correctly distributing a Java application with database
问题 I have this Java application which uses a MySql Database which I want to distribute. My concern is that, to distribute this application I'll need to make the assumption that the target system has both JRE and MySql Server installed. Is there any way I could bundle my application with the JRE and the MySql server so that if they aren't already present on the system, my app can install them and then run the application? 回答1: You CAN bundle a JRE with a Java application, provided that you follow