一、Spring Boot:入门

一、Spring Boot概述

1. 什么是Spring Boot?

2. Spring Boot优点

  1. 敏捷开发
  2. 减少xml配置文件,用properties文件
  3. 内置web容器

二、入门案例(Idea)

1. 创建Spring Initializr

一、Spring Boot:入门_第1张图片
一、Spring Boot:入门_第2张图片
一、Spring Boot:入门_第3张图片
一、Spring Boot:入门_第4张图片

2. 添加spring boot父类依赖和spring boot web依赖



    4.0.0
    
    
        org.springframework.boot
        spring-boot-starter-parent
        2.1.4.RELEASE
         
    
    com.lt
    springboot
    0.0.1-SNAPSHOT
    springboot
    Demo project for Spring Boot

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

        
            org.springframework.boot
            spring-boot-starter-test
            test
        
    

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



3. 创建测试类,并创建主函数

package com.lt.springboot;

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;

/**
 * @ClassName HelloWorld
 * @Description spring boot 例子
 * @Author lt
 * @Date 2019-04-05
 **/

/**
 * 1.@RestController:表示该类中所有方法的返回值都是json格式
 * 2.@EnableAutoConfiguration
 */
@RestController
public class HelloWorld {
    @RequestMapping("/getMsg")
    public String getMsg() {
        return "你好,Spring Boot";
    }
    public static void main(String[] args){
        SpringApplication.run(HelloWorld.class, args);
    }
}

4. 启动项目,访问

一、Spring Boot:入门_第5张图片

三、Spring Boot常用注解

  1. @SpringBootApplication:包含了@ComponentScan、@Configuration和@EnableAutoConfiguration注解;
  2. @ComponentScan:让spring boot扫描到Configuration类并把它加入到程序上下文
  3. @Configuration:等同于spring的XML配置文件;使用Java代码可以检查类型安全
  4. @EnableAutoConfiguration:自动配置
  5. @RestController:@Controller和@ResponseBody的合集,表示该类中所有方法的返回值都是json格式

四、spring boot两种启动方式

1. 单独启动:直接运行main方法

package com.lt.springboot.controller;

import org.springframework.boot.SpringApplication;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import java.util.HashMap;
import java.util.Map;

/**
 * @ClassName Login
 * @Description TODO
 * @Author lt
 * @Date 2019-04-05
 **/
@RestController
public class Login {

    @RequestMapping("/login")
    public Map login(){
        Map map = new HashMap<>();
        map.put("username", "刘涛");
        map.put("password", "123456");
        return map;
    }
    public static void main(String[] args){
        SpringApplication.run(Login.class, args);
    }
}

2. 设置包扫描路径

  • 利用注解@ComponentScan(“com.lt.springboot”)
package com.lt.springboot.app;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
import org.springframework.context.annotation.ComponentScan;

/**
 * @ClassName App
 * @Description TODO
 * @Author lt
 * @Date 2019-04-05
 **/
@ComponentScan("com.lt.springboot")
@EnableAutoConfiguration
public class App {

    public static void main(String[] args){
        SpringApplication.run(App.class, args);
    }
}

五、静态资源访问

1. spring boot默认配置

  1. Spring Boot默认提供静态资源目录位置需置于classpath下,目录名需符合如下规则:
  • /static
  • /public
  • /resources
  • /META-INF/resources
    一、Spring Boot:入门_第6张图片
  1. 访问
    一、Spring Boot:入门_第7张图片

六、全局捕获异常

其他

ideal配置git

IDEA配置github并上传项目

参考

【1】纯洁的微笑

你可能感兴趣的:(06.spring,boot)