摘要:
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 阅读全文