在微服务中,一个完整的项目被拆分成多个不相同的独立的服务,各个服务独立部署在不同的服务器上,各自的 session 被从物理空间上隔离开了,但是经常,我们需要在不同微服务之间共享 session ,常见的方案就是 Spring Session + Redis 来实现 session 共享。
The system uses Mysql as its database and is developed based on the springboot framework. During the design process, it fully ensures the readability, practicability, expansibility, universality, ease of later maintenance, operational convenience, and interface simplicity of the system.
所有属性都有对应的Setter & Getter方法。在Spring Boot中,添加Lombok依赖,可以在创建项目时勾选,也可以后期自行添加,依赖项的代码为:完成后,在各POJO类型中,将不再需要在源代码添加Setters & Getters、equals、hashCode、toString这些方法,只需要在POJO类上添加@Data注解即可!