摘要:
Swagger只有一个实现类 (Docket) @Bean public Docket docket(Environment environment){ //设置要显示的swagger环境 Profiles profils = Profiles.of("dev"); //通过 environment 阅读全文
摘要:
导入Swagger2依赖 <!-- https://mvnrepository.com/artifact/io.springfox/springfox-swagger2 --> <dependency> <groupId>io.springfox</groupId> <artifactId>spri 阅读全文
摘要:
在Swagger配置类中添加@EnableWebMvc注解 阅读全文
摘要:
这是在@EnableWebMvc的注释之下,原先swagger2的默认地址失效了,所有需要重新配置 在SwaggerConfig配置类中继承 WebMvcConfigurer,重写addResourceHandlers方法 @Override public void addResourceHandl 阅读全文
摘要:
导包 <dependencies> <!--mysql--> <dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> <scope>runtime</scope> </dependency 阅读全文
摘要:
Error resolving template [index], template might not exist or might not be accessible by any of the configured Template Resolvers 解析模板 [index] 时出错,模板可 阅读全文