こんにちは。
Spring Bootについて初学者なので拙いところもあると思いますが、よろしくお願いします。
実現したいこと
SpringBootのController部分でブレークポイントを張ってデバッグしたいのですが、
そのまま実行しても止まりません。
以下のURLを参考にしてもう一度試そうとしましたが、手順1の時点でエラーが出てしまいます。
https://qiita.com/haruto167/items/b85d5ef7a409c283dbb7
またコマンドプロンプトで実行して試そうともしましたが、設定しても実行時にコマンドプロンプトが開きませんでした。
https://villim.github.io/debug-springboot-with-gradle-in-eclipse
https://www.gwtcenter.com/invoke-cmd-on-eclipse-project
cleanしてbuildし直せば動くという記事もあったので試してみましたが、bootRunのところでやはりエラーを吐きました。
https://stackoverflow.com/questions/28303486/error-trying-to-do-a-bootrun-with-gradle-spring-mvc/32073232
どこかおかしいところがあればご指摘お願いします。
###コード
以下build.gradleです。
plugins { id 'org.springframework.boot' version '2.4.3' id 'io.spring.dependency-management' version '1.0.11.RELEASE' id 'java' } group = 'com.example' version = '0.0.1-SNAPSHOT' apply plugin: 'war' sourceCompatibility = '11' repositories { mavenCentral() } dependencies { implementation 'org.springframework.boot:spring-boot-starter-thymeleaf' implementation 'org.springframework.boot:spring-boot-starter-web' runtimeOnly 'mysql:mysql-connector-java' //1 : jpa compile 'org.springframework.boot:spring-boot-starter-data-jpa' //2 : mysql connector compile 'mysql:mysql-connector-java' //3 : tymeleaf compile('org.springframework.boot:spring-boot-starter-thymeleaf') implementation 'org.springframework.boot:spring-boot-starter-web' testImplementation 'org.springframework.boot:spring-boot-starter-test' //lombok // https://mvnrepository.com/artifact/org.projectlombok/lombok compile group: 'org.projectlombok', name: 'lombok', version: '1.18.18' } test { useJUnitPlatform() }
###エラー内容
FAILURE: Build failed with an exception. * What went wrong: Task 'bootRun --debug-jvm' not found in root project 'testPrj'. * Try: Run gradle tasks to get a list of available tasks. Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights. * Get more help at https://help.gradle.org Deprecated Gradle features were used in this build, making it incompatible with Gradle 7.0. Use '--warning-mode all' to show the individual deprecation warnings. See https://docs.gradle.org/6.8.3/userguide/command_line_interface.html#sec:command_line_warnings BUILD FAILED in 486ms
補足情報
Eclipse 2020 Java FullEdition
AmazonCorretto jdk15.0.2_7
SpringBoot 2.4.3
MySQL 8.0.23
Windows10 Pro 1909
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。