首页
开源项目
数据库管理工具 DBM
数据中台系统 DataCap
AI 集成 OpenAI Java SDK
开源知识管理系统 InfoSphere
文档中心
开源周刊
开源先行者
动弹
友情链接
关于
文章归档
资源图库
Devlive 开源社区
行动起来,活在当下
累计撰写
123
篇文章
累计创建
32
个标签
累计收到
0
条评论
栏目
首页
开源项目
数据库管理工具 DBM
数据中台系统 DataCap
AI 集成 OpenAI Java SDK
开源知识管理系统 InfoSphere
文档中心
开源周刊
开源先行者
动弹
友情链接
关于
文章归档
资源图库
目 录
CONTENT
以下是
Spring
相关的文章
2024-02-02
Spring Boot 整合 Security 权限控制-6:自定义failureHandler
在 java 源码目录下创建hander文件夹, 在该文件夹下创建CustomAuthenticationFailHander类文件 /** * Licensed to the Apache Software Foundation (ASF) under one * or more contri
2024-02-02
11
0
0
Spring
Spring Boot
2024-02-02
Spring Boot 整合 Security 权限控制-5:实现登录验证/提示功能
配置登录失败跳转地址, 修改WebSecurityConfig配置文件 @Override protected void configure(HttpSecurity http) throws Exception { http.csrf().disable() //
2024-02-02
14
0
0
Spring
Spring Boot
2024-02-02
Spring Boot 整合 Security 权限控制-4:解决 Security 跨域
修改 pom 文件, 使其支持 jdk1.8 <plugin.compiler.version>2.0.2</plugin.compiler.version> <!-- 设置 java sdk 版本 --> <plugin> <groupId>org.apache.maven.plu
2024-02-02
17
0
0
Spring
Spring Boot
2024-02-02
Spring Boot 整合 Security 权限控制-3:初步配置 Security
在源码目录下新建 config 目录, 在该目录下新建 WebSecurityConfig 类文件 /** * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agr
2024-02-02
24
0
0
Spring
Spring Boot
2024-02-01
Spring Boot 整合 Security 权限控制-2:添加登录/首页页面
在 pom 文件中增加thymeleaf页面支持 <!-- 引入页面模板 --> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-thymeleaf</a
2024-02-01
18
0
0
Spring
Spring Boot
2024-02-01
Spring Boot 整合 Security 权限控制-1:基础环境配置
创建一个 maven 项目(可使用 idea 或者其他编辑器) mvn archetype:generate -DgroupId=com.edurt -DartifactId=springboot-security-integration -DarchetypeArtifactId=maven-ar
2024-02-01
11
0
0
Spring
Spring Boot
2024-01-23
Spring DataJPA JDBC教程(基础版)
本教程主要详细讲解SpringBoot整合JPA进行JDBC对数据库的各种操作. 基础环境 技术 版本 Java 1.8+ SpringBoot 2.x.x DataJPA 2.x.x MySQL 5.x.x 创建项目 初始化项目 mvn a
2024-01-23
7
0
0
Spring DataJPA
2024-01-23
Spring DataJPA MongoDB Template教程
本教程主要详细讲解Spring Data MongoDB,它向MongoDB提供Spring Data平台的抽象. MongoDB是基于文档的存储,以持久保存数据,并可用作数据库,缓存,消息代理等. 基础环境 技术 版本 Java 1.8+ SpringBoot 2.x.x DataJPA 2.x.
2024-01-23
8
0
0
Spring DataJPA
MongoDB
2024-01-23
Spring DataJPA MongoDB教程(基础版)
本教程主要详细讲解Spring Data MongoDB,它向MongoDB提供Spring Data平台的抽象. MongoDB是基于文档的存储,以持久保存数据,并可用作数据库,缓存,消息代理等. 基础环境 技术 版本 Java 1.8+ SpringBoot 2.x.x DataJPA 2.x.
2024-01-23
11
0
0
Spring DataJPA
MongoDB
2024-01-23
Spring DataJPA ElasticSearch教程(基础版)
本教程主要详细讲解Spring Data ElasticSearch,它向ElasticSearch提供Spring Data平台的抽象. ElasticSearch是基于文档的存储,以持久保存数据,并可用作数据库,缓存,消息代理等. 基础环境 技术 版本 Java 1.8+ SpringBoot
2024-01-23
5
0
0
Spring DataJPA
ElasticSearch
1
2
3
4