ssh整合错误

Spring 与hibernate的错误:

能打开session对象,但是没法创建表————————————》  hibernate方言错误。 特别是MysqL 方言都是尝试一遍



Spring与struts的错误:

Line: 209 - com/opensymphony/xwork2/spring/SpringObjectFactory.java:209:-1

原因1 , 你给struts配置了spring 但是你没让spring 容器启动,因此要在web.xml中配置

 <context-param>
  <param-name>contextConfigLocation</param-name>
  <param-value>classpath:applicationContext*.xml</param-value>
 </context-param>
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>

原因2 , 你lib中不小心把spring-struts-plugin.jar 拉进你的lib中了。 你要把tomcat中 wepapp中的项目 删除。然后重新加载一次,就OK了。

你可能感兴趣的:(ssh整合错误)