Spring Boot Sping Boot 3中的调试方式有变化吗?

i1icjdpr  于 2023-03-02  发布在  Spring
关注(0)|答案(1)|浏览(96)

我用这个pom.xml做了一个简单的测试:

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://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>2.7.2</version>
    </parent>
    <groupId>com.myproject.inventory</groupId>
    <artifactId>inventory</artifactId>
    <version>0.0.1-SNAPSHOT</version>
    <name>inventory</name>
    <description>Project to control inventory</description>
    <properties>
        <java.version>19</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-devtools</artifactId>
            <scope>runtime</scope>
            <optional>true</optional>
        </dependency>

    </dependencies>

</project>

这个启动类:

package com.myproject.inventory;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;

@SpringBootApplication
public class InventoryApplication {

    public static void main(final String[] args) {
    SpringApplication.run(InventoryApplication.class, args);
    }

}

在2.7.2版本中,使用spring-boot:run -Dspring-boot.run.fork=false -f pom.xml进行调试,它可以在SpringApplication.run(InventoryApplication.class, args);行的断点处正常停止。但在spring-boot-starter-parent的3.0.3版本中,它无法正常工作。
有人知道这在Sping Boot 3中是否发生了变化吗?

6kkfgxo0

6kkfgxo01#

在Maven的JVM中运行应用程序的支持在Sping Boot 2.7中已弃用,在Spring Boot 3.0中已删除。您可以使用-Dspring-boot.run.jvmArguments在运行应用程序的JVM中启用调试。文档中有这样的示例:

mvn spring-boot:run -Dspring-boot.run.jvmArguments="-Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=5005"

相关问题