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

使用IDEA创建一个SpringBoot项目

程序员文章站 2022-05-02 19:27:03
...

使用IDEA创建一个SpringBoot项目

1、打开IntelliJ IDEA依次点击File–New–Project
使用IDEA创建一个SpringBoot项目
2、选择 Spring Initializr
使用IDEA创建一个SpringBoot项目
3、填入项目信息,我的项目名mybatis-plus
使用IDEA创建一个SpringBoot项目
4、如果是一个Web项目,勾选Web
使用IDEA创建一个SpringBoot项目
5、确认信息,点击final,等待依赖完成,展示项目结构如下
使用IDEA创建一个SpringBoot项目
6、最新版本2.0.4

<groupId>com.frog</groupId>
    <artifactId>mybatis-plus</artifactId>
    <version>0.0.1-SNAPSHOT</version>
    <packaging>jar</packaging>

    <name>mybatis-plus</name>
    <description>Demo project for Spring Boot</description>

    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>2.0.4.RELEASE</version>
        <relativePath/> <!-- lookup parent from repository -->
    </parent>

    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
        <java.version>1.8</java.version>
    </properties>

    <dependencies>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>

        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
            <scope>test</scope>
        </dependency>

        <dependency>
            <groupId>mysql</groupId>
            <artifactId>mysql-connector-java</artifactId>
        </dependency>

    </dependencies>

    <build>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
            </plugin>
        </plugins>
    </build>

7、需要配置数据源才能启动,否则会报错
在application.yml中配置

server:
  port: 10050


# DataSource Config
spring:
  datasource:
    url: jdbc:mysql://localhost:3306/frog?useUnicode=true&useSSL=false&characterEncoding=utf8
    driver-class-name: com.mysql.jdbc.Driver
    username: root
    password: 123456

8、启动项目
使用IDEA创建一个SpringBoot项目

相关标签: SpringBoot