摘要:
SpringBoot之SpringBoot整合多环境不同配置文件 什么是多环境不同配置文件? 就是在不同的环境中使用不同的文件,比如有三个文件 application-dev.yml 开发 application-test.yml 测试 application-prd.yml 生产 我们就可以在开发 阅读全文
摘要:
SpringBoot之SpringBoot整合lombok 什么是lombok?为什么要用? lombok是IDEA中的一个插件,需要手动安装,为什么要用呢?是因为它可以大大简化模型的代码,在打包编译时自动生成,去除掉模型中的get方法set方法无参构造,全参构造等代码,采用注解表现,简化工作量,提 阅读全文
摘要:
SpringBoot之SpringBoot整合devtools热部署 添加热部署场景启动器 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-devtools</artifactId> < 阅读全文
摘要:
SpringBoot之SpringBoot整合Mybatis 添加Mybatis的场景启动器 <dependency> <groupId>org.mybatis.spring.boot</groupId> <artifactId>mybatis-spring-boot-starter</artifa 阅读全文
摘要:
SpringBoot之SpringBoot整合JdbcTemplate 添加Maven依赖 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-jdbc</artifactI 阅读全文
摘要:
SpringBoot之SpringBoot整合Thymeleaf模板引擎 添加Thymeleaf场景启动器 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-thymele 阅读全文
摘要:
SpringBoot之SpringBoot整合Freemarker模板引擎 添加Freemarker场景启动器 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-freem 阅读全文