温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

spring boot的环境搭建

发布时间:2020-06-06 03:06:27 来源:网络 阅读:383 作者: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