这可能是一个简单的问题。 我有一个简单的应用程序,我使用winstone作为Web服务器进行部署
java -jar winstone-0.9.10.jar --httpPort=8081 --warfile=mywarFile.war
我可以简单地解压缩war文件中的文件并手动将它们复制到我的服务器目录结构中吗?这样做不起作用,为什么?我还需要做什么?
提前感谢您的帮助。
答案 0 :(得分:0)
在Winstone页面http://winstone.sourceforge.net:
java -jar target/winstone-0.9.10.jar --webroot=<location of webroot> (+ other options)
- OR -
java -jar target/winstone-0.9.10.jar --warfile=<location of warfile> (+ other options)
- OR -
java -jar target/winstone-0.9.10.jar --webappsDir=<location of webapps directory> (+ other options)
- OR -
java -jar target/winstone-0.9.10.jar --hostsDir=<location of hosts directory> (+ other options)