SpringBoot⼊门教程(超详细)
这⾥写⽬录标题
Spring Boot 简介
Spring Boot是由Pivotal团队提供的全新框架,其设计⽬的是⽤来简化新Spring应⽤的初始搭建以及开发过程。该框架使⽤了特定的⽅式来进⾏配置,从⽽使开发⼈员不再需要定义样板化的配置。通过这种⽅式,Spring Boot致⼒于在蓬勃发展的快速应⽤开发领域(rapid application development)成为领导者。
简化Spring应⽤开发的⼀个框架
整个Spring技术栈的⼀个⼤整合
J2EE开发的⼀站式解决⽅案
微服务
微服务:每⼀个功能元素最终都是⼀个可独⽴替换和独⽴升级的软件单元。
详情参考:
环境准备
jdk1.8:Spring Boot 推荐jdk1.7及以上
maven3.x:maven 3.3以上版本
IntelliJIDEA:或者STS
SpringBoot 1.5.9.RELEASE:1.5.10
maven设置
在maven 的l配置⽂件的profiles标签添加以下配置:
<profile>
<id>jdk‐1.8</id>
<activation>
<activeByDefault>true</activeByDefault>
<jdk>1.8</jdk>
</activation>
<properties>
<mavenpiler.source>1.8</mavenpiler.source>
<mavenpiler.target>1.8</mavenpiler.target>
<mavenpilerpilerVersion>1.8</mavenpilerpilerVersion>
</properties>
</profile>
IDEA设置
把maven整合到idea。
使⽤SpringBoot创建⼀个HellWorld应⽤
功能:浏览器发送hello请求,服务器接受请求并处理,响应Hello World字符串。
1、创建⼀个maven⼯程(spring-boot-01-helloworld)
项⽬⽬录:
2、在l中导⼊spring boot相关的依赖
<parent>
<artifactId>spring-boot-dependencies</artifactId>
<groupId>org.springframework.boot</groupId>
<version>1.5.10.RELEASE</version>
</parent>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
</dependencies>
3、编写⼀个主程序
HelloWorldMainApplication:
package com.keafmd;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
/**
* Keafmd
*
* @ClassName: HelloWorldMainApplication
* @Description: 主程序
* @author: ⽜哄哄的柯南
* @date: 2021-02-22 15:00
*/
@SpringBootApplication
public class HelloWorldMainApplication {
public static void main(String[] args){
//Spring应⽤启动起来
SpringApplication.run(HelloWorldMainApplication.class,args);
}
}
4、编写相关的Controller
HelloController:
package ller;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;
/**
* Keafmd
*
* @ClassName: HelloController
* @Description:
* @author: ⽜哄哄的柯南
* @date: 2021-02-22 15:04
*/
@Controller
public class HelloController {
@ResponseBody
@RequestMapping("/hello")
public String hello(){
return"Hello World!";
}
}
5、运⾏主程序
OK,⾄此,第⼀个SpringBoot的HelloWorld就⼤功告成了。【amazing~】简化部署
1、我们在l⽂件中假如以下代码:
<!-- 这个插件,可以将应⽤打包成⼀个可执⾏的jar包  -->
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>repackage</goal>
springboot框架的作用</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
这样的部署就变得⼗分简单了。
以上就是SpringBoot⼊门教程(超详细)的全部内容。
看完如果对你有帮助,感谢点赞⽀持!
如果你是电脑端的话,看到右下⾓的 “⼀键三连” 了吗,没错点它[哈哈]
加油!
共同努⼒!
Keafmd

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。