IDEA社区版没有spring Initializr

Posted gRPC

tags:

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

IDEA社区版没有spring Initializr

IDEA社区版pom.xml添加引用改造成IDEA企业版Java Web工程,Java

IDEA社区版pom.xml添加引用改造成IDEA企业版Java Web工程,Java

idea社区版里面的pom.xml配置:

    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>2.7.4</version>
        <relativePath/>
    </parent>

    <dependencies>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>3.8.1</version>
            <scope>test</scope>
        </dependency>

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

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

        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-devtools</artifactId>
            <scope>runtime</scope>
            <optional>true</optional>
        </dependency>

        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-configuration-processor</artifactId>
            <optional>true</optional>
        </dependency>

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

        <dependency>
            <groupId>org.projectlombok</groupId>
            <artifactId>lombok</artifactId>
            <version>1.18.22</version>
        </dependency>

    </dependencies>

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

参考文章:

IDEA社区版(Community Edition)创建Springboot-Web项目,Java_zhangphil的博客-CSDN博客除了可以通过application.yml文件配置MyApp外,也可以通过application.properties配置,application.properties与application.yml配置写法不同。特别注意,如果resources下面同时存在application.yml和application.properties两个配置文件,那么application.properties里面的配置将覆盖application.yml的配置。(3)在main目录下建立项目的代码包(目录层次结构)https://zhangphil.blog.csdn.net/article/details/126894920

以上是关于IDEA社区版没有spring Initializr的主要内容,如果未能解决你的问题,请参考以下文章

spring JPA整合hibernate,IDEA社区版,Java

spring JPA整合hibernate,IDEA社区版,Java

使用idea社区版编译spring5源码

如何使用 IntelliJ IDEA 社区版调试 spring-boot 应用程序?

IntelliJ IDEA 旗舰版与社区版有啥不同

社区版idea2022里没有添加框架支持吗