这个Spring配置异常怎么解决,高手帮忙看看。
org.springframework.beans.factory.BeanCreationException:Errorcreatingbeanwithname'ses...
org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sessionFactory' defined in ServletContext resource [/WEB-INF/applicationContext.xml]: Invocation of init method failed; nested exception is java.lang.StringIndexOutOfBoundsException: String index out of range: 0
。。。中间太多省略了,这是哪里的异常?
Caused by: java.lang.StringIndexOutOfBoundsException: String index out of range: 0
<bean id="sessionFactory" class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">
<property name="dataSource" ref="dataSource" />
<property name="hibernateProperties">
<props>
<prop key="hibernate.dialect">
org.hibernate.dialect.MySQLInnoDBDialect
</prop>
<prop key="hibernate.show_sql">true</prop>
</props>
</property>
<property name="mappingResources">
<list>
<value>com/sanqing/domain/Article.hbm.xml</value>
</list>
</property>
</bean> 展开
。。。中间太多省略了,这是哪里的异常?
Caused by: java.lang.StringIndexOutOfBoundsException: String index out of range: 0
<bean id="sessionFactory" class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">
<property name="dataSource" ref="dataSource" />
<property name="hibernateProperties">
<props>
<prop key="hibernate.dialect">
org.hibernate.dialect.MySQLInnoDBDialect
</prop>
<prop key="hibernate.show_sql">true</prop>
</props>
</property>
<property name="mappingResources">
<list>
<value>com/sanqing/domain/Article.hbm.xml</value>
</list>
</property>
</bean> 展开
4个回答
展开全部
1.找不到配置文件的异常:没有找配置文件为controller的xml,修改一下配置文件名字即可。
2.在xml中配置的命名空间找不到对应的Schema的异常:xmlns:util="http://www.springframework.org/schema/util" 去掉,因为schema中不存在util命名
3.找不到jackson.jar的异常:缺少jackson的jar包,导入jackson-all-1.9.5.jar即可
4.bean不是唯一的异常:根据bean的id去获取bean对象。
5.缺少日志jar包:加入commons-logging-1.1.3.jar即可。
6.找不到bean异常:在applicationContext.xml中找不到id为filter2的bean,配置一下即可。
7.缺少spring-webmvc-4.0.6.RELEASE.jar包:在项目中加入spring的mvc架包即可。
展开全部
/WEB-INF/applicationContext.xml]: Invocation of init method failed;你是不是在这个配置里初始化执行某个方法了<bean id="xxx" class="xxx" init-method="方法名"/>
更多追问追答
追问
太多,贴出来字数超限,哪个bean里面都没有配置 init-method="方法名 这个
追答
报错意思是说:sessionFactory的bean未创建成功。原因在于你的属性定义配置中某些名称有误,自己核对一下。顺便问下你是用什么代理?
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
Caused by: java.lang.StringIndexOutOfBoundsException: String index out of range: 0
这个不是告诉你了么。String越界了
这个不是告诉你了么。String越界了
追问
但是越界是出在哪里呢,怎么改啊,配置文件太多了贴不出来啊
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
把你的sessionFactory这个bean的配置文件贴出来啊
追问
贴出来了,是哪里的问题呢
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询