创建Spring Boot 工程

Posted 梦在远方

tags:

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

先在eclipse中安装spring -tool -suite插件,然后根据以下步骤可以创建

 

1、新建Spring Starter Project
技术分享图片



2、Packaging 选择 jar

 

技术分享图片



3、勾选Web 项

 

技术分享图片



4、项目结构

 

技术分享图片


 

启动项目


1、创建 HelloController.java

 

技术分享图片

 

package com.example.demo;


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

@RestController 
@RequestMapping("/hello")  
public class HelloController {
    @RequestMapping("/sts")
    public String helloworld(){  
        return "使用spring-tool-suite插件";  
    }  
}

 



2、运行 DemoApplication.java文件 或者 右键项目 Run As -> Spring Boot App

 

技术分享图片



3、打印输出:Started DemoApplication in 3.977 seconds (JVM running for 6.73) 说明项目启动成功。

 

技术分享图片



4、访问网页

http://localhost:8080/hello/sts

 

技术分享图片

 
 
 








以上是关于创建Spring Boot 工程的主要内容,如果未能解决你的问题,请参考以下文章

Spring Boot快速构建应用

Ubuntu下使用VS Code创建Spring Boot工程

MAC系统下用Idea创建spring boot工程 基于maven

创建Spring Boot 工程

使用spring-boot创建定时任务。同时创建多线程执行定时任务。

Spring Boot部署JAR文件瘦身优化经验分享