中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

初識Springboot,創建一個最簡單的示例

發布時間:2020-07-12 00:21:00 來源:網絡 閱讀:484 作者:戀上程序員 欄目:軟件技術

開始...

1、首先創建一個maven工程,引入springboot依賴

<dependencies>
        <dependency>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-starter-web</artifactId>
        </dependency>
         <!--熱部署-->
        <dependency>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-devtools</artifactId>
                <version>2.0.5.RELEASE</version>
        </dependency>
</dependencies>

2、編寫啟動springboot的啟動類

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

3、編寫一個可訪問的Controller,該類可以獲取application.yml文件中的變量
application.yml內容

server:
  port: 9001
spring:
  profiles:
    active: linux
@Controller
public class HelloController {
    @Autowired
    ApplicationContext applicationContext;
    @GetMapping(value = "/hello")
    @ResponseBody
    public String hello(){
        return applicationContext.getEnvironment().getProperty("server.port");
    }
}

4、在瀏覽器輸入地址http://localhost:9001/hello
頁面顯示9001

...結束

向AI問一下細節

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

AI

炎陵县| 鄯善县| 浑源县| 腾冲县| 望都县| 通渭县| 成都市| 厦门市| 双江| 凤冈县| 溧阳市| 平山县| 沅江市| 哈密市| 吉安县| 射洪县| 包头市| 宜春市| 从化市| 雷波县| 乌鲁木齐市| 永春县| 西充县| 荣昌县| 岑巩县| 长武县| 古浪县| 秦安县| 揭东县| 临颍县| 获嘉县| 达拉特旗| 新沂市| 密云县| 德令哈市| 宁陕县| 柳江县| 牡丹江市| 陇西县| 天门市| 广饶县|