摘要:
项目创建 首先,来创建一个 Spring Boot 项目,引入 Cache 依赖: 工程创建完成后,引入 Ehcache 的依赖,Ehcache 目前有两个版本: 这里采用第二个,在 pom.xml 文件中,引入 Ehcache 依赖: <dependencies> <dependency> <gr 阅读全文
摘要:
导入依赖 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-cache</artifactId> </dependency> <dependency> <groupId>o 阅读全文
摘要:
entity public class Book { private Integer id; private String name; private String author; //get set tostring } 自己写一个Json文件 {"id": 99,"name": "红楼梦","a 阅读全文
摘要:
导入依赖 application.properties spring.data.mongodb.host=127.0.0.1 spring.data.mongodb.authentication-database=admin spring.data.mongodb.username=root spr 阅读全文
摘要:
在传统的单服务架构中,一般来说,只有一个服务器,那么不存在 Session 共享问题,但是在分布式/集群项目中,Session 共享则是一个必须面对的问题,先看一个简单的架构图: 在这样的架构中,会出现一些单服务中不存在的问题,例如客户端发起一个请求,这个请求到达 Nginx 上之后,被 Nginx 阅读全文
摘要:
![](https://img2020.cnblogs.com/blog/1164910/202008/1164910-20200805213228204-114498218.png) 阅读全文
摘要:
![](https://img2020.cnblogs.com/blog/1164910/202008/1164910-20200805212748699-472293176.png) ![](https://img2020.cnblogs.com/blog/1164910/202008/1164910-20200805212753732-1132192686.png) ![](https://i 阅读全文
摘要:
工程创建 首先是创建一个Spring Boot工程,创建时添加基本的Web、Jpa以及MySQL依赖,如下: 创建完成后,添加Druid依赖,这里和前文的要求一样,要使用专为Spring Boot打造的Druid,大伙可能发现了,如果整合多数据源一定要使用这个依赖,因为这个依赖中才有DruidDat 阅读全文
摘要:
添加依赖 <dependencies> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-orm</artifactId> <version>5.0.2.RELEASE</version> </depende 阅读全文
摘要:
使用 IntelliJ IDEA 创建项目,创建时选择 JavaEE Persistence 2.创建成功后,添加依赖jar,由于 Jpa 只是一个规范,因此我们说用Jpa实际上必然是用Jpa的某一种实现,那么是哪一种实现呢?当然就是Hibernate了,所以添加的jar,实际上来自 Hiberna 阅读全文
摘要:
添加依赖 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> <dependency> <groupId>org 阅读全文
摘要:
首先是创建工程,和前文一样,创建工程时,也是选择Web、Jdbc以及MySQL驱动,创建成功之后,一定接下来手动添加Druid依赖,由于这里一会需要开发者自己配置DataSoruce,所以这里必须要使用druid-spring-boot-starter依赖,而不是传统的那个druid依赖,因为dru 阅读全文
摘要:
基本配置 JdbcTemplate基本用法实际上很简单,开发者在创建一个SpringBoot项目时,除了选择基本的Web依赖,再记得选上Jdbc依赖,以及数据库驱动依赖即可,如下: 项目创建成功之后,记得添加Druid数据库连接池依赖(注意这里可以添加专门为Spring Boot打造的druid-s 阅读全文
摘要:
自定义欢迎页 Spring Boot 项目在启动后,首先会去静态资源路径下查找index.html作为首页文件,若查找不到,则会去查找动态的index文件作为首页文件。例如,如果想使用静态的index.html作为首页,那么只需在resources/static 目录下创建index.html 文件 阅读全文
摘要:
添加依赖 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-aop</artifactId> </dependency> Service层 @Service public 阅读全文
摘要:
导入thymeleaf依赖 hello.html <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> </head> <body> hello </body> </html> Hell 阅读全文
摘要:
Servlet @WebServlet(urlPatterns = "/myservlet") public class MyServlet extends HttpServlet { @Override protected void doGet(HttpServletRequest req, Ht 阅读全文
摘要:
两个类 CommandLineRunner ApplicationRunner 1. CommandLineRunner @Component @Order(99) //数字越小,优先级越大,默认情况下,优先级的值为Integer.MAX_VALUE,表示优先级最低 public class MyC 阅读全文
摘要:
定义拦截器 public class MyInterceptor implements HandlerInterceptor { @Override public boolean preHandle(HttpServletRequest request, HttpServletResponse re 阅读全文
摘要:
同源策略 很多人对跨域有一种误解,以为这是前端的事,和后端没关系,其实不是这样的,说到跨域,就不得不说说浏览器的同源策略。 同源策略是由Netscape提出的一个著名的安全策略,它是浏览器最核心也最基本的安全功能,现在所有支持JavaScript的浏览器都会使用这个策略。所谓同源是指协议、域名以及端 阅读全文