spring和mybatis整合出现问题Error creating bean with name 'org.springframework.web.servlet.mvc.

Errorcreatingbeanwithname'org.springframework.web.servlet.mvc.method.annotation.Reque... Error creating bean with name 'org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping#0': Initialization of bean failed; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'org.springframework.web.servlet.handler.MappedInterceptor#0': Cannot create inner bean '(inner bean)' of type [org.springframework.web.servlet.handler.ConversionServiceExposingInterceptor] while setting constructor argument; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name '(inner bean)': Cannot resolve reference to bean 'conversionService' while setting constructor argument; nested exception is org.springframework.beans.factory.NoSuchBeanDefinitionException: No bean named 'conversionService' is defined 展开
 我来答
勤奋小毛驴
推荐于2018-02-27
知道答主
回答量:1
采纳率:100%
帮助的人:1000
展开全部

我的也出现这种问题,发现是因为我添加了这个  

拦截器中增加针对静态资源不进行过滤(涉及spring-mvc.xml)

<mvc:resources location="/" mapping="/**/*.js"/>  

<mvc:resources location="/" mapping="/**/*.css"/>  

<mvc:resources location="/assets/" mapping="/assets/**/*"/>  

<mvc:resources location="/images/" mapping="/images/*" cache-period="360000"/>


下面的部分是问题真正原因,删除掉就好了

<mvc:interceptors>

<mvc:interceptor>

<mvc:mapping path="/**/*"/>

<mvc:exclude-mapping path="/**/fonts/*"/>

<mvc:exclude-mapping path="/**/*.css"/>

<mvc:exclude-mapping path="/**/*.js"/>

<mvc:exclude-mapping path="/**/*.png"/>

<mvc:exclude-mapping path="/**/*.gif"/>

<mvc:exclude-mapping path="/**/*.jpg"/>

<mvc:exclude-mapping path="/**/*.jpeg"/>

<mvc:exclude-mapping path="/**/*login*"/>

<mvc:exclude-mapping path="/**/*Login*"/>

<bean class="com.luwei.console.mg.interceptor.VisitInterceptor"></bean>

</mvc:interceptor>

</mvc:interceptors>

帐号已注销
2018-03-31 · TA获得超过2.3万个赞
知道小有建树答主
回答量:147
采纳率:0%
帮助的人:5.4万
展开全部

Invalid bound statement (not found): cn.itsun.springmvc.service.ItemService.findItemsList

<servlet><servlet-name>springmvc</servlet-name>

<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>

<init-param><param-name>contextConfigLocation</param-name>

<param-value>classpath:springmvc.xml</param-value>

</init-param>

</servlet>

<servlet-mapping>

<servlet-name>springmvc</servlet-name>

<url-pattern>*.action</url-pattern>

</servlet-mapping><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>

web层     controller   使用springmvc技术

service层   不变

dao层   mapper   使用mybatis技术

使用mapper的动态代理开发在写接口时遵循4个原则:

1.接口的方法名 == mapper.xml文件中的id

2.接口的类全路径 == mapper.xml文件中的namespace

3.接口的入参类型 == mapper.xml文件中的resultType

4.接口的返回值类型  == mapper.xml文件中的parameterType

sqlMapConfig.xml文件中 

1)自定义别名:

<typeAliases>

<pacakge name="cn.itsun.pojo" />  (批量自定义别名,别名为类名,大小写不敏感)

或者<typeAlias type="cn.itsun.pojo.User" alias="user" /> (单个自定义别名)

<typeAliases/>

2)sqlMapConfig.xml与mapper.xml文件的映射:

<mappers>

<mapper resource="User.xml" />

<mapper class="cn.itsun.mapper.User.xml" /> (指定接口的类路径)

<package name="cn.itsun.mapper" /> (指定包下的所有mapper接口的xml文件)

(第二种 和 第三种需要把mapper.xml和mapper接口放在一起)

<mappers/>

注意:在配置mybatis和springmvc整合时

在applicationContext.xml文件中写扫描语句后,就不用配置与mapper.xml文件的映射了

<!-- Mapper动态代理开发  之  扫描 -->

<bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">

<!-- 指定一个基本包 -->

<property name="basePackage" value="cn.itsun.springmvc.dao"/>

</bean>

本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
砍出平成第一斧58
2017-04-10 · TA获得超过1567个赞
知道大有可为答主
回答量:2321
采纳率:86%
帮助的人:1194万
展开全部
缺少aspectj-1.6.10.jar和aspectjweaver-1.6.9 吧
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
匿名用户
2016-07-19
展开全部
'(inner bean)':
: Cannot resolve reference to bean 'conversionService'

一个属性,没法初始化 。。。。。。。。。。。。
追问
是因为什么呢?jar包的问题吗
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(2)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式