《SpringBoot 一》简单的web应用 笔记

前言

本文记录使用Maven建立一个SpringBoot的简单应用,工具:
SpringBoot 2.1.4 、 Idea 17.0.3、Maven 3.3.9;
官方网站: https://spring.io/
官方指导文档:https://spring.io/guides/gs/rest-service/

一、使用 Idea Maven建立web简单工程
不熟悉的可以看这篇文章:https://blog.csdn.net/qq_28430851/article/details/80896508
在上面这篇文章中,我们只要在创建工程的第二步骤里选择[org.apache.maven.atchetypes:maven-archetype-quickstart]这项创建工程即可。

二、在项目的POM文件里修改




  4.0.0

  springbootApp
  springbootApp
  1.0-SNAPSHOT

  springbootApp
  
  http://www.example.com

  
    UTF-8
    1.7
    1.7
  
  
    org.springframework.boot
    spring-boot-starter-parent
    2.1.4.RELEASE
  
  
    
     
      junit
      junit
      4.11
      test
    
    
    
      org.springframework.boot
      spring-boot-starter-web
    
  

  
    
      
        
        
          maven-clean-plugin
          3.1.0
        
        
        
          maven-resources-plugin
          3.0.2
        
        
          maven-compiler-plugin
          3.8.0
        
        
          maven-surefire-plugin
          2.22.1
        
        
          maven-jar-plugin
          3.0.2
        
        
          maven-install-plugin
          2.5.2
        
        
          maven-deploy-plugin
          2.8.2
        
        
        
          maven-site-plugin
          3.7.1
        
        
          maven-project-info-reports-plugin
          3.0.0
        
      
    
  

二、完善工程目录

-----------main
             ---java
                 ----com
                      ----springbootApp
                           --- App.java
             ---resouces
                 ---application.properties

三、代码
1、App类:总体入口

package com.ms.springbootApp;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.ResponseBody;

/**
 * Hello world!
 */
@SpringBootApplication
@RequestMapping
public class App {
    
    @RequestMapping("/")
    @ResponseBody
    public String text(@RequestParam String id){
        return "Hello World!";
    }
    public static void main(String[] args) {
        SpringApplication.run(App.class, args);
        System.out.println("Hello World!");
    }
}

2、application.properties文件

#修改访问端口
server.port=8081

四、启动、访问请求

//在浏览器输入
loalhost:8081 

你可能感兴趣的:(SpringBoot)