溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶(hù)服務(wù)條款》

SpringBoot+SpringSecurity環(huán)境怎么搭建

發(fā)布時(shí)間:2021-02-20 12:30:51 來(lái)源:億速云 閱讀:197 作者:小新 欄目:編程語(yǔ)言

這篇文章將為大家詳細(xì)講解有關(guān)SpringBoot+SpringSecurity環(huán)境怎么搭建,小編覺(jué)得挺實(shí)用的,因此分享給大家做個(gè)參考,希望大家閱讀完這篇文章后可以有所收獲。

一、使用SpringBoot+Maven搭建一個(gè)多模塊項(xiàng)目

SpringBoot+SpringSecurity環(huán)境怎么搭建

二、刪除父工程的src文件,刪除app、browser、core下的.java文件

依賴(lài)關(guān)系:

  1. demo 依賴(lài) browser

  2. browser、app依賴(lài)core

三、父工程pom.xml文件

<?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.zeke</groupId> 
  <artifactId>zeke-security</artifactId> 
  <version>0.0.1-SNAPSHOT</version> 
  <packaging>pom</packaging> 
  <name>zeke-security</name> 
 
  <properties> 
    <zeke-security-version>1.0-SNAPSHOT</zeke-security-version> 
  </properties> 
 
  <modules> 
    <module>zeke-security-app</module> 
    <module>zeke-security-browser</module> 
    <module>zeke-security-core</module> 
    <module>zeke-security-demo</module> 
  </modules> 
 
  <dependencies> 
    <dependency> 
      <groupId>junit</groupId> 
      <artifactId>junit</artifactId> 
      <scope>test</scope> 
    </dependency> 
    <dependency> 
      <groupId>org.springframework.boot</groupId> 
      <artifactId>spring-boot-test</artifactId> 
      <version>1.5.8.RELEASE</version> 
      <scope>test</scope> 
    </dependency> 
  </dependencies> 
 
  <dependencyManagement> 
    <dependencies> 
      <dependency> 
        <groupId>io.spring.platform</groupId> 
        <artifactId>platform-bom</artifactId> 
        <version>Brussels-SR6</version> 
        <type>pom</type> 
        <scope>import</scope> 
      </dependency> 
      <dependency> 
        <groupId>org.springframework.cloud</groupId> 
        <artifactId>spring-cloud-dependencies</artifactId> 
        <version>Dalston.SR5</version> 
        <type>pom</type> 
        <scope>import</scope> 
      </dependency> 
      <dependency> 
        <groupId>org.springframework.boot</groupId> 
        <artifactId>spring-boot-configuration-processor</artifactId> 
        <optional>true</optional> 
      </dependency> 
    </dependencies> 
  </dependencyManagement> 
 
  <build> 
    <plugins> 
      <plugin> 
        <groupId>org.apache.maven.plugins</groupId> 
        <artifactId>maven-compiler-plugin</artifactId> 
        <version>2.3.2</version> 
        <configuration> 
          <source>1.8</source> 
          <target>1.8</target> 
          <encoding>UTF-8</encoding> 
        </configuration> 
      </plugin> 
    </plugins> 
  </build> 
 
</project>

四、zeke-security-demo項(xiàng)目下的pom.xml文件 

<?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> 
 
  <parent> 
    <groupId>com.zeke</groupId> 
    <artifactId>zeke-security</artifactId> 
    <version>0.0.1-SNAPSHOT</version> 
  </parent> 
 
  <artifactId>zeke-security-demo</artifactId>> 
 
  <dependencies> 
    <dependency> 
      <groupId>com.zeke</groupId> 
      <artifactId>zeke-security-browser</artifactId> 
      <version>${zeke-security-version}</version> 
    </dependency> 
    <dependency> 
      <groupId>junit</groupId> 
      <artifactId>junit</artifactId> 
      <version>4.12-beta-3</version> 
      <scope>test</scope> 
    </dependency> 
    <dependency> 
      <groupId>org.springframework.boot</groupId> 
      <artifactId>spring-boot-starter-aop</artifactId> 
    </dependency> 
    <dependency> 
      <groupId>commons-io</groupId> 
      <artifactId>commons-io</artifactId> 
    </dependency> 
 
    <!-- swagger --> 
    <dependency> 
      <groupId>io.springfox</groupId> 
      <artifactId>springfox-swagger2</artifactId> 
      <version>2.7.0</version> 
    </dependency> 
    <dependency> 
      <groupId>io.springfox</groupId> 
      <artifactId>springfox-swagger-ui</artifactId> 
      <version>2.7.0</version> 
    </dependency> 
 
    <!-- WireMock --> 
    <dependency> 
      <groupId>com.github.tomakehurst</groupId> 
      <artifactId>wiremock</artifactId> 
      <version>2.14.0</version> 
    </dependency> 
    <dependency> 
      <groupId>org.springframework</groupId> 
      <artifactId>spring-test</artifactId> 
      <version>4.3.12.RELEASE</version> 
      <scope>test</scope> 
    </dependency> 
    <dependency> 
      <groupId>org.springframework</groupId> 
      <artifactId>spring-test</artifactId> 
      <version>4.3.12.RELEASE</version> 
      <scope>test</scope> 
    </dependency> 
    <dependency> 
      <groupId>org.springframework</groupId> 
      <artifactId>spring-test</artifactId> 
      <version>4.3.12.RELEASE</version> 
      <scope>test</scope> 
    </dependency> 
  </dependencies> 
 
  <build> 
    <plugins> 
      <plugin> 
        <groupId>org.springframework.boot</groupId> 
        <artifactId>spring-boot-maven-plugin</artifactId> 
        <version>1.5.6.RELEASE</version> 
        <executions> 
          <execution> 
            <goals> 
              <goal>repackage</goal> 
            </goals> 
          </execution> 
        </executions> 
      </plugin> 
    </plugins> 
    <finalName>demo</finalName> 
  </build> 
</project>

五、zeke-security-core項(xiàng)目下的pom.xml文件 

<?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> 
 
  <parent> 
    <artifactId>zeke-security</artifactId> 
    <groupId>com.zeke</groupId> 
    <version>0.0.1-SNAPSHOT</version> 
  </parent> 
 
  <artifactId>zeke-security-core</artifactId> 
 
  <dependencies> 
    <dependency> 
      <groupId>org.springframework.cloud</groupId> 
      <artifactId>spring-cloud-starter-oauth3</artifactId> 
    </dependency> 
    <!--<dependency>--> 
    <!--<groupId>org.springframework.boot</groupId>--> 
    <!--<artifactId>spring-boot-starter-data-redis</artifactId>--> 
    <!--</dependency>--> 
    <dependency> 
      <groupId>org.springframework.boot</groupId> 
      <artifactId>spring-boot-starter-jdbc</artifactId> 
    </dependency> 
    <dependency> 
      <groupId>mysql</groupId> 
      <artifactId>mysql-connector-java</artifactId> 
    </dependency> 
    <dependency> 
      <groupId>org.springframework.social</groupId> 
      <artifactId>spring-social-config</artifactId> 
    </dependency> 
    <dependency> 
      <groupId>org.springframework.social</groupId> 
      <artifactId>spring-social-core</artifactId> 
    </dependency> 
    <dependency> 
      <groupId>org.springframework.social</groupId> 
      <artifactId>spring-social-security</artifactId> 
    </dependency> 
    <dependency> 
      <groupId>org.springframework.social</groupId> 
      <artifactId>spring-social-web</artifactId> 
    </dependency> 
    <dependency> 
      <groupId>commons-lang</groupId> 
      <artifactId>commons-lang</artifactId> 
    </dependency> 
    <dependency> 
      <groupId>commons-collections</groupId> 
      <artifactId>commons-collections</artifactId> 
    </dependency> 
    <dependency> 
      <groupId>commons-beanutils</groupId> 
      <artifactId>commons-beanutils</artifactId> 
    </dependency> 
  </dependencies> 
</project>

六、zeke-security-browser項(xiàng)目下的pom.xml文件 

<?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> 
 
  <parent> 
    <groupId>com.zeke</groupId> 
    <artifactId>zeke-security</artifactId> 
    <version>0.0.1-SNAPSHOT</version> 
  </parent> 
 
  <artifactId>zeke-security-browser</artifactId> 
 
  <dependencies> 
    <dependency> 
      <groupId>com.zeke</groupId> 
      <artifactId>zeke-security-core</artifactId> 
      <version>${zeke-security-version}</version> 
    </dependency> 
    <dependency> 
      <groupId>org.springframework.session</groupId> 
      <artifactId>spring-session</artifactId> 
    </dependency> 
  </dependencies> 
</project>

七、zeke-security-app項(xiàng)目下的pom.xml文件 

<?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> 
 
  <parent> 
    <artifactId>zeke-security</artifactId> 
    <groupId>com.zeke</groupId> 
    <version>0.0.1-SNAPSHOT</version> 
  </parent> 
 
  <artifactId>zeke-security-app</artifactId> 
 
  <dependencies> 
    <dependency> 
      <groupId>com.zeke</groupId> 
      <artifactId>zeke-security-core</artifactId> 
      <version>${zeke-security-version}</version> 
    </dependency> 
  </dependencies> 
</project>

八、zeke-security-demo項(xiàng)目下的application.properties

 spring.datasource.driver-class-name=com.mysql.jdbc.Driver 
spring.datasource.url=jdbc:mysql://127.0.0.1:3306/imooc-demo 
spring.datasource.username=root 
spring.datasource.password= 
 
spring.session.store-type=none 
security.basic.enabled=false

九、在zeke-security-demo啟動(dòng)類(lèi)上添加測(cè)試接口

@RestController 
@SpringBootApplication 
public class ZekeSecurityDemoApplication { 
 
  public static void main(String[] args) { 
    SpringApplication.run(ZekeSecurityDemoApplication.class, args); 
  } 
 
  @GetMapping("/hello") 
  public String hello(){ 
    return "success"; 
  } 
}

十、輸入地址localhost/hello

關(guān)于“SpringBoot+SpringSecurity環(huán)境怎么搭建”這篇文章就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,使各位可以學(xué)到更多知識(shí),如果覺(jué)得文章不錯(cuò),請(qǐng)把它分享出去讓更多的人看到。

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀(guān)點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI