共计 1870 个字符,预计需要花费 5 分钟才能阅读完成。
用 Maven 我的项目创立 Spring 利用
- 创立 maven 工程
- 在 pom.xml 中导入 Spring Boot 相干依赖
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<!--SpringBoot 版本 -->
<version>1.5.9.RELEASE</version>
</parent>
<dependencies>
<dependency> <groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency></dependencies>
3. 编写主程序
package hello;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
public class springHello {public static void main(String[] args){SpringApplication.run(springHello.class,args);
}
}
4. 编写相干的 Controler、Service
package hello.controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;
@org.springframework.stereotype.Controller
public class Controller {
@ResponseBody
@RequestMapping("/hello")
public String hello(){return "Hello World!";}
}
5. 测试启动 main 函数
6. 部署
(1)首先把 maven 插件依赖写入 pom.xml,这个 maven 插件能够把我的项目打包为 jar 包
<build>
<plugins> <plugin> <groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin> </plugins></build>
(2)maven–> 申明周期 –>package,失去 jar 包
(3)java -jar 我的项目名
总结:创立 Maven 我的项目 –> 导入父我的项目和用到模块的场景启动器 –> 写主程序 –> 写业务逻辑
Spring Boot 原理
- 流程:写主程序启动 SpringBoot 利用 –> 依照业务逻辑写 Controller、Service,不再须要配置其余货色
为何 SpringBoot 不须要配置其余货色:剖析 pom.xml
- 点击 pom.xml 的父我的项目 spring-boot-starter-parent,进入后点击父我的项目的父我的项目 spring-boot-dependencies,发现里边定义了各种依赖的版本。即父父我的项目真正治理 SpringBoot 的所有依赖,是版本仲裁核心。所以咱们导入依赖时默认不须要写版本(父父我的项目中没定义的除外)
- 导入依赖(场景启动器)。springboot 将所有性能场景抽取进去,做成 starter。咱们须要啥性能,就导入相干的 starter
用 Spring 我的项目创立 springboot 利用
- 抉择好导入的场景启动器后,父我的项目和场景启动器主动增加,主程序也有了。咱们只有分心写业务逻辑就行了
- 有三个文件是没用的,能够删除掉
- resources 中有三个文件夹
(1)static:保留所有的动态资源,如 js、css、图片等
(2)templates:保留所有的模板页 html。springboot 默认的 jar 包应用嵌入式 tomcat,不反对 jsp 页面,但咱们可应用模板引擎(freemarker、thymeleaf)解决问题
(3)application.properities:springboot 利用的配置文件,咱们能够写他来批改默认设置
正文完
发表至: springboot
2020-10-16