欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

404排查总结(struts2)

程序员文章站 2022-05-29 21:29:17
...
  • 静态页面(JSP或freemarker等模板)的URL是否写错:URI、通配符、方法名、action、拼写等问题
  • 控制层:Action的方法名、返回值、注解(@Controller @Scope(“prototype”))
  • struts.xml: 中的通配符、路径、name等
    spring管理struts:< constant name = “struts.objectFactory” value = “spring” />
  • applicationContext-dao.xml
    spring 整合hibernate中添加xxxx.hbm.xml
<bean id="sessionFactory" class="org.springFramework.orm.hibernate5.LocalSessionFactoryBean">
	<property name="dataSource" ref="dataSource" />
	<property name="mappingResources">
		<list>
			<value>com/chuai/pojo/Role.hbm.xml</value>
			<value>com/chuai/pojo/user.hbm.xml</value>
		</list>
	</property>
</bean>
相关标签: 404