springboot
文章平均质量分 51
L564458192
这个作者很懒,什么都没留下…
展开
-
Web application could not be started as there was no org.springframework.boot.web.servlet.server.Ser
Web application could not be started as there was no org.springframework.boot.web.servlet.server.ServletWebServerFactory bean defined in the context.原创 2022-08-16 10:54:18 · 49545 阅读 · 7 评论 -
springboot之启动原理解析及源码阅读
前言SpringBoot为我们做的自动配置,确实方便快捷,但是对于新手来说,如果不大懂SpringBoot内部启动原理,以后难免会吃亏。所以这次博主就跟你们一起一步步揭开SpringBoot的神秘面纱,让它不在神秘。 正文我们开发任何一个Spring Boot项目,都会用到如下的启动类@SpringBootApplicationpublic class Applicat...转载 2019-01-15 04:28:07 · 319 阅读 · 0 评论 -
IDEA删除项目
第一步:菜单File >>> Close Project 关闭项目第二步:在弹出的窗口中,选择相应的项目,在右上角点击删除第三步:在找到项目在磁盘中的存储位置,删除项目,项目就彻底删除了...原创 2019-03-01 10:16:55 · 2642 阅读 · 0 评论 -
关于apache-maven中settings.xml的配置说明
一、settings.xml在apache-maven中的配置1、找到apache-maven的存放位置,找到conf文件夹下的settings.xml,这就是在apache-maven中的位置了,配上一张图:2、下面说settings.xml的详细配置,先上一张图,看我的配置及说明<localRepository>Maven本地存储路经</localRep...原创 2019-03-06 16:21:19 · 1564 阅读 · 0 评论 -
Transient 的用法
JDK 1.8版本所在包:java.beans一、1.8版本对 transient的概述:@Target(value=METHOD) @Retention(value=RUNTIME)public @interface Transient表示当Introspector构造与注释代码元素相关联的PropertyDescriptor或EventSetDescriptor类时,应使用给...原创 2019-08-09 19:22:12 · 1245 阅读 · 0 评论