Spring Boot_01

常用注解

常用注解

1、@RestController和@RequestMapping是Spring MVC的注解,不是Spring Boot特有的。
2、@RestController = @Controller + @ResponseBody
3、@SpringBootApplication = @SpringBootConfiguration + @EnableAutoConfiguration + @ComponentScan
在这里插入图片描述

@RequestMapping

在这里插入图片描述

@GetMapping = @RequestMapping(method = RequestMethod.GET)
@PostMapping = @RequestMapping(method = RequestMethod.POST)
@PutMapping = @RequestMapping(method = RequestMethod.PUT)
@DeleteMapping = @RequestMapping(method = RequestMethod.DELETE)
@RequestParam(value = "name", required = true)可以设置默认值,比如分页 
@RequestBody 请求体映射实体类需要指定http头为 content-type为application/json charset=utf-8

在这里插入图片描述

@RequestHeader 请求头,比如鉴权
@RequestHeader("access_token") String accessToken

@JsonXXX注解

指定字段不返回:@JsonIgnore
指定日期格式:@JsonFormat(pattern=“yyyy-MM-dd hh:mm:ss”,locale=“zh”,timezone=“GMT+8”)
空字段不返回:@JsonInclude(Include.NON_NUll)
指定别名:@JsonProperty

public class ColleagueDTO extends BaseDTO{
    private String username;

    @JsonIgnore
    private String password;

    private String nickName;

    private Integer sex;

    @JsonFormat(pattern="yyyy-MM-dd HH:mm:ss",locale = "zh",timezone="GMT+8")
    private Date registerDate;

    @JsonProperty("保密字段")
    private BigDecimal salary;

    @JsonFormat(pattern="yyyy-MM-dd HH:mm:ss",locale = "zh",timezone="GMT+8")
    private Date birthDate;

    private Integer age;

}

在这里插入图片描述

目录结构

src/main/java:存放代码
src/main/resources
	static: 存放静态文件,比如 css、js、image, (访问方式 http://localhost:8080/js/main.js)
	templates:存放静态页面jsp,html,tpl
	config:存放配置文件,application.properties

同个文件的加载顺序,静态资源文件Spring Boot 默认会挨个从META/resources > resources > static > public 里面找是否存在相应的资源,如果有则直接返回。

spring.resources.static-locations = 
classpath:/META-INF/resources/,
classpath:/resources/,
classpath:/static/,
classpath:/public/ 

如果要访问静态html网页,需要添加依赖:

<dependency>
   <groupId>org.springframework.boot</groupId>
   <artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>

如果要更改静态资源文件的路径,可以在application.properties配置。

spring.resources.static-locations=classpath:/META-INF/resources/,classpath:/resources/,classpath:/static/,classpath:/public/,classpath:/自定义文件夹/```

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值