栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > 后端开发 > Java

Spring Boot 流程

Java 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

Spring Boot 流程

1、创建maven工程

2、引入依赖


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



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

3、创建主程序

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;

@SpringBootApplication
public class MainApplication {

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

4、编写业务

import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

@RestController
public class HelloController {
    @RequestMapping("/hello")
    public String handle01(){
        return "Hello, Spring Boot 2!";
    }
}

5、运行&测试

  • 运行MainApplication类
  • 浏览器输入http://localhost:8888/hello,将会输出Hello, Spring Boot 2!。

6、设置配置

# 设置端口号
server.port=8888

7、打包部署

  •  在pom.xml添加

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

  • 在IDEA的Maven插件上点击运行 clean 、package,把helloworld工程项目的打包成jar包,

    打包好的jar包被生成在helloworld工程项目的target文件夹内。

  • 用cmd运行java -jar boot-01-helloworld-1.0-SNAPSHOT.jar,既可以运行helloworld工程项目。将jar包直接在目标服务器执行即可。

转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/841611.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号