开发您的第一个Spring Boot应用程序(版本Spring Boot 2.1.6.RELEASE)

https://docs.spring.io/spring-boot/docs/2.1.6.RELEASE/reference/html/getting-started-first-application.html
Spring Boot 2.1.6.RELEASE

系统要求

  • Spring Boot 2.1.6.RELEASE需要Java 8,并且与Java 11兼容(包括在内)
  • 还需要Spring Framework 5.1.8.RELEASE或更高版本。
  • 构建工具
构建工具 版本
maven 3.3+
Gradle 4.4+
  • 支持的servlet容器
构建工具 版本
Tomcat 9.0 4.0
Jetty 9.4 3.1
Undertow 2.0 4.0

在idea创建maven工程

点击file —>new–> project,选择maven方式建项目

开发您的第一个Spring Boot应用程序(版本Spring Boot 2.1.6.RELEASE)_第1张图片
开发您的第一个Spring Boot应用程序(版本Spring Boot 2.1.6.RELEASE)_第2张图片
项目配置

com.littley.blog
myblog-index
1.0-SNAPSHOT

配置pom.xml



	4.0.0

	com.example
	myproject
	0.0.1-SNAPSHOT

	
		org.springframework.boot
		spring-boot-starter-parent
		2.1.6.RELEASE
	

	


spring-boot-starter-parent是一个特殊的启动器;它不提供依赖,可以在idea termial终端输入:mvn dependency:tree查看

在这里插入图片描述

web开发还需要添加依赖spring-boot-starter-web


        
            org.springframework.boot
            spring-boot-starter-web
        


    

编写代码

src/main/java/MyApplition.java文件中添加代码

import org.springframework.boot.*;
import org.springframework.boot.autoconfigure.*;
import org.springframework.web.bind.annotation.*;

@RestController
@EnableAutoConfiguration
public class MyApplition {

    @RequestMapping("/")
    String home() {
        return "Hello World!";
    }

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

}

注:一、@RestController @RequestMapping("/") 是标准注解它们是Spring MVC的注解(它们不是Spring Boot特有的)
二、@EnableAutoConfiguration注解:开启自动配置,根据spring-boot-starter-web 来自动配置应用程序

运行

配置运行如下图
开发您的第一个Spring Boot应用程序(版本Spring Boot 2.1.6.RELEASE)_第3张图片
然后运行

或命令行运行在idea termial终端输入:mvn spring-boot:run
在这里插入图片描述
浏览器输入 localhost:8080

创建一个可执行的Jar

在pom.xml中添加spring-boot-maven-plugin插件:


        
            
                 org.springframework.boot 
                 spring-boot-maven-plugin 
            
        
    

然后打包
开发您的第一个Spring Boot应用程序(版本Spring Boot 2.1.6.RELEASE)_第4张图片

或命令行运行在idea termial终端输入:mvn package

在编译输入目录target中应该可以看 类似 myproject-0.0.1-SNAPSHOT.jar.original (注.original结尾)格式的文件说明打包成功
使用命令启动

java -jar target / myproject-0.0.1-SNAPSHOT.jar  #启动的是.jar文件而不是.origial文件 

你可能感兴趣的:(java)