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

SpringBoot2入门-HelloWorld

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

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
转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/666922.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

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

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