Java
未读
swagger2注解一览
注解一览 @Api:用在请求的类上,表示对类的说明
tags="说明该类的作用,可以在UI界面上看到的注解"
value="该参数没什么意义,在UI界面上也看不到,不需要配置"
@ApiOperation:用在请求的方法上,说明方法的用途、作用
value="说明方法的用途
SpringBoot通用配置属性邮件属性
Spring Boot通用配置属性-邮件属性 键 默认值 描述 spring.mail.default-encoding UTF-8 默认的MimeMessage码。 spring.mail.host SMTP服务器主机。例如,“ smtp.example.com”。 spring.mail.jnd
SpringBoot通用配置属性核心属性
Spring Boot 通用配置属性-核心属性 可以在application.properties文件内部application.yml,文件内部或命令行开关中指定各种属性。本附录提供了常见的Spring Boot属性列表以及对使用它们的基础类的引用。 1.核心属性
Java
未读
SpringBoot通用配置属性JSON属性
Spring Boot通用配置属性-JSON属性 键 默认值 描述 spring.gson.date-format 序列化Date对象时使用的格式。 spring.gson.disable-html-escaping 是否禁用转义HTML字符(如“ <”,“>”等)。 spring.gson.dis
SpringBoot通用配置属性缓存属性
Spring Boot通用配置属性-缓存属性 键 默认值 描述 spring.cache.cache-names 如果基础缓存管理器支持,则以逗号分隔的要创建的缓存名称列表。通常,这会禁用即时创建其他缓存的功能。 spring.cache.caffeine.spec 用于创建缓存的规范。有关规范格式
Java
未读
Springmvc跨域配置
Spring mvc 跨域配置 两种方式: Controller中使用注解 xml中使用全局配置 这里记录xml配置: <mvc:cors>
<mvc:mapping path="/api/**"
allow-credentials="true"
allowed-headers="x-r