微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

spring-boot-starter-data-jpa给出了非零退出值1

如何解决spring-boot-starter-data-jpa给出了非零退出值1

我在Windows机器上设置了spring boot项目。 配置:Windows 10 | Java 8 实现'org.springframework.boot:spring-boot-starter-data-jpa' 有了这个插件,我会出错

Execution Failed for task ':DemoApplication.main()'.
> Process 'command 'C:/Program Files/Java/jdk1.8.0_231/bin/java.exe'' finished with non-zero exit value 1

尝试搜索问题,但没有运气。

仅在该插件删除其正常工作后才使用该插件

plugins {
id 'org.springframework.boot' version '2.3.4.RELEASE'
id 'io.spring.dependency-management' version '1.0.10.RELEASE'
id 'java'
}

group = 'com.example'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '1.8'

repositories {
  mavenCentral()
}

dependencies {
  implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
  implementation 'org.springframework.boot:spring-boot-starter-web'
 testImplementation('org.springframework.boot:spring-boot-starter-test') {
    exclude group: 'org.junit.vintage',module: 'junit-vintage-engine'
  }
 }

 test {
  useJUnitPlatform()
  }

解决方法

我从spring initializr在本地创建了一个项目,其依赖项与build.gradle中定义的依赖项相同。

这是我发现的:-

1。。我尝试运行该应用程序,但失败了。遍历日志后,似乎spring正在尝试为数据层初始化bean(在我们添加starter-jpa时是预期的),但是由于我们没有配置任何数据库,因此失败了。

2。。我添加了一个嵌入式h2 database依赖项(如果未启用自动导入,请进行gradle刷新)。然后我重新启动服务器,它工作正常。如果您不想使用嵌入式数据库,则可以配置正在使用的数据库。以下是我的build.gradle

plugins {
    id 'org.springframework.boot' version '2.3.4.RELEASE'
    id 'io.spring.dependency-management' version '1.0.10.RELEASE'
    id 'java'
}

group = 'com.example'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '1.8'

repositories {
    mavenCentral()
}

dependencies {
    implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
    implementation 'org.springframework.boot:spring-boot-starter-web'
    // https://mvnrepository.com/artifact/com.h2database/h2
    implementation group: 'com.h2database',name: 'h2',version: '1.3.148'

    testImplementation('org.springframework.boot:spring-boot-starter-test') {
        exclude group: 'org.junit.vintage',module: 'junit-vintage-engine'
    }
}

test {
    useJUnitPlatform()
}

,

好,这样看来一次您在application.properties中定义的编译。

const onSubmit = (data) => {
    const formData = new FormData();

    formData.append('data',data);
    formData.append('photo',data.photo[0]);

    axios({
      method: 'post',url,data: formData
    })
    .then(res => {
      console.log(res.data);
    })
    .catch(error => {
      console.log('error',error);
    });
};

我不确定为什么这现在对我来说只是一个问题,正如我在已删除的评论中说的(我可能会添加),我有另一个项目列出了相关性但未配置(数据库设置)并且可以毫无问题地进行编译。

无论如何,请在此之前告诉我,是否可行。如果没有,我会再玩一遍,看看能不能帮到你。

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。