本节主要:
1:怎么手动关闭不需要的配置?
2:修改自定义启动的banner
3:全局配置文件
本文是《凯哥陪你学系列-框架学习之spring boot框架学习》中第三篇 spring boot框架学习3-spring boot核心(2)
声明:本文系凯哥Java(www.kaigejava.com)原创,未经允许,禁止转载!
一:怎么手动关闭不需要的配置?
在上一篇中,我们知道@EnableAutoConfiguration注解是自动配置的。并且我们从spring boot已经为我们准备了很多自动配置的。在上节中,也提出了问题。怎么手动配置,不让spring boot自动配置呢?
比如,我们不想让spring boot自动配置redis,而是想通过我们手动配置redis。这种情况有该怎么解决呢?
回看springbootapplication这个注解源码:
从源码注释中我们可以看出其实,只需要在@springbootapplication注解的exclude值添加上就可以。
如下图:
其他配置类似。
二:修改自定义启动的banner
spring boot项目启动后会看到这样的图案:
这个图片,其实是可以自己定义的。比如凯哥准备配置一个kaigejava。
具体配置如下
1:输入网址:
请点击此处输入图片描述
会出现如下:
2:拷贝生成的字符复制到一个文本文件中,并将该文件命名为banner.txt
3:将banner.txt拷贝到项目的resources目录中:
4:重启项目,查看修改效果.
如果感觉不好看,可以修改。
项目中启动效果:
如果不想看到任何的banner,也可以选择将其关闭的。
关闭配置如下:
修改了springApplication的方式。
三:全局配置文件
spring boot项目使用一个全局的配置文件application.properties或者是application.yml。在resources目录下或者类路径下的/config下。一般我们放到resources下。
我们知道,spring boot基础的tomcat默认端口是8080.那么接下来我们修改端口为8888
3.1:修改默认tomcat端口为8888
重启启动项目:
3.2:修改进入DispatcherServlet的规则为:*.html
访问:
访问不带html的:
全局变量更多的配置如下:
常用到的:
# BANNER
banner.charset=UTF-8 # Banner file encoding.
banner.location=classpath:banner.txt # Banner file location.
banner.p_w_picpath.location=classpath:banner.gif # Banner p_w_picpath file location (jpg/png can also be used).
banner.p_w_picpath.width= # Width of the banner p_w_picpath in chars (default 76)
banner.p_w_picpath.height= # Height of the banner p_w_picpath in chars (default based on p_w_picpath height)
banner.p_w_picpath.margin= # Left hand p_w_picpath margin in chars (default 2)
banner.p_w_picpath.invert= # If p_w_picpaths should be inverted for dark terminal themes (default false)
等等。很多的,这里就不一一的罗列出来了。
本节总结:
本节需要掌握的是,怎么关闭自动配置以及全局配置文件的设置。
下节预告:
在下一节中,我们将要讲解的是starter pom、xml配置文件已经日志相关的。
本系列其他文章:
欢迎关注凯哥公众号:凯哥Java
欢迎访问凯哥个人网站:
本文出处: