SpringBoot2基础入门 --- 快速入门

一、环境要求

  • Java 8 & 兼容java14 .
  • Maven 3.3+
  • idea 2019.1.2

 

1.1、maven设置

  
      
        nexus-aliyun
        central
        Nexus aliyun
        http://maven.aliyun.com/nexus/content/groups/public
      
  
 
  
         
              jdk-1.8
              
                true
                1.8
              
              
                1.8
                1.8
                1.8
              
         
  

 

 

二、HelloWorld

需求:浏览发送/hello请求,响应 Hello,Spring Boot 2

 

2.1、创建maven工程

 

2.2、引入依赖

    
        org.springframework.boot
        spring-boot-starter-parent
        2.3.4.RELEASE
    

    
        
            org.springframework.boot
            spring-boot-starter-web
        
    

  

2.3、创建主程序

package com.ssm.boot;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;

/**
 * Author:wy
 * Date:2023/4/4
 * 主程序类
 * @SpringBootApplication:这是一个SpringBoot应用
 */
@SpringBootApplication
public class MainApplication {
    public static void main(String[] args) {
        SpringApplication.run(MainApplication.class, args);
    }
}

 

2.4、编写业务

package com.ssm.boot.conntroller;

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

/**
 * Author:wy
 * Date:2023/4/4
 */
@RestController
public class HelloController {

    @RequestMapping("/hello")
    public String handle01(){
        return "Hello, Spring Boot 2";
    }
}

 

2.5、测试

直接运行main方法,

访问浏览器地址,访问成功

 

2.6、简化配置

 创建统一的配置文件:application.properties

案例演示:修改端口号 

SpringBoot2基础入门 --- 快速入门_第1张图片

重新运行main方法,修改成功

其他配置修改查看官方文档即可

 

2.7、简化部署

    
        
            
                org.springframework.boot
                spring-boot-maven-plugin
            
        
    

把项目打成jar包,直接在目标服务器执行即可。

SpringBoot2基础入门 --- 快速入门_第2张图片

注意:

  • 取消掉cmd的快速编辑模式

你可能感兴趣的:(SSM框架,maven,springBoot)