第四章 SpringBoot整合Web开发

2019-05-05  本文已影响0人  shenyoujian
1、返回Json数据

SpringMvc中使用消息转换器HttpMessageConverter对Json转换提供了很好的支持。而SpringBoot提供了更加简便的方式。只要添加web依赖就自动默认添加了jackson-databind这个json处理器,这是使用了spring中默认的MappingJson2HttpMessageConverter来实现的。

    <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>
public class Book {

    private Integer id;
    private String name;
    private String author;
    @JsonIgnore
    private Float price;
    @JsonFormat(pattern = "yyyy-MM-dd")
    private Date publicDate;
@Controller
@ResponseBody
public class BookController {

    @GetMapping("/book")
    public Book books(){
        Book book1 = new Book();
        book1.setId(1);
        book1.setName("springboot");
        book1.setAuthor("王松");
        book1.setPrice(15.6f);
        book1.setPublicDate(new Date());
        return  book1;

    }
}

2、自定义转换器

常见的json处理器除了jackson转换器外还有gson和fastson。

2.1 使用gson
<dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
            <exclusions>
                <exclusion>
                    <groupId>com.fasterxml.jackson.core</groupId>
                    <artifactId>jackson-databind</artifactId>
                </exclusion>
            </exclusions>
            <version>2.1.4.RELEASE</version>
        </dependency>
        <dependency>
            <groupId>com.google.code.gson</groupId>
            <artifactId>gson</artifactId>
            <version>2.8.5</version>
        </dependency>

/**
 * @Author ljs
 * @Description 开发者自己提供一个GsonHttpMessageConverter的实例
 * @Date 2019/4/13 23:20
 **/
@Configuration
public class GsonConfig {

    @Bean
    GsonHttpMessageConverter gsonHttpMessageConverter(){

        GsonHttpMessageConverter gsonHttpMessageConverter = new GsonHttpMessageConverter();
        GsonBuilder gsonBuilder = new GsonBuilder();
        //设置gson的日期格式
        gsonBuilder.setDateFormat("yyyy-MM-dd");
        // 设置gson解析时修饰符为protected字段被过滤掉
        gsonBuilder.excludeFieldsWithModifiers(Modifier.PROTECTED);
        Gson gson = gsonBuilder.create();
        gsonHttpMessageConverter.setGson(gson);
        return gsonHttpMessageConverter;
    }
}
public class Book {

    private Integer id;
    private String name;
    private String author;
    protected Float price;
    private Date publicDate;
2.2 使用fastjson
    <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
            <version>2.1.4.RELEASE</version>
            <exclusions>
                <exclusion>
                    <groupId>com.fasterxml.jackson.core</groupId>
                    <artifactId>jackson-databind</artifactId>
                </exclusion>
            </exclusions>
        </dependency>

        <dependency>
            <groupId>com.alibaba</groupId>
            <artifactId>fastjson</artifactId>
            <version>1.2.12</version>
        </dependency>
@Configuration
public class MyFastJsonConfig {

    @Bean
    FastJsonHttpMessageConverter fastJsonHttpMessageConverter(){
        FastJsonHttpMessageConverter converter = new FastJsonHttpMessageConverter();
        FastJsonConfig config = new FastJsonConfig();
        //设置日期
        config.setDateFormat("yyyy-MM-dd");
        //设置编码
        config.setCharset(Charset.forName("utf-8"));
        config.setSerializerFeatures(
                //是否在生成的json中输出类名
                SerializerFeature.WriteClassName,
                //是否输出value为null的数据
                SerializerFeature.WriteMapNullValue,
                //生成json格式化
                SerializerFeature.PrettyFormat,
                //空集合输出[]而非null
                SerializerFeature.WriteNullListAsEmpty,
                //空字符输出而“”而非null
                SerializerFeature.WriteNullStringAsEmpty
        );
        converter.setFastJsonConfig(config);
        return converter;
    }
}
spring.http.encoding.force-response=true
@Configuration
public class MyWebMvcConfig implements WebMvcConfigurer {
    @Override
    public void configureMessageConverters(List<HttpMessageConverter<?>> converters) {
        FastJsonHttpMessageConverter converter = new FastJsonHttpMessageConverter();
        FastJsonConfig config = new FastJsonConfig();
        config.setDateFormat("yyyy-MM-dd");
        config.setCharset(Charset.forName("utf-8"));
        config.setSerializerFeatures(
                SerializerFeature.WriteClassName,
                SerializerFeature.WriteMapNullValue,
                SerializerFeature.PrettyFormat,
                SerializerFeature.WriteNullListAsEmpty,
                SerializerFeature.WriteNullListAsEmpty
        );
        converter.setFastJsonConfig(config);
        converters.add(converter);
    }
}

3 静态资源访问

3.1 默认策略

Springboot对于SpringMvc的自动化配置都在WebMvcAutoConfiguration类中。先从这个类中看看它的默认策略。
WebMvcAutoConfiguration类中有个WebMvcAutoConfigurationAdapter内部类,这个类实现了WebMvcConfigurer,而WebMvcConfigurer里有一个方法专门是用来配置静态资源过滤addResourceHandlers(ResourceHandlerRegistry registry),所以静态类WebMvcAutoConfigurationAdapter主要是通过实现该方法来改变过滤默认策略,

WebMvcAutoConfigurationAdapter类里的addResourceHandlers方法


image.png

而默认的匹配策略在WebMvcProperties这个属性文件中,/**的意思是默认过滤所有静态资源
WebMvcProperties类


image.png

而获取到的默认静态资源位置定义在 ResourceProperties中。意思就是静态资源的位置只在下面这些地方
ResourceProperties类


image.png

但是getResourceLocations 方法中对这四个资源位置做了扩充,加了一个
SERVLET_LOCATIONS,而这个的定义就是“/”,所以总共有五个存放静态资源的地方,但是springboot项目不需要webapp所以第五个一般不考虑,其他优先级别以次降低。


image.png
3.2 默认静态资源实战
3.3 自定义策略
spring.mvc.static-path-pattern=/static/**
spring.resources.static-locations=classpath:/static/
@Configuration
public class MyWebMvcConfig implements WebMvcConfigurer {

    @Override
    public void addResourceHandlers(ResourceHandlerRegistry registry) {
        registry.addResourceHandler("/static/**")
                .addResourceLocations("classpath:/static/");

    }
}
上一篇 下一篇

猜你喜欢

热点阅读