通過簡單方法實現spring boot web專案

2022-09-29 22:03:23 字數 1907 閱讀 3487

搭建效果為:

直接在網頁輸入請求,在頁面中顯示一行文字:hello,spring boot

與一般的wen專案不同的地方:

1、不需要配置web.xml 檔案,但需要註解@springbootapplication 等

2、一切和spring有關的jar包都不需要版本號,springcloud會給你選擇它最穩定的版本

3、它會定位public static void main()方法來標記為可執行類,必須在主路徑下

4、啟動方式:

a.右鍵執行main方法

b.由於我們使用了 spring-boot-starter-parent pom,所以可以使用 mvn spring-boot:run來啟動專案(根路徑)

c.先使用m**en來package(打包),然後j**a -jar*-0.0.1-snapshot.jar。

搭建建立乙個新的m**en專案,目錄結構如下:

pom.xml檔案

<?xml version="1.0" encoding="utf-8"?>

4.0.0

cn.jiashubing

www.cppcns.comtid>spring-boot-web

1.0-snapshot

org.springframework.bootwww.cppcns.compid>

spring-boot-starter-parent

程式設計客棧rsion>1.5.2.release

&l程式設計客棧t;dependency>

org.springframework.boot

spring-boot-starter-web

org.springframework.boot

程式設計客棧factid>spring-boot-m**en-plugin

homecontroller.j**a檔案

package cn.jiashubing.controller;

import org.springframework.boot.autoconfigure.enableautoconfiguration;

import org.springframework.stereotype.controller;

import org.springframework.web.bind.annotation.requestmapping;

import org.springframework.web.bind.annotation.requestmethod;

import org.springframework.web.bind.annotation.responsebody;

/** * @author jiashubing

* @since 2018/5/30

*/@controller

@enableautoconfiguration

public class homecontroller

}jiashubingapplication.j**a檔案

package cn.jiashubing;

import org.springframework.boot.springapplication;

import org.springframework.boot.autoconfigure.springbootapplication;

/** * @author jiashubing

* @since 2018/5/29

*/@springbootapplication

public class jiashubingapplication

}在瀏覽器中輸入 http://localhost:8080/home

最終效果如下:

本文標題: 通過簡單方法實現spring boot web專案

本文位址:

實現 SOA 安全的簡單方法

soa 安全實現起來可以是非常容易的 前提是你選擇的方式要正確。松耦合的 可發現的 可共用的安全工具 乙個簡單的工具 ws security 對 web services 進行了加強,為 soa 安全提供了你需要的一切 訪問控制 加密 信任 傳輸安全以及不可抵賴。訊息示例 ws security 將...

定位的系統實現簡單方法

1 匯入標頭檔案 import 2 遵循 cllocationmanagerdelegate 3 初始化變數 cllocationmanager locationmanager clgeocoder geocoder 4 實現 如果沒有授權則請求使用者授權 if cllocationmanager ...

python unittest簡單方法

下面一步步的展示如何使用unittest來測試。1 匯入unitttest模組 import unittest2 定義乙個被測試函式 def add a,b return a b3 建立乙個unittest.testcase子類 class demotest unittest.testcase pa...