EnvirWebMvcConfiguration.kt 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. package cn.gygxzc.envir.config
  2. import com.fasterxml.jackson.databind.ser.std.ToStringSerializer
  3. import org.springframework.context.annotation.Bean
  4. import org.springframework.context.annotation.Configuration
  5. import org.springframework.context.annotation.Primary
  6. import org.springframework.http.converter.HttpMessageConverter
  7. import org.springframework.http.converter.json.Jackson2ObjectMapperBuilder
  8. import org.springframework.http.converter.json.MappingJackson2HttpMessageConverter
  9. import org.springframework.web.servlet.config.annotation.ResourceHandlerRegistry
  10. import org.springframework.web.servlet.config.annotation.WebMvcConfigurer
  11. import java.text.SimpleDateFormat
  12. /**
  13. * Created by niantuo on 2018/9/20.
  14. * mvc 配置
  15. *
  16. */
  17. @Configuration
  18. open class EnvirWebMvcConfiguration : WebMvcConfigurer {
  19. companion object {
  20. const val CONVERTER_NAME = "hookMappingJackson2HttpMessageConverter"
  21. }
  22. override fun addResourceHandlers(registry: ResourceHandlerRegistry) {
  23. registry.addResourceHandler("swagger-ui.html")
  24. .addResourceLocations("classpath:/META-INF/resources/")
  25. registry.addResourceHandler("/webjars*")
  26. .addResourceLocations("classpath:/META-INF/resources/webjars/")
  27. }
  28. override fun configureMessageConverters(converters: MutableList<HttpMessageConverter<*>>) {
  29. converters.add(getConverter())
  30. }
  31. @Bean(CONVERTER_NAME)
  32. open fun getConverter(): MappingJackson2HttpMessageConverter {
  33. return MappingJackson2HttpMessageConverter().apply {
  34. this.objectMapper = builder().build()
  35. }
  36. }
  37. @Bean
  38. @Primary
  39. open fun builder(): Jackson2ObjectMapperBuilder {
  40. return Jackson2ObjectMapperBuilder().apply {
  41. serializerByType(java.lang.Long::class.java, ToStringSerializer.instance)
  42. serializerByType(java.lang.Long.TYPE, ToStringSerializer.instance)
  43. // date
  44. dateFormat(SimpleDateFormat("yyyy-MM-dd HH:mm:ss"))
  45. timeZone("GMT+8")
  46. }
  47. }
  48. }