jetty如何设置欢迎页面
现在直接访问127.0.0.1:80是jetty自己的欢迎页面,我通过什么办法能够把这个页面换成我自己某个war包里面的html网页。。求大神指点下
[解决办法]
在etc目录下有个webdefault.xml,在里面改。jetty默认是配置了3个欢迎页
<welcome-file-list>
<welcome-file>index.html</welcome-file>
<welcome-file>index.htm</welcome-file>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
<welcome-file-list>
<welcome-file>index.html</welcome-file>
<welcome-file>index.htm</welcome-file>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
你直接在ip:port 后面的欢迎页面中做个重定向跳转,跳转到你的工程里面的欢迎页面就是了
对,这个我明白,但是我要做的是把ip:port直接设置成访问app这个war包下的index.html,而不是访问ip:port/context
--。。。。这个。。。还有没有其他更好的办法--