Springboot+Maven

Posted 小白测试

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Springboot+Maven相关的知识,希望对你有一定的参考价值。

Spingboot框架在maven项目中的引用。直接在pom.xml文件中添加上一下内容。

注意事项:pom.xml文件中只能有一组<parent>标签

<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.0.0.RELEASE</version>
</parent>
<!--添加依赖-->
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
</dependencies>

 

以上是关于Springboot+Maven的主要内容,如果未能解决你的问题,请参考以下文章

SpringBoot启动报错“Consider defining a bean of type ‘xxx.mapper.UserMapper‘ in your configuration.“(代码片段

maven工程仿springboot手写代码区分开发测试生产

全栈编程系列SpringBoot整合Shiro(含KickoutSessionControlFilter并发在线人数控制以及不生效问题配置启动异常No SecurityManager...)(代码片段

maven web项目的web.xml报错The markup in the document following the root element must be well-formed.(代码片段

springboot+maven 集成lombok简化代码

SpringBoot中表单提交报错“Content type ‘application/x-www-form-urlencoded;charset=UTF-8‘ not supported“(代码片段