91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

SpringBoot+SpringSecurity環境怎么搭建

發布時間:2021-02-20 12:30:51 來源:億速云 閱讀:204 作者:小新 欄目:編程語言

這篇文章將為大家詳細講解有關SpringBoot+SpringSecurity環境怎么搭建,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。

一、使用SpringBoot+Maven搭建一個多模塊項目

SpringBoot+SpringSecurity環境怎么搭建

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

依賴關系:

  1. demo 依賴 browser

  2. browser、app依賴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項目下的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項目下的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項目下的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項目下的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項目下的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啟動類上添加測試接口

@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

關于“SpringBoot+SpringSecurity環境怎么搭建”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

当雄县| 安平县| 离岛区| 涞源县| 新闻| 独山县| 苗栗市| 襄汾县| 宜兰县| 于田县| 榆社县| 龙游县| 灌阳县| 大名县| 东丽区| 东莞市| 资阳市| 广州市| 梧州市| 崇阳县| 安龙县| 原阳县| 钦州市| 博兴县| 宁德市| 清苑县| 青神县| 神农架林区| 海淀区| 留坝县| 郴州市| 汾阳市| 浏阳市| 安塞县| 光泽县| 曲靖市| 卓资县| 瑞昌市| 子洲县| 密云县| 南皮县|