简体   繁体   中英

How can I create a standalone Wicket executable?

I have created a Wicket application for a final year programming project. I need to create an executable version of this project. How can I do this in such a way that the person trying to execute the file need not have Wicket, any of its libraries or Tomcat to execute the file?

如果遵循这些说明 ,则会得到一个jar文件,您可以像这样运行它:

java -jar selfcontained.jar
  1. Build WAR file ( mvn package on war packaged project if using maven).
  2. Put it in /deploy directory of fresh Tomcat.
  3. Wrap Tomcat including WAR with Tanuki Service Wrapper .
  4. Give your customer ZIP file (or create GUI installer) and ask him to run a single script that install the service/deamon.

How were you working with your Wicket application so far?

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM