
SpringBoot
SpringBoot
林生石竹
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
SpringBoot集成knife4j生成swagger文档
文章目录一、引入依赖二、配置 一、引入依赖 在这里插入代码片 二、配置原创 2021-05-07 17:23:40 · 250 阅读 · 0 评论 -
Initializing Spring DispatcherServlet ‘dispatcherServlet‘
文章目录一、新建项目 Initializing Spring DispatcherServlet 'dispatcherServlet' Initializing Servlet 'dispatcherServlet' Completed initialization in 2 ms 一、新建项目 Initializing Spring DispatcherServlet ‘dispatcherServlet’ Initializing Servlet ‘dispatcherServlet’ Complet原创 2021-04-27 17:06:20 · 37463 阅读 · 5 评论 -
Could not find artifact com.xxx:xxx-boot-parent:pom:0.0.1-SNAPSHOT及maven生命周期
文章目录一、Could not find artifact com.xxx:xxx-boot-parent:pom:0.0.1-SNAPSHOT and ...二、maven的常用命令 一、Could not find artifact com.xxx:xxx-boot-parent:pom:0.0.1-SNAPSHOT and … 创建父工程要先执行maven的install命令,将父工程的pom文件放入仓库中,使得子模块可以引用。 二、maven的常用命令 ...原创 2021-04-24 15:05:09 · 7589 阅读 · 1 评论 -
Disconnected from the target VM, address: ‘127.0.0.1:49748‘, transport: ‘socket‘
文章目录一、Disconnected from the target VM, address: '127.0.0.1:49748', transport: 'socket'二、spring-boot-starter-web 一、Disconnected from the target VM, address: ‘127.0.0.1:49748’, transport: ‘socket’ 缺少依赖 二、spring-boot-starter-web <dependencies> <dep原创 2021-04-22 16:03:24 · 2184 阅读 · 0 评论 -
dependencyManagement和dependencies
文章目录一、dependencies二、dependencyManagement 创建项目过程中为了对子项目中的依赖进行统一管理,会创建一个父类的pom项目。通过dependncyManagement控制引入版本,通过dependencies引入依赖。 一、dependencies 引入依赖,若不对依赖版本进行限制则寻找父级dependencyManagement确定版本。继承与此项目的子模块均可继承该引用,即不再需要进一步引用。 二、dependencyManagement 父类项目使用dependenc原创 2021-04-21 15:26:19 · 227 阅读 · 0 评论