SpringBoot2入门-HelloWorld

SpringBoot2入门-HelloWorld,第1张

SpringBoot2入门-HelloWorld

文章目录
        • 需求
        • 实现
        • 打包部署

需求

发送请求/hello,响应“Hello,Spring Boot 2”。

实现
  1. 新建Maven工程:helloworld
    生成的pom.xml如下,


    4.0.0

    com.example
    helloworld
    1.0-SNAPSHOT

    
        8
        8
    


  1. 修改pom.xml,添加依赖

    org.springframework.boot
    spring-boot-starter-parent
    2.6.1



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

  1. 创建启动类com.example.boot.MainApplication
package com.example.boot;

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);
    }
}
  1. 创建控制器com.example.boot.controller.HelloController
package com.example.boot.controller;

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


//@Controller
//@ResponseBody
@RestController
public class HelloController {

    @RequestMapping(value = "/hello")
    public String hello(){
        return "Hello,Spring Boot 2";
    }

}
  1. resources下添加配置文件application.yml
server:
  port: 8088
  1. 运行MainApplication#main,启动应用
  2. 访问localhost:8088/hello
打包部署
  1. pom.xml里添加maven打包插件,如下,

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

  1. package 打包。
  2. java -jar 启动应用
  3. 依然可访问接口localhost:8088/hello

欢迎分享,转载请注明来源:内存溢出

原文地址: https://www.outofmemory.cn/zaji/5672183.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-16
下一篇 2022-12-16

发表评论

登录后才能评论

评论列表(0条)

保存