SpringBoot常用注解

自己小白入门做笔记用的

项目配置文件中的参数
@Value("${para}") → para是配置文件中的变量
@Component \n @ConfigurationProPerties(prefix = "pre") → 写在实体类中,pre是配置文件中一组变量的组名,也就是前缀
接口文件
@RestController → 写在接口函数外面的类的上面,相当于@Controller \n @ResposeBody
@GetMapping("map") → get请求方式的接口的映射
@PostMapping("map") → post请求方式的接口的映射
@RequestMapping("map") → 两种请求方式都可以
其他的
@Autowired → 引入其他代码文件,比如引入项目配置文件中的参数最后一条所说的实体类,即配置类,也可以引入Service文件
@Transactional → 事务,下面的函数中的操作作为数据库事务进行
@MIN @Valid → 表单验证
传递参数
方式一 get和post

必传:

@GetMapping("/getid")
public String getid(@ReauestParam("id") Integer myId) {
	return "id:" + myId;
}

非必传:

@GetMapping("/getid")
public String getid(@ReauestParam(value = "id", required = false, defaultValue = "0") Integer myId) {
	return "id:" + myId;
}

defaultValue默认值必须写成字符串的形式,变量类型仍然是后面设置的类型,此处是Integer
URL:/say?id=100

方式二 仅限get
@GetMapping("/getid/{id}")
public String getid(@PathVariable("id") Integer myId) {
	return "id:" + myId;
}

URL:/say/100

SpringBoot常用注解SpringBoot常用注解 爱你的铁锤妹妹 发布了35 篇原创文章 · 获赞 35 · 访问量 2万+ 私信 关注
上一篇:Springboot页面跳转


下一篇:springboot学习4.1——thymeleaf语法1