• SpringBoot快速HelloWorld入门


    1、新建maven项目

    2、pom.xml 里添加SpringBoot所依赖的jar包

    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>1.3.3.RELEASE</version>
    </parent>
    <dependencies>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>
    </dependencies>
    

      保存后、自动下载这一系列的相关的jar包(太多的无法完全截图)

    3、在src/main/java 目录下新建package   com.st.controller   

    4、在 controller 中新建

    TestController.java
    package com.st.controller;
    
    import org.springframework.boot.SpringApplication;
    import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
    import org.springframework.web.bind.annotation.RequestMapping;
    import org.springframework.web.bind.annotation.RestController;
    
    @RestController
    @EnableAutoConfiguration
    public class TestController {
    	@RequestMapping("/hello")   //访问地址http://localhost:8080/hello
    	public String hello(){
    		return "success";
    	}
    	
    	
    	public static void main(String[] args) {
    		//运行
    		SpringApplication.run(TestController.class, args);
    	}
    	
    }
    

      

  • 相关阅读:
    Zabbix 3.2.1 安装 Graphtree3.0.4 或 Graphtree3.2.x
    jquery-1
    AngularJS (1)
    css-2 (Text Font)
    css
    Java经验
    js经验
    mysql经验
    MySQL 函数
    jquery 效果
  • 原文地址:https://www.cnblogs.com/QW-lzm/p/7667208.html
Copyright © 2020-2023  润新知