Questions tagged [bootrun]
24 questions
0
votes
0 answers
How to run a gradle task after bootRun has started up the Springboot app
I am trying to create a gradle task that will execute a postman collection against a running Spring Boot app. For this to happen the first part of the task has to be that the app is started using gradle bootRun. The problem is that this task never…

Tom
- 3
- 2
0
votes
1 answer
spring boot dockerRun with auto restart with remote debug never turning on
I'm making application spring boot project.
I'm trying to make developing environment using bootRun with auto restart in spring-boot-devtools.
I saw the how to do that via this question.
Spring Boot bootRun with continuous build
The difference…

isanghaessi
- 1
- 2
0
votes
2 answers
Execution failed for task ':bootRun'. SpringBoot Gradle
I thank you in advance for your help
I am currently starting a Spring Boot project (Gradle) and when I run the ./gradlew bootRun command on my VScode terminal, I get the following message:
APPLICATION FAILED TO START
Description:
Web server failed…

Joy Boy
- 11
- 2
0
votes
1 answer
How to pass system property "javax.net.ssl.keyStore" as argument to gradle bootRun (Gradle 7.4)
I'm struggling to get this to work.
This below works fine:
./gradlew bootRun --args="--spring.profiles.active=dev"
But, all these below don't seem to work to pass in javax.net.ssl.keyStore, unless I'm mistaken in my testing.
./gradlew bootRun…

His
- 5,891
- 15
- 61
- 82
0
votes
1 answer
how do I fix this error to be able to use bootrun
This is the main error:
Caused by: java.io.FileNotFoundException: class path resource [org/springframework/boot/autoconfigure/orm/jpa/EntityManagerFactoryDependsOnPostProcessor.class] cannot be opened because it does not exist
The full one is
>…
0
votes
1 answer
jrebel standalone could not find agent library in macos
i'm running gradle task at project root directory but it erros, looks as below:
$> ./gradlew bootRun
Error occurred during initialization of VM Could not find agent
library /Users/xxx/bin/jrebel/libjrebel64.dylib in absolute path, with
error:…

yangjiannan
- 1
- 2
0
votes
1 answer
BeanCreationException: Error creating bean with name 'defaultValidator' on Spark-Submit
Created a spark structured streaming application using spring boot.
The bootRun works fine, but when deploying the same jar using "spark-submit", gives me the following error :
org.springframework.beans.factory.BeanCreationException: Error creating…

RichieNotSoRich
- 31
- 4
0
votes
0 answers
Error running gradle bootrun
I am trying to do gradle bootRun using IntelliJ, but this error appears:
FAILURE: Build failed with an exception.
What went wrong:
Execution failed for task ':bootRun'.
Process 'command 'C:\Program Files\Java\jdk1.8.0_131\bin\java.exe'' finished…
user8192873
0
votes
1 answer
gradle bootRun starts successfully but disconnects after some time
Caused by: java.io.IOException: An existing connection was forcibly closed by the remote host
at sun.nio.ch.SocketDispatcher.write0(Native Method)
at sun.nio.ch.SocketDispatcher.write(SocketDispatcher.java:51)
at…

Rbk
- 72
- 1
- 11