随笔分类 -  SpringBoot

基于SpringBoot开发
摘要:使用Idea配置SpringBoot项目 项目结构: 可以看到,Spring Boot 提供了一个@SpringBootApplication 注解。 @SpringBootApplication = (默认属性的) @Configuration + @EnableAutoCon:figuratio 阅读全文
posted @ 2020-07-25 15:44 Renduo 阅读(364) 评论(0) 推荐(0)
Springboot+bootstrap界面版之增删改查及图片上传
摘要:一、基于springboot开发 使用Idea配置SpringBoot项目指路:https://www.cnblogs.com/psyu/p/13052751.html 在创建的时候选择thymeleaf、jpa、jdbc、MySQL 在pom依赖中降低MySQL驱动版本 默认是MySQL8 <my 阅读全文
posted @ 2019-11-13 19:04 Renduo 阅读(3151) 评论(4) 推荐(0)
springboot整合Redis
摘要:1.导入pom依赖 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-redis</artifactId> </dependency> <dependency> 阅读全文
posted @ 2019-11-12 19:23 Renduo 阅读(228) 评论(0) 推荐(0)
springboot配置数据库连接池druid、整合mybatis、整合pagehelper
摘要:springboot配置数据库连接池druid druid所需pom依赖 <dependency> <groupId>com.alibaba</groupId> <artifactId>druid-spring-boot-starter</artifactId> <version>1.1.10</v 阅读全文
posted @ 2019-11-09 12:01 Renduo 阅读(7615) 评论(0) 推荐(0)
springboot模板
摘要:Thymeleaf模板 添加pom依赖 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-thymeleaf</artifactId> </dependency> 建议在开 阅读全文
posted @ 2019-11-08 19:29 Renduo 阅读(308) 评论(0) 推荐(0)
springboot入门及配置文件介绍
摘要:SpringBoot是什么? Spring Boot它本身并不提供Spring框架的核心特性以及扩展功能,只是用于快速、敏捷地开发新一代基于Spring框架的应用程序。也就是说,它并不是用来替代Spring的解决方案,而是和Spring框架紧密结合用于提升Spring开发者体验的工具。 同时它集成了 阅读全文
posted @ 2019-11-07 16:58 Renduo 阅读(379) 评论(0) 推荐(0)