从零开始SpringBoot项目-入门

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了从零开始SpringBoot项目-入门相关的知识,希望对你有一定的参考价值。

最近项目一直用的都是SpringBoot,顺便总结一下SpringBoot的各种配置,想最简洁的运行一个SpringBoot程序,需要下面步骤


 

  • 构建一个maven项目,项目目录结构如下                                                                          技术分享
  • 配置pom
    <?xml version="1.0" encoding="UTF-8"?>
    <project xmlns="http://maven.apache.org/POM/4.0.0"
             xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
             xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
        <modelVersion>4.0.0</modelVersion>
    
        <groupId>com.blog.springboot</groupId>
        <artifactId>springboot</artifactId>
        <version>1.0-SNAPSHOT</version>
    
        <dependencyManagement>
            <dependencies>
                <dependency>
                    <groupId>org.springframework.boot</groupId>
                    <artifactId>spring-boot-starter</artifactId>
                    <version>1.3.1.RELEASE</version>
                </dependency>
            </dependencies>
        </dependencyManagement>
    
        <dependencies>
            <dependency>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-starter-web</artifactId>
                <version>1.3.1.RELEASE</version>
            </dependency>
        </dependencies>
    
    
    </project>
    

     

  • 创建启动类                                                                                                                技术分享     
    @SpringBootApplication
    @RestController
    public class Application {
    
        public static void main(String[] args) {
            SpringApplication.run(Application.class, args);
        }
    
        @RequestMapping("/")
        public String hello() {
            return "hello world";
        }
    }
    

     

  • 执行启动类中的main方法技术分享
  • 浏览器输入localhost:8080技术分享

到这里,我们第一个spring程序就启动了

以上是关于从零开始SpringBoot项目-入门的主要内容,如果未能解决你的问题,请参考以下文章

SpringBoot系列——从零开始搭建最简单的SpringBoot项目

从零开始-使用IDEA创建SpringBoot项目

学习笔记从零开始的SpringBoot新手教程(WIN10+JDK9+STS4)

从零开始配置vim(27)——代码片段

从零开始配置vim(27)——代码片段

从零开始配置vim(27)——代码片段