Web 开发
Spring Boot Web 开发非常的简单,其中包括常用的 json 输出、filters、property、log 等
json 接口开发
在以前使用 Spring 开发项目,需要提供 json 接口时需要做哪些配置呢
添加 jackjson 等相关 jar 包
配置 Spring Controller 扫描
对接的方法添加 @ResponseBody
这样会经常由于配置错误,导致406错误等等,Spring Boot 如何做呢,只需要类添加@RestController
即可,默认类中的方法都会以 json 的格式返回1
2
3
4
5
6
7
8
9
10@RestController
public class HelloController {
@RequestMapping("/getUser")
public User getUser() {
User user=new User();
user.setUserName("小明");
user.setPassWord("xxxx");
return user;
}
}
如果需要使用页面开发只要使用@Controller
注解即可,下面会结合模板来说明
自定义 Filter
我们常常在项目中会使用 filters 用于录调用日志、排除有 XSS 威胁的字符、执行权限验证等等。Spring Boot 自动添加了 OrderedCharacterEncodingFilter 和 HiddenHttpMethodFilter,并且我们可以自定义 Filter。
两个步骤:
实现 Filter 接口,实现 Filter 方法
添加@Configuration
注解,将自定义 Filter 加入过滤链
自定义 Property
在 Web 开发的过程中,经常需要自定义一些配置文件,如何使用呢
配置在 application.properties 中1
2com.neo.title=纯洁的微笑
com.neo.description=分享生活和技术