码迷,mamicode.com
首页 >  
搜索关键字:springboot配置    ( 305个结果
SpringBoot Bean 扫描注册核心之:ConfigurationClassPostProcessor 详解
(SpringBoot 版本:2.2.2.RELEASE) 可以说 @Configuration 是 SpringBoot 配置的基石,自然 @Configuration 类的处理是很有必要研究的。 @Configuration 类的处理是由 ConfigurationClassPostProces ...
分类:编程语言   时间:2020-04-16 22:54:14    阅读次数:124
SpringBoot配置Swagger
一.描述 Swagger是一个规范的,标准的框架。用于生成、描述、调用和可视化Restful风格的Web服务。 二.使用 1.引入pom依赖: <dependency> <groupId>io.springfox</groupId> <artifactId>springfox-swagger2</a ...
分类:编程语言   时间:2020-04-11 11:31:52    阅读次数:89
SpringBoot(八)----SpringBoot配置日志文件
今天介绍一下SpringBoot配置日志文件 SpringBoot在所有的内部日志中使用Commons Logging,但是默认配置也提供了对常用日志的支持,如Java Util Logging,Log4J,Log4J2和Logback。但是每种Logger都可以通过配置使用控制台或者文件输出日志内 ...
分类:编程语言   时间:2020-04-08 22:17:57    阅读次数:97
springboot配置拦截器不能放行静态资源
新建一个拦截器类,实现 org.springframework.web.servlet.HandlerInterceptor 接口,重写preHandle、postHandle、afterCompletion方法分别是处理前、处理中、处理后。 public class RequestIntercep ...
分类:编程语言   时间:2020-04-08 16:22:57    阅读次数:106
springboot(7)配置文件自动映射
SpringBoot注解配置文件自动映射到属性和实体类 Controller上面配置 属性上面配置 ...
分类:编程语言   时间:2020-04-05 00:47:05    阅读次数:89
SpringBoot(3)—配置文件详解:Properties和YAML
一、配置文件优先级加载机制 SpringBoot项目启动会扫描以下位置的application.properties或者application.yml作为默认的配置文件 1、工程根目录:./config/ 2、工程根目录:./ 3、classpath:/config/ 4、classpath:/ 加 ...
分类:编程语言   时间:2020-04-01 12:32:09    阅读次数:97
SpringBoot日志配置文件不生效
SpringBoot日志配置文件不生效是因为配置文件重复!!! SpringBoot项目中默认有一份日志配置文件,项目启动时先读取到了默认日志配置文件,没有读取resource目录中的配置文件,需要自定义日志信息的话需要在Springboot配置文件中指定读取自定义的配置文件 logging.con ...
分类:编程语言   时间:2020-03-31 20:36:25    阅读次数:603
springboot配置工程为开发模式
一、配置idea a、Ctrl+Alt+S => Compiler => Build project automatically; b、Ctrl+Alt+Shift+/ => Registry... => compiler.automake.allow.when.app.running; 二、配置p ...
分类:编程语言   时间:2020-03-29 10:31:09    阅读次数:94
SpringBoot配置嵌入式的Servlet
SpringBoot默认使用Tomcat作为嵌入式的Servlet 问题? 1)、如何定制和修改Servlet容器的相关配置; server.port=8081 server.context-path=/crud server.tomcat.uri-encoding=UTF-8 //通用的Servl ...
分类:编程语言   时间:2020-03-27 11:14:01    阅读次数:89
SpringBoot(6) 集成Druid数据源
介绍两种方式集成,一般都是使用application.prperties文件来配置。 1,使用springboot配置文件(application.properties)集成。 2,使用配置类集成。 SpringBoot提倡基于java的配置,尽管你可以使用XML源调用SpringApplicati ...
分类:编程语言   时间:2020-03-16 23:27:12    阅读次数:71
305条   上一页 1 ... 4 5 6 7 8 ... 31 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!