springboot之搭建第一个helloworld程序

Posted smilingeye

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了springboot之搭建第一个helloworld程序相关的知识,希望对你有一定的参考价值。

1.下载基本框架

在网站:https://start.spring.io/

全部默认,基本没有改动

技术图片

选择依赖,当然也可以自己在pom.xml加,我们直接在这里选择。

只选择Spring Web Starter(可以了解下,Lombok,在写实体时很方便)

 技术图片

点击Generate the project -Ctrl +

将会下载生成demo.zip

2.Maven安装依赖

解压demo.zip

在demo目录打开命令行工具(在demo目录下,按住shift键,同时点击鼠标右键,点击“在此处打开Powershell窗口”)

技术图片

在命令行里输入(使用PowerShell命令行模式)

mvn clean install ‘-Dmaven.test.skip=true‘

 

 如果是通过cmd进入

mvn clean install -Dmaven.test.skip=true

 

 技术图片

3.导入eclipse

file->Import->Maven->Existing Maven Projects

技术图片

点击Finish

4.编码helloworld

将DemoApplication.java文件内容改为

@SpringBootApplication
@RestController
public class DemoApplication 

    public static void main(String[] args) 
        SpringApplication.run(DemoApplication.class, args);
    
    
    @RequestMapping("/")
    String home() 
        return "Hello World!";
    

 

 5.测试

在浏览器中访问地址:http://localhost:8080/

技术图片

在此完成了springboot第一个helloworld程序。

github地址:https://github.com/Peng-star-star/spring-boot-demo-hello

 

以上是关于springboot之搭建第一个helloworld程序的主要内容,如果未能解决你的问题,请参考以下文章

Java之 Spring Cloud 微服务搭建 Consul(第一个阶段)SpringBoot项目实现商品服务器端是调用

Java之 Spring Cloud 微服务搭建网关SpringCloud Gateway微服务网关GateWay(第三个阶段)SpringBoot项目实现商品服务器端是调用

Eclipse搭建SpringBoot之HelloWorld

Java之 Spring Cloud 微服务搭建(第一个阶段)SpringBoot项目实现商品服务器端是调用

Java之 Spring Cloud 微服务搭建Ribbon(第一个阶段)SpringBoot项目实现商品服务器端是调用

Java之 Spring Cloud 微服务搭建 Consul(第一个阶段)SpringBoot项目实现商品服务器端是调用