在myeclipse10.0中正确配置好ssh后可能无法在运行服务器的时候访问主页的时候可能会遇到404错误.
原因在于(可能是因为struct2.0拦截了index.jsp,因为我尝试过只配置struct2.0还是报404)
没有配置好监听器,配置好后就不会报404了
在web.xml文件中添加
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>classpath*:bean.xml</param-value>
</context-param>
其实还是很好奇为什么添加监听器后就不会出现这个问题,但是单独配置struct2.0的时候就会出现.我觉得就算加入监听器也跟这个错误无关,所以只能猜测是因为struct2.0拦截了index.jsp,但是有个问题就是为什么监听器就能是这个拦截无效呢?知道答案麻烦告诉一下,谢谢