欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

如何创建springboot项目

程序员文章站 2024-02-26 19:44:58
...
  1. 创建springboot项目
    如何创建springboot项目
    如何创建springboot项目

  2. 填写项目名称
    如何创建springboot项目

  3. 选择你想要的框架
    如何创建springboot项目

  4. 检查项目路径
    如何创建springboot项目

  5. 配置自己的maven
    如何创建springboot项目

如何创建springboot项目

如何创建springboot项目

  1. 新建的项目没有被maven管理
用IDEA创建的springboot项目不能导入maven依赖。并且在IDEA右上角也没有出现maven窗口,打开 pom.xml发现有一段报错,pom.xml 显示的图标也很奇怪(source文件夹黑乎乎的) 怎么办? 双击打开pom.xml,右键选择 Add as Maven Project 为什么会出现这种情况:可能是IDEA的bug

如何创建springboot项目

  1. maven插件飘红
    如何创建springboot项目
    在仓库中找到maven-plugin的目录,删除,重新下载

如何创建springboot项目
如何创建springboot项目
如何创建springboot项目

  1. 启动程序Springboot00Application
    如何创建springboot项目
  2. 若启动后报错
    问题1:
Failed to execute goal org.apache.maven.plugins:maven-surefire- plugin:2.22.2:test (default-test) on project springboot_00

如何创建springboot项目
如何创建springboot项目

<!--添加配置跳过测试-->
 <plugin> 
<groupId>org.apache.maven.plugins</groupId> 
<artifactId>maven-surefire-plugin</artifactId> 
<version>2.22.2</version> 
<configuration> 
<skipTests>true</skipTests>
 </configuration> 
</plugin> 
<!--添加配置跳过测试-->

问题2:
如何创建springboot项目
在application.properties文件中

#应用名称 
spring.application.name=boot0 
#tomcat服务器端口号 
server.port=9999 
#访问的上下文配置 
server.servlet.context-path=/boot0 
#编码格式 
server.tomcat.uri-encoding=utf-8 
#数据库相关配置 
spring.datasource.driver-class-name=com.mysql.jdbc.Driver 
spring.datasource.url=jdbc:mysql://localhost:3306/j2005-mybatis? characterEncoding=UTF-8 
spring.datasource.username=root
 spring.datasource.password=123456 
 spring.datasource.max-idle=10 
 spring.datasource.max-wait=10000 
 spring.datasource.min-idle=5 
 spring.datasource.initial-size=5

因为默认依赖的mysql的驱动版本8.0.x
如何创建springboot项目
如何创建springboot项目

  1. 启动成功,你会看到
    如何创建springboot项目
    如何创建springboot项目

  2. 删除模块
    如何创建springboot项目
    如何创建springboot项目

如何创建springboot项目