我有一个网络应用,运行时应该打开http://localhost:8084/info/user/user_login.jsp。我在我的web.xml中给出了
<welcome-file-list>
<welcome-file>/user/user_login.jsp</welcome-file>
</welcome-file-list>
但是在运行应用程序时,它会以http://localhost:8084/info打开,无法获取css,jquery和图像文件。我必须在信息后手动键入/user/user_login.jsp才能转到右侧页面
我的jsp在 信息 - &gt;用户(文件夹) - &GT; user_login.jsp 我该如何纠正?
答案 0 :(得分:0)
将user_login.jsp放在以下文件夹
中WebContent / user / user_login.jsp
并更改web.xml文件
<welcome-file-list>
<welcome-file>user/user_login.jsp</welcome-file>
</welcome-file-list>