标签:boot public filters span esc config spring 字符 需要
spring boot web开发非常的简单,其中包括常用的json输出、filters、property、log等
在以前的spring 开发的时候需要我们提供json接口的时候需要做那些配置呢
如果我们需要使用页面开发只要使用 @Controller
,下面会结合模板来说明
我们常常在项目中会使用filters用于录调用日志、排除有XSS威胁的字符、执行权限验证等等。Spring Boot自动添加了OrderedCharacterEncodingFilter和HiddenHttpMethodFilter,并且我们可以自定义Filter。
两个步骤:
@Configuration
注解,将自定义Filter加入过滤链在web开发的过程中,我经常需要自定义一些配置文件,如何使用呢
com.neo.title=标题
com.neo.description=表述
@Component
public class NeoProperties {
@Value("${com.neo.title}")
private String title;
@Value("${com.neo.description}")
private String description;
}
标签:boot public filters span esc config spring 字符 需要
原文地址:https://www.cnblogs.com/fantjesse/p/9274535.html