当前位置:   article > 正文

SpringBoot入门级项目(详细步骤)_springboot入门项目

springboot入门项目

1. 明确开发环境

Spring Tool Suite 
Version: 3.9.2.RELEASE
  • 1
  • 2

2. 创建Maven项目

File–>New–>Maven Project

在这里插入图片描述
在这里插入图片描述
在这里插入图片描述

3.配置pom.xml文件

在pom.xml文件中进行以下修改:

<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.iamapsycho</groupId>      
  <artifactId>SpringBootTest</artifactId>
  <version>0.0.1-SNAPSHOT</version>
  <packaging>jar</packaging>
  
  <name>billingBootTest-iamapsycho</name>
  <description>Demo project for Spring Boot</description>
  
  <!--   
	spring-boot-starter-parent是Spring Boot的核心启动器,
	包含了自动配置、日志和YAML等大量默认的配置,大大简化了我们的开发。
	引入之后相关的starter引入就不需要添加version配置,
   	spring boot会自动选择最合适的版本进行添加。
   -->
  <parent>
      <groupId>org.springframework.boot</groupId>
      <artifactId>spring-boot-starter-parent</artifactId>
      <version>1.5.9.RELEASE</version>
  </parent>

  <dependencies>
	  <!-- spring-boot-starter-web包含了Spring Boot预定义的一些Web开发的常用依赖包
		如: spring-webmvc,Tomcat.... -->
      <dependency>
          <groupId>org.springframework.boot</groupId>
          <artifactId>spring-boot-starter-web</artifactId>
      </dependency>
      
      <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>3.8.1</version>
            <scope>test</scope>
      </dependency>
  </dependencies>

  <properties>
      <java.version>1.8</java.version>
  </properties>

  <build>
      <plugins>
          <plugin>
              <groupId>org.springframework.boot</groupId>
              <artifactId>spring-boot-maven-plugin</artifactId>
          </plugin>
      </plugins>
  </build>
</project>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52

4.创建 Application.java 启动类

在src/main/java下 创建包com.iamapsycho,并在包内创建Application.java

package com.iamapsycho;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;

@SpringBootApplication
public class Application {
    public static void main(String[] args) {
        SpringApplication.run(Application.class, args);
    }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10

5.创建HelloWorld的Controller类

在src/main/java下 创建包com.iamapsycho.controller,并在包内创建HelloWorldController.java

package com.iamapsycho.controller;

import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;

@Controller
public class HelloWorldController {
	
	@ResponseBody
	@RequestMapping("/helloworld")
	public String helloWorld(){
	    return "Hello World! This is Spring Boot !!!";
	}
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15

6.运行并测试

接下来就运行Application.java,然后访问地址:

 http://localhost:8080/helloworld
  • 1

在这里插入图片描述

7.添加项目SpringBoot yml 配置 - 项目名称

当需要在spring boot 项目中定义一些变量,设置参数时候,可以在application.yml中进行设置

在这里插入图片描述

application.yml 当前活跃的为dev(开发环境)

在这里插入图片描述

在这里插入图片描述

现在访问 http://localhost:8080/helloworld 将会报错,
在这里插入图片描述
应加上项目名称
http://localhost:8080/SpringBootTest/helloworld
在这里插入图片描述

Spring Boot中整合使用wagger2

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/笔触狂放9/article/detail/575950
推荐阅读
相关标签
  

闽ICP备14008679号