第一章:開發環境及代碼結構

来源:https://www.cnblogs.com/wtrover/archive/2018/08/21/9513189.html
-Advertisement-
Play Games

開發環境: 安裝JDK8 安裝STS http://spring.io/tools/sts/ 安裝MySql 伺服器 https://www.mysql.com/downloads/ 客戶端 Navicat Premium 12 代碼結構: 項目:Maven多模塊項目 wtrover-securit ...


開發環境:

  安裝JDK8

  安裝STS

    http://spring.io/tools/sts/

  安裝MySql

    伺服器 https://www.mysql.com/downloads/

    客戶端 Navicat Premium 12

代碼結構:
  項目:Maven多模塊項目

  wtrover-security:主模塊

  wtrover-security-core:核心業務邏輯

    表單登陸,手機驗證碼登陸,第三方登陸

  wtrover-security-browser

    瀏覽器安全特定代碼

  wtrover-security-app

    app安全特定代碼

  wtrover-security-demo

    樣常式序

創建項目

Eclipse

  1.父項目wtrover-security,註意Packaging選pom,因為作為父項目本事並不包含代碼,它只是用來打包的。

  

  再把其他幾個項目都建起來,註意剩下的四個項目Packaging都選擇jar。

  

  2.挨個配置pom文件

    wtrover-security添加依賴Spring IO平臺,作用是替我們管理maven依賴的版本,寫依賴時不用寫版本。除了IO還需要添加Spring Cloud。有了這兩個我們整個項目的版本就應該被控制起來了。因為整個項目會在JDK8下編寫,所以要指定一下編譯的版本。

    最後我們要把那四個項目加到wtrover-security里,作為它的子模塊。在Overview-Modules點Add,把四個項目選上,註意勾選上"Update POM parent section in selected  projects"。

<properties>
    <wtrover.security.version>1.0.0-SNAPSHOT</wtrover.security.version>
</properties>

<dependencyManagement>
    <dependencies>
        <dependency>
            <groupId>io.spring.platform</groupId>
            <artifactId>platform-bom</artifactId>
            <version>Brussels-SR4</version>
            <type>pom</type>
            <scope>import</scope>
        </dependency>
        <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-dependencies</artifactId>
            <version>Dalston.SR2</version>
            <type>pom</type>
            <scope>import</scope>
        </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>
<modules>
    <module>../wtrover-security-app</module>
    <module>../wtrover-security-browser</module>
    <module>../wtrover-security-core</module>
    <module>../wtrover-security-demo</module>
</modules>

    wtrover-security-core

<dependencies>
    <dependency>
        <groupId>org.springframework.cloud</groupId>
        <artifactId>spring-cloud-starter-oauth2</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>
    <!-- spring social -->
    <!-- 提供Java 配置 -->
    <dependency>
        <groupId>org.springframework.social</groupId>
        <artifactId>spring-social-config</artifactId>
    </dependency>
    <!-- 提供社交連接框架和OAuth 客戶端支持 -->
    <dependency>
        <groupId>org.springframework.social</groupId>
        <artifactId>spring-social-core</artifactId>
    </dependency>
    <!-- 提供社交安全支持 -->
    <dependency>
        <groupId>org.springframework.social</groupId>
        <artifactId>spring-social-security</artifactId>
    </dependency>
    <!-- 管理web應用程式的連接 -->
    <dependency>
        <groupId>org.springframework.social</groupId>
        <artifactId>spring-social-web</artifactId>
    </dependency>
    <!-- commons工具包 -->
    <dependency>
        <groupId>commons-lang</groupId>
        <artifactId>commons-lang</artifactId>
    </dependency>
    <dependency>
        <groupId>commons-collections</groupId>
        <artifactId>commons-collections</artifactId>
    </dependency>
    <dependency>
        <groupId>commons-io</groupId>
        <artifactId>commons-io</artifactId>
    </dependency>
    <dependency>
        <groupId>commons-beanutils</groupId>
        <artifactId>commons-beanutils</artifactId>
    </dependency>
</dependencies>

     wtrover-security-app,其中${wtrover.security.version}是聲明在主模塊wtrover-security pom中的變數。

<dependencies>
    <dependency>
        <groupId>com.wtrover.security</groupId>
        <artifactId>wtrover-security-core</artifactId>
        <version>${wtrover.security.version}</version>
    </dependency>
</dependencies>

    wtrover-security-browser

<dependencies>
    <dependency>
        <groupId>com.wtrover.security</groupId>
        <artifactId>wtrover-security-core</artifactId>
        <version>${wtrover.security.version}</version>
    </dependency>
    <dependency>
        <groupId>org.springframework.session</groupId>
        <artifactId>spring-session</artifactId>
    </dependency>
</dependencies>

    wtrover-security-demo,先從瀏覽器安全開始講,所以先去引用wtrover-security-browser這個項目。

<dependencies>
    <dependency>
        <groupId>com.wtrover.security</groupId>
        <artifactId>wtrover-security-browser</artifactId>
        <version>${wtrover.security.version}</version>
    </dependency>
</dependencies>

   3.寫個Hello World

   DemoApplication

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;

@SpringBootApplication
@RestController
public class DemoApplication {

    public static void main(String[] args) {
        SpringApplication.run(DemoApplication.class, args);
    }

    @GetMapping("/hello")
    public String hello() {
        return "hello spring security";
    }
}

  在配置文件配置jdbc連接,session,security

spring:
  profiles:
    active: dev
  datasource:
    driver-class-name: com.mysql.jdbc.Driver
    url: jdbc:mysql://127.0.0.1:3306/spring?characterEncoding=utf8&useSSL=false
    username: root
    password: root
server:
  port: 8065

spring:
  session:
    store-type: none

security:
  basic:
    enabled: false

  運行即可。瀏覽器輸入http://localhost:8065/hello,頁面顯示"hello spring security"

 

  


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 在ES6中我們有兩種定義變數的方式:let const let特點: 1.let定義時不會進行變數聲明提升 2.變數不允許被重覆定義 3.變數不可以被刪除 4.在for迴圈當中用let定義i 迴圈時可以保存 i 的值 5.在塊級元素中用let定義的變數只能在當前塊級作用域中使用(註:凡是用{}包裹的 ...
  • 1. 2.在項目根目錄新建postcss.config.js文件,並對postcss進行配置: webpack編譯時如果出現No PostCSS Config的時候可以嘗試用這兩個方法來試試 ...
  • if (window["context"] == undefined) { if (!window.location.origin) { window.location.origin = window.location.protocol + "//" + window.location.hostna... ...
  • 一、新建項目使用scss 使用ng new 項目名稱創建項目的時候 ng new my-app --skip-install --prefix mpr --style=scss 二、已有項目使用scss 首先,安裝node-sass包 npm install node-sass --save-dev ...
  • docker與虛擬機有何不同 Docker 是一個開源的應用容器引擎,讓開發者可以打包他們的應用以及依賴包到一個可移植的容器中,然後發佈到任何流行的 Linux 機器上,也可以實現虛擬化。 容器技術有很多種,Docker是目前最流行的一種,網易雲也在使用Docker。伺服器虛擬化解決的核心問題是資源 ...
  • 1、高內聚 首先我們來看看內聚的含義:軟體含義上的內聚其實是從化學中的分子的內聚演變過來的,化學中的分子間的作用力,作用力強則表現為內聚程度高。在軟體中內聚程度的高低,標識著軟體設計的好壞。 我們在進行架構設計時的內聚高低是指,設計某個模塊或者關註點時,模塊或關註點內部的一系列相關功能的相關程度的高 ...
  • 博文來源:http://www.fhadmin.org/webnewsdetail1.html 即時通訊:支持好友,群組,發圖片、文件,消息聲音提醒,離線消息,保留聊天記錄 工作流模塊 1.模型管理 :web線上流程設計器、預覽流程xml、導出xml、部署流程 2.流程管理 :導入導出流程資源文件、 ...
  • 引言 分散式系統中,我們廣泛運用消息中間件進行系統間的數據交換,便於非同步解耦。現在開源的消息中間件有很多,目前對Kafka、RabbitMQ、RocketMQ這三個消息中間件做下對比分析。 摘自:https://blog.csdn.net/wuzhengfei1112/article/details ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...