如何在intellij中运行Spring Boot应用程序?

时间:2019-06-25 12:50:11

标签: java maven spring-boot intellij-idea

我想以intellij的想法运行一个演示春季启动应用程序,但是我遇到了错误:

Error:(3, 32) java: package org.springframework.boot does not exist

我的pom.xml

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>1.5.21.RELEASE</version>
        <relativePath/> <!-- lookup parent from repository -->
    </parent>
    <groupId>com.example</groupId>
    <artifactId>helloworld</artifactId>
    <version>0.0.1-SNAPSHOT</version>
    <name>helloworld</name>
    <description>Hello World project for Spring Boot</description>

    <properties>
        <java.version>1.8</java.version>
    </properties>

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

        <dependency>
            <groupId>com.microsoft.sqlserver</groupId>
            <artifactId>mssql-jdbc</artifactId>
            <scope>runtime</scope>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
            <scope>test</scope>
        </dependency>
    </dependencies>

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

</project>

2 个答案:

答案 0 :(得分:0)

确保打开pom.xml而不是打开文件夹。 IntelliJ将询问您是否要导入为项目。对这个问题回答是。 您始终可以右键单击pom.xml,然后选择Maven-> Reimport,它将自动为您创建类路径。

然后从树中转到主类,然后右键单击并选择“运行”。那应该在您的运行配置中创建一个临时配置。

其余的您可以在这里找到:

  

https://www.jetbrains.com/help/idea/running-applications.html

如果要作为Maven项目运行,请执行以下操作:

  

https://www.jetbrains.com/help/idea/work-with-maven-goals.html

如果要以Java jar从终端运行,则在构建spring-boot-jar时,按CTRL + TAB + T(激活终端)并输入终端: java -jar target/yourjar.jar

答案 1 :(得分:0)

查看此官方page

创建一个新的spring boot应用程序,确保添加正确的依赖项,然后生成并下载它。 最后,打开intellij并选择下载的文件。

您还可以选中this