作为新手,我可以告诉大家一般犯的错误就是哪个小地方写错或者少写了个字母之类的.......然后根据cause by后面直白的说明回去对比检查下,一般都能检查出来~
2017-08-24
请新手注意,排错时像这样子的 Error creating bean with name 'sessionFactory' defined in class path resource [applicationContext.xml] cause by。。。。看cause by部分的,后面对的错误导致前面的问题。
2017-08-24
最赞回答 / 水木星火
下面也要加<beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context" xsi:schemaLocation="http://www.springframework.org/schema/beans...
已采纳回答 / 越阡山
照着源码抄写就成了打字的了
最新回答 / qq_靖_9
我看到的是别人回答的导入struts2-spring-plugin包,我之前导入的是最新的jar包,struts2-spring-plugin-2.3.34一直出现这个问题,后来重新导入struts2-spring-plugin-2.3.15.2就没问题了,大家可以试试。终于解决了
最新回答 / 1101234567891011
我的也是这样,不知道要怎么才好 name : MySQL version : 5.5.56 major : 5 minor : 5
Caused by: org.springframework.beans.factory.NoSuchBeanDefinitionException: No bean named 'productDao' is defined
2017-08-18
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>classpath*:applicationContext.xml</param-value>
</context-param>
加个*就好了。如果要把applicationContext放在src下的话。
<param-name>contextConfigLocation</param-name>
<param-value>classpath*:applicationContext.xml</param-value>
</context-param>
加个*就好了。如果要把applicationContext放在src下的话。
2017-08-18