问题描述:

Property 'sqlSessionFactory' or 'sqlSessionTemplate' are required

原因分析:

mybatis-spring-1.3.2中取消了自动注入SqlSessionFactory 和 SqlSessionTemplate,所以会报出Property ‘sqlSessionFactory’ or ‘sqlSessionTemplate’ are required错误。

< dependency>
	< groupId>org.mybatis.spring.boot< /groupId>
	< artifactId>mybatis-spring-boot-starter< /artifactId>
	< version>1.3.2</ version>
< /dependency>

解决方案:

方法一:
加上< artifactId>mybatis-spring-boot-starter< /artifactId>这个依赖就自动注入

方法二:
把application.properties配置文件改为application.yml

方法三:
在pom.xml加上

    <dependency>
    			<groupId>com.alibaba</groupId>
    			<artifactId>druid-spring-boot-starter</artifactId>
    			<version>1.1.9</version>
    		</dependency>
Logo

旨在为数千万中国开发者提供一个无缝且高效的云端环境,以支持学习、使用和贡献开源项目。

更多推荐