环境声明:
1.配置spring boot 环境,配置gradle 环境,配置jdk8,开发工具idea。安装mysql 配置,
2.参考链接mybatis mybatis 3 mybatis 自动声明 spring boot 官方文档
3. 基础只是必须要了解 @Configration @Bean 的作用。该注解的使用。了解spring ioc。 spring aop 原理
接入项目
- 添加mybatis 依赖
compile fileTree(dir:'lib',includes: ['*.jar'])
compile 'org.springframework.boot:spring-boot-starter-web'
compile 'org.springframework.boot:spring-boot-devtools'
compile 'org.springframework.boot:spring-boot-starter-security'
compile 'mysql:mysql-connector-java'
/** 配置mybatis */
compile ("org.mybatis.spring.boot:mybatis-spring-boot-starter:1.1.1")
testCompile 'org.springframework.boot:spring-boot-starter-test'
- 其中mybatis 接入只要引入 中间的那句org.mybatis.spring.boot:mybatis-spring-boot-starter:1.1.1
@org.springframework.context.annotation.Configuration
public class MyBatisConfig{
private static final Logger logger=LoggerFactory.getLogger(MyBatisConfig.class);
@Bean
public DataSourc ecreateDataSource() throws SQLException{
return DataSourceBuilder.create(Thread.currentThread().getContextClassLoader())
.driverClassName("com.mysql.jdbc.Driver")
.url("jdbc:mysql://localhost:3306/test?useUnicode=true&characterEncoding=utf8&connectTimeout=60000&socketTimeout=60000&autoReconnect=true&autoReconnectForPools=true&failOverReadOnly=false&useSSL=false")
.username("root")
.password("root").build();
}
}
3.声明datasource 数据源,其中这里声明dataSource数据源采用builder 的设计模式。不了解的童鞋们可以百度一下builder设计模式。其中在以往写android 的时候builder 设计模式。其实就是他设置某些属性的时候最后返回回来的是this。最后通过build 来构建出datasource 数据源,spring会根据容器内的datasource 数据源读取数据,然后便可以成功连接数据库了。
@SpringBootApplication
@EnableCaching
@EnableTransactionManagement
public class Application implements CommandLineRunner{
private static final Logger LOGGER=LoggerFactory.getLogger(Application.class);
@Autowired
UserMapperuserMapper;
public static void main(String[]args) {
ApplicationContext ctx=SpringApplication.run(Application.class, args);
LOGGER.debug("Let's inspect the beans provided by Spring Boot:");
String[] beanNames=ctx.getBeanDefinitionNames();
Arrays.sort(beanNames);
for(StringbeanName:beanNames) {
LOGGER.debug("Beans:", beanName);
}
}
@Bean
public WebMvcConfigurer corsConfigurer() {
return newWebMvcConfigurerAdapter() {
@Override
public void addCorsMappings(CorsRegistryregistry) {
registry.addMapping("/api/**").allowedOrigins("http://localhost");
}
};
}
@Bean
public MultipartConfigElement multipartConfigElement() {
MultipartConfigFactory factory=newMultipartConfigFactory();
/*factory.setMaxFileSize("2097152KB");
factory.setMaxRequestSize("2097152KB");*/
return factory.createMultipartConfig();
}
@Override
public void run(String...args)throws Exception{
/** 检验数据库配置是否成功 */
System.out.println("--------"+this.userMapper.selectUserName("15815800670"));
}
}
4.配置事务@EnableTransactionManagement 其实就是一个注解。
5.写入mapper 和dao 这里没什么好说的。直接看代码吧。
6.写入test 通过继承CommandLineRunner 完成run 的重写,然后则可以配置那么既可以在spring boot 启动以后运行 以下的代码。this.userMapper.selectUserName("15815800670");