Spring
chinoukin
这个作者很懒,什么都没留下…
展开
-
SpringSecurity集成oauth2(jwt)
版本springboot版本:2.2.7.RELEASEspring-security-oauth2版本:2.3.6.RELEASE主要依赖 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency>原创 2020-12-11 16:22:45 · 1014 阅读 · 0 评论 -
SpringSecurity配置跨域访问
说明java后端web服务有很多种方法可以实现跨域访问,配置很简单,今天这里我们用SpringSecurity的方式配置跨域访问,配置方法如下:package com.wisea.config;import org.springframework.context.annotation.Bean;import org.springframework.security.config.annotation.web.builders.HttpSecurity;import org.springframe原创 2020-12-10 14:55:19 · 4375 阅读 · 0 评论