springboot小记
Posted timelessmemoryli
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了springboot小记相关的知识,希望对你有一定的参考价值。
1.在集成mybatis后发现,mybatis的xml文件编译后在编译目录中找不到
原因:
默认不编译 src\\main\\java下的xml文件
解决方案
pom下加入
<build>
<resources>
<resource>
<directory>src/main/java</directory>
<includes>
<include>**/*.xml</include>
</includes>
</resource>
</resources>
2.spring-beans.xml文件如何读取
springboot提倡注解配置,只剩一个properties,那么一些配置bean的xml怎么引入呢
解决方案
启动类加入
@ImportResource(value="classpath:*.xml")
3 springboot中要配置一些bean,并且交由spring管理应该怎么做
@Configuration与@Bean
@Configuration
public class TestConfiguration
public TestConfiguration()
System.out.println("TestConfiguration容器启动初始化。。。");
// @Bean注解注册bean,同时可以指定初始化和销毁方法
@Bean
@Scope("prototype")
public TestBean testBean()
return new TestBean();
以上是关于springboot小记的主要内容,如果未能解决你的问题,请参考以下文章
小记: Mybatis重拾之路(SpringBoot整合Mybatis)