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

溫馨提示×

溫馨提示×

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

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

spring boot的環境搭建

發布時間:2020-06-06 03:06:27 來源:網絡 閱讀:385 作者:zcp617504296 欄目:軟件技術

<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>springstart</groupId>

  

  <artifactId>com.zcp.springstart</artifactId>

  <version>1.0.0</version>

  <packaging>jar</packaging>

  

  <!-- 方式一 :依賴父工程 -->

  <!-- <parent>

    <groupId>org.springframework.boot</groupId>

    <artifactId>spring-boot-starter-parent</artifactId>

    <version>1.5.8.RELEASE</version>

 </parent> -->

  

  

  <properties>

  <project.bulid.sourceEncoding>UTF-8</project.bulid.sourceEncoding>

  <maven.compiler.source>1.7</maven.compiler.source>

  <maven.compiler.target>1.7</maven.compiler.target>

  </properties>

  

  

  <!-- 方式二: 配置這個依賴 -->

  <dependencyManagement>

  <dependencies>

   <!-- https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-dependencies -->

<dependency>

   <groupId>org.springframework.boot</groupId>

   <artifactId>spring-boot-dependencies</artifactId>

   <version>1.5.8.RELEASE</version>

   <type>pom</type>

   <scope>import</scope>

</dependency>

  

  </dependencies>

  </dependencyManagement>

  


  

  

  <dependencies>

    <dependency>

        <groupId>org.springframework.boot</groupId>

        <artifactId>spring-boot-starter</artifactId>

    </dependency>

</dependencies>

</project>


spring boot的啟動入口的方式

package com.zcp.springstart;


import org.springframework.boot.SpringApplication;

import org.springframework.boot.autoconfigure.SpringBootApplication;

import org.springframework.context.ConfigurableApplicationContext;

import org.springframework.context.annotation.Bean;


@SpringBootApplication

public class App {

@Bean

public Runnable createRunnable(){

return new Runnable() {

@Override

public void run() {

System.out.println(">>>>>>>>>>>>runn---------");

}

};

}

public static void main(String[] args) {

ConfigurableApplicationContext context = SpringApplication.run(App.class, args);

context.getBean(Runnable.class).run();

}


}


說明:springboot的啟動入口類,默認為配置類,故可以在該類中注入bean。

向AI問一下細節

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

AI

仪陇县| 永福县| 进贤县| 凤凰县| 宁强县| 腾冲县| 隆安县| 巴林右旗| 仪征市| 大洼县| 佛坪县| 丹江口市| 泰安市| 锦州市| 崇左市| 廊坊市| 南丹县| 石河子市| 温州市| 涟水县| 从化市| 光山县| 民勤县| 同仁县| 宜兰市| 盐源县| 尼玛县| 普格县| 花垣县| 通化县| 晋中市| 米林县| 黄山市| 云林县| 遂川县| 奈曼旗| 龙里县| 大余县| 隆德县| 金坛市| 平罗县|