**Error :** Process 'command 'C:\Program Files\Java\jdk\bin\java.exe'' finished with non-zero exit value 1
这个错误是得到当我运行的任务是build.gradle文件如下,
plugins {
id 'application'
id 'eclipse'
}
// remove the Javadoc verification
tasks.withType(Javadoc) {
options.addStringOption('Xdoclint:none', '-quiet')
}
// Build version
version = '1.2.6-SNAPSHOT'
sourceCompatibility = '1.8'
artifactory {
publish {
repository.repoKey = 'ent-public-local-builds'
}
}
eclipse.classpath {
containers = containers.collect {
it.replace 'org.eclipse.jdt.launching.JRE_CONTAINER',
'org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/DeveloperJavaJDK'
}
}
//Core Spring version numbers
def springVersion = '5.1.9.RELEASE'
def springBatchVersion = '4.1.2.RELEASE'
//Junit version
def junitVersion = '5.5.1'
//updated to use Transitive Dependencies
dependencies {
// include Spring JARs and dependencies
implementation 'org.springframework:spring-oxm:' + springVersion
implementation 'org.springframework:spring-webmvc:' + springVersion
}
reporting.baseDir = "my-reports"
testResultsDirName = "$buildDir/my-test-results"
application {
mainClassName = 'com.automation.MyClass'
}
task runWithJavaExec(type: JavaExec) {
// group = 'Execution'
// description = "Run the main class with JavaExecTask"
classpath = sourceSets.main.runtimeClasspath
main = 'com.automation.MyClass'
}
runWithJavaExec.onlyIf { project.hasProperty('Execution')}
我使用下面的命令运行这个任务,
gradle runWithJavaExec
最后,我想知道如何通过gradle命令运行java类?除了创建任务之外还有其他可能性吗?如果是,请相应地分享。请帮助我解决这个问题。
更改运行springboot应用程序的端口号。它对我有用。
当您在代码中定义属性文件或某个文件时,通常会发生这种情况,但是当应用程序运行时,它会尝试获取该文件,但它无法在项目中找到文件。应将文件移动到资源文件夹。
如果您使用intellij,只需使缓存无效并重新启动
我试图设置我的新项目,这是使用JAVA16和基于gradle的springboot项目。但是,当我试图在本地运行它时,我有以下错误: 我还验证了java版本。然而,我尝试从cmd、powershell和Intellij中的终端运行。 有人能告诉我修理它的窍门吗?
在Android Studio上运行Android应用程序给我以下错误:- 我还添加了到我的文件。但它仍然给了我错误。 我不知道是什么原因显示了这个错误。我也通过了以下链接,但没有任何东西可以帮助我解决我的问题。 进程'命令usr/lib/jvm/java-8-oracle/bin/java'以非零退出值完成2 任务“:app:dexDebug”的执行失败。通用域名格式。Android石斑鱼类。常
当我键入 在 CentOS 7 终端中调试以使用 gradle 启动此示例Spring启动应用程序时,我收到以下错误。 我搜索了这个错误,并阅读了其他类似但不重复的SO帖子。例如,这是在CentOS 7和web应用程序中的eclipse中。这不是android应用程序等。此外,其他帖子中给出的命令也没有解决这个问题。 重现此问题所需的所有代码都在上面的github链接中,诊断问题的所有日志都在下面
错误:任务“:app:TransformClassesWithDexForDebug”执行失败。com.android.build.api.transform.transformException:com.android.ide.common.Process.processException:org.gradle.Process.internal.execException:Process'Com
我在尝试运行应用程序时添加libriaes项目后出现此错误。 错误:任务“app:dexDebug”的执行失败。 com.ide.common.process.process异常: 组织.gradle.process.internal.exec异常: 处理“命令”C:\程序文件\Java\jdk1.7.0_75\bin\java.exe“以非零退出值 2 完成
并使用指定的版本生成以下问题: 当gretty插件版本3.0.1被设置时,脚本可以正常工作。知道为什么脚本不兼容吗?