随笔分类 -  spring

摘要:Spring原理 SpringBoot 1 Boot 1.1 Boot 骨架项目 如果是 linux 环境,用以下命令即可获取 spring boot 的骨架 pom.xml curl -G https://start.spring.io/pom.xml -d dependencies=web,my 阅读全文
posted @ 2024-11-04 22:43 千夜ん 阅读(39) 评论(0) 推荐(0)
摘要:Spring原理 MVC 1 WEB 1.1 RequestMappingHandlerMapping 与 RequestMappingHandlerAdapter RequestMappingHandlerMapping 与 RequestMappingHandlerAdapter 俩是一对,分别 阅读全文
posted @ 2024-10-20 09:34 千夜ん 阅读(34) 评论(0) 推荐(0)
摘要:Spring 高级 1 容器与Bean 1.1 接口容器 1.1.1 BeanFactory是什么 @SpringBootApplication public class ShowApplication { public static void main(String[] args) { Confi 阅读全文
posted @ 2024-09-22 11:05 千夜ん 阅读(19) 评论(0) 推荐(0)
摘要:SpringSecurity 1 简介 Spring Security是Spring家族中的一个安全管理框架。相比与另外一个安全框架Shiro,它提供了更丰富的功能,社区资源也比Shiro丰富。 一般来说中大型的项目都是使用SpringSecurity来做安全框架。小项目有Shiro的比较多,因为相 阅读全文
posted @ 2023-12-13 23:09 千夜ん 阅读(56) 评论(0) 推荐(0)
摘要:Spring注解驱动 1 项目案例 1.1 新建maven项目 1.2 导入依赖 <dependencies> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-context</artifactId> <v 阅读全文
posted @ 2023-11-15 17:24 千夜ん 阅读(38) 评论(0) 推荐(0)