|
@@ -1,35 +0,0 @@
|
|
|
-package com.winhc.bigdata.query.server;
|
|
|
-
|
|
|
-import org.mybatis.spring.annotation.MapperScan;
|
|
|
-import org.springframework.boot.SpringApplication;
|
|
|
-import org.springframework.boot.autoconfigure.SpringBootApplication;
|
|
|
-
|
|
|
-@SpringBootApplication
|
|
|
-@MapperScan("com.winhc.bigdata.query.server.mapper")
|
|
|
-public class BigdataQueryServerApplication {
|
|
|
-
|
|
|
- public static void main(String[] args) {
|
|
|
- SpringApplication.run(BigdataQueryServerApplication.class, args);
|
|
|
- }
|
|
|
-
|
|
|
-/*
|
|
|
- *//*注入Bean : HttpMessageConverters,以支持fastjson*//*
|
|
|
- @Bean
|
|
|
- public HttpMessageConverters fastJsonHttpMessageConverters() {
|
|
|
- FastJsonHttpMessageConverter fastConvert = new FastJsonHttpMessageConverter();
|
|
|
- FastJsonConfig fastJsonConfig = new FastJsonConfig();
|
|
|
- fastJsonConfig.setSerializerFeatures(SerializerFeature.PrettyFormat,
|
|
|
- SerializerFeature.WriteNullStringAsEmpty,
|
|
|
- SerializerFeature.WriteNullNumberAsZero,
|
|
|
- SerializerFeature.WriteNullListAsEmpty,
|
|
|
- SerializerFeature.WriteMapNullValue,
|
|
|
- SerializerFeature.DisableCheckSpecialChar);
|
|
|
- fastJsonConfig.setDateFormat("yyyy-MM-dd hh:mm:ss");
|
|
|
- //处理中文乱码问题
|
|
|
- List<MediaType> fastMediaTypes = new ArrayList<>();
|
|
|
- fastMediaTypes.add(MediaType.APPLICATION_JSON_UTF8);
|
|
|
- fastConvert.setSupportedMediaTypes(fastMediaTypes);
|
|
|
- fastConvert.setFastJsonConfig(fastJsonConfig);
|
|
|
- return new HttpMessageConverters((HttpMessageConverter<?>) fastConvert);
|
|
|
- }*/
|
|
|
-}
|