这是个相对独立的web应用程序
现在想将它打包成war, 先将它压缩成.zip文件后改名.
可是这样不会自动生成和配置web.xml文件
怎么做才能生成完整的(包括配置正确web.xml的)war包????
11 个解决方案
#1
at the same directory as 'WEB-INF':
jar cvf yourFile.war *
jar cvf yourFile.war *
#2
这样的话web.xml文件还是不知如何配置呀
比如,我怎么指定这个web程序的首页是哪个文件呢?
比如,我怎么指定这个web程序的首页是哪个文件呢?
#3
<welcome-file-list>
<welcome-file>web的首页</welcome-file>
</welcome-file-list>
<welcome-file>web的首页</welcome-file>
</welcome-file-list>
#4
你可以用jb来打包。比较简单
#5
服务器不可能会自动配置你的web.xml文件的。
#6
把配置好的web.xml文件也打进去不就OK了,war文件不就是包括WEB-INF{web.xml classes}的zip包吗!
#7
请问在做好一个工程后怎样在jb里打成war包呢?
#8
<welcome-file-list>
<welcome-file>web的首页</welcome-file>
</welcome-file-list>
这个首页的路径该怎么写呢?? 比如首页在这个bbs目录下的jsp目录下
<welcome-file>web的首页</welcome-file>
</welcome-file-list>
这个首页的路径该怎么写呢?? 比如首页在这个bbs目录下的jsp目录下
#9
类似这种写法
<welcome-file-list>
<welcome-file>index.html</welcome-file>
</welcome-file-list>
<welcome-file-list>
<welcome-file>index.html</welcome-file>
</welcome-file-list>
#10
我也想知道
#11
在JB中,工程文件下见一个WEB APPLICATION,选择属性,打包。WAR,直接放到WEBAPPS下
#1
at the same directory as 'WEB-INF':
jar cvf yourFile.war *
jar cvf yourFile.war *
#2
这样的话web.xml文件还是不知如何配置呀
比如,我怎么指定这个web程序的首页是哪个文件呢?
比如,我怎么指定这个web程序的首页是哪个文件呢?
#3
<welcome-file-list>
<welcome-file>web的首页</welcome-file>
</welcome-file-list>
<welcome-file>web的首页</welcome-file>
</welcome-file-list>
#4
你可以用jb来打包。比较简单
#5
服务器不可能会自动配置你的web.xml文件的。
#6
把配置好的web.xml文件也打进去不就OK了,war文件不就是包括WEB-INF{web.xml classes}的zip包吗!
#7
请问在做好一个工程后怎样在jb里打成war包呢?
#8
<welcome-file-list>
<welcome-file>web的首页</welcome-file>
</welcome-file-list>
这个首页的路径该怎么写呢?? 比如首页在这个bbs目录下的jsp目录下
<welcome-file>web的首页</welcome-file>
</welcome-file-list>
这个首页的路径该怎么写呢?? 比如首页在这个bbs目录下的jsp目录下
#9
类似这种写法
<welcome-file-list>
<welcome-file>index.html</welcome-file>
</welcome-file-list>
<welcome-file-list>
<welcome-file>index.html</welcome-file>
</welcome-file-list>
#10
我也想知道
#11
在JB中,工程文件下见一个WEB APPLICATION,选择属性,打包。WAR,直接放到WEBAPPS下