當(dāng)前位置:
首頁 >
前端技术
> javascript
>内容正文
javascript
SpringSecurity 案例父工程创建
生活随笔
收集整理的這篇文章主要介紹了
SpringSecurity 案例父工程创建
小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.
OAuth2.0實戰(zhàn)案例
創(chuàng)建父工程并導(dǎo)入jar包
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0"xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"><modelVersion>4.0.0</modelVersion><groupId>com.leon</groupId><artifactId>springboot_security_oauth</artifactId><packaging>pom</packaging><version>1.0-SNAPSHOT</version><modules><module>leon_oauth_source</module><module>leon_oauth_server</module></modules><parent><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-parent</artifactId><version>2.1.3.RELEASE</version><relativePath/></parent><properties><spring-cloud.version>Greenwich.RELEASE</spring-cloud.version></properties><dependencyManagement><dependencies><dependency><groupId>org.springframework.cloud</groupId><artifactId>spring-cloud-dependencies</artifactId><version>${spring-cloud.version}</version><type>pom</type><scope>import</scope></dependency></dependencies></dependencyManagement><repositories><repository><id>spring-snapshots</id><name>Spring Snapshots</name><url>https://repo.spring.io/snapshot</url><snapshots><enabled>true</enabled></snapshots></repository><repository><id>spring-milestones</id><name>Spring Milestones</name><url>https://repo.spring.io/milestone</url><snapshots><enabled>false</enabled></snapshots></repository></repositories> </project> 超強干貨來襲 云風(fēng)專訪:近40年碼齡,通宵達旦的技術(shù)人生總結(jié)
以上是生活随笔為你收集整理的SpringSecurity 案例父工程创建的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: SpringSecurity OAuth
- 下一篇: SpringSecurity 案例之创建