如何简化spring boot 开发
发布网友
发布时间:2022-04-23 19:33
我来回答
共1个回答
热心网友
时间:2023-09-13 05:13
功能特性
创建独立的Spring应用程序。
直接嵌入Tomcat、Jetty和Undertow(无需部署WAR文件)。
使用特定的POM文件,简化Maven配置。
尽可能自动化配置Spring。
提供产品级特性,比如指标测量、健康检查、外部配置等。
绝对没有代码生成或XML配置。
参考手册提供了所有功能的详细描述,以及常用功能的使用指南。
快速开始
Spring Boot 提供了命令行工具,可以为Spring应用快速建立原型。可以通过Groovy脚本进行配置,这意味着不需要熟悉Java语法并且减少大量的模板代码。在文档中可以参照安装Spring Boot CLI使用命令行。
如果你是Java开发者,可以使用start.spring.io生成一个基本的项目结构,然后参考下面的“快速开始”示例,或者阅读新手指南。
推荐配合依赖管理系统在使用spring-boot——这段脚本拷贝粘贴到你的构建中。如果对这些不熟悉怎么办?请参见新手指南中使用Maven和Gradle构建的章节。
ZSH
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.2.7.RELEASE</version>
</parent>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
</dependencies>
1
2
3
4
5
6
7
8
9
10
11
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.2.7.RELEASE</version>
</parent>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
</dependencies>
hello/SampleController.java
Java
package hello;
import org.springframework.boot.*;
import org.springframework.boot.autoconfigure.*;
import org.springframework.stereotype.*;
import org.springframework.web.bind.annotation.*;
@Controller
@EnableAutoConfiguration
public class SampleController {
@RequestMapping("/")
@ResponseBody
String home() {
return "Hello World!";
}
public static void main(String[] args) throws Exception {
SpringApplication.run(SampleController.class, args);
}
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package hello;
import org.springframework.boot.*;
import org.springframework.boot.autoconfigure.*;
import org.springframework.stereotype.*;
import org.springframework.web.bind.annotation.*;
@Controller
@EnableAutoConfiguration
public class SampleController {
@RequestMapping("/")
@ResponseBody
String home() {
return "Hello World!";
}
public static void main(String[] args) throws Exception {
SpringApplication.run(SampleController.class, args);
}