前提・実現したいこと
SPRING CLIを用いてgroovyのWebアプリケーションを実行したいのですが、spring runコマンドを打つと以下のエラーが発生してしまいます。
Bookea:Desktop UserName$ spring run app.groovy Traceback (most recent call last): 15: from /Users/UserName/.rbenv/versions/2.5.1/bin/spring:23:in `<main>' 14: from /Users/UserName/.rbenv/versions/2.5.1/bin/spring:23:in `load' 13: from /Users/UserName/.rbenv/versions/2.5.1/lib/ruby/gems/2.5.0/gems/spring-2.1.0/bin/spring:49:in `<top (required)>' 12: from /Users/UserName/.rbenv/versions/2.5.1/lib/ruby/gems/2.5.0/gems/spring-2.1.0/lib/spring/client.rb:30:in `run' 11: from /Users/UserName/.rbenv/versions/2.5.1/lib/ruby/gems/2.5.0/gems/spring-2.1.0/lib/spring/client/command.rb:7:in `call' 10: from /Users/UserName/.rbenv/versions/2.5.1/lib/ruby/gems/2.5.0/gems/spring-2.1.0/lib/spring/client/run.rb:31:in `call' 9: from /Users/UserName/.rbenv/versions/2.5.1/lib/ruby/gems/2.5.0/gems/spring-2.1.0/lib/spring/client/run.rb:26:in `connect' 8: from /Users/UserName/.rbenv/versions/2.5.1/lib/ruby/gems/2.5.0/gems/spring-2.1.0/lib/spring/env.rb:53:in `socket_name' 7: from /Users/UserName/.rbenv/versions/2.5.1/lib/ruby/gems/2.5.0/gems/spring-2.1.0/lib/spring/env.rb:49:in `socket_path' 6: from /Users/UserName/.rbenv/versions/2.5.1/lib/ruby/gems/2.5.0/gems/spring-2.1.0/lib/spring/env.rb:45:in `application_id' 5: from /Users/UserName/.rbenv/versions/2.5.1/lib/ruby/gems/2.5.0/gems/spring-2.1.0/lib/spring/env.rb:28:in `project_root' 4: from /Users/UserName/.rbenv/versions/2.5.1/lib/ruby/gems/2.5.0/gems/spring-2.1.0/lib/spring/configuration.rb:37:in `project_root_path' 3: from /Users/UserName/.rbenv/versions/2.5.1/lib/ruby/gems/2.5.0/gems/spring-2.1.0/lib/spring/configuration.rb:48:in `find_project_root' 2: from /Users/UserName/.rbenv/versions/2.5.1/lib/ruby/gems/2.5.0/gems/spring-2.1.0/lib/spring/configuration.rb:48:in `find_project_root' 1: from /Users/UserName/.rbenv/versions/2.5.1/lib/ruby/gems/2.5.0/gems/spring-2.1.0/lib/spring/configuration.rb:48:in `find_project_root' /Users/UserName/.rbenv/versions/2.5.1/lib/ruby/gems/2.5.0/gems/spring-2.1.0/lib/spring/configuration.rb:46:in `find_project_root': Spring was unable to locate the root of your project. There was no Gemfile present in the current directory (/Users/UserName/Desktop) or any of the parent directories. (Spring::UnknownProject)
<エラーの原因の仮説>
①.bash_profileに、Sprign Boot CLIのPathを追加しなければいけないそうなのですが、どうするとそれが出来るのか分かっていません。
②エラーをみると、Ruby on RailsのプリローダーのSpringを起動してしまっているようです。こちらをJavaのフレームワークのSpringBootに修正しなければいけないと思うのですが、それがどうやって出来るのかわかりません。
(環境はmac)
「やったこと」
・SpringCLIインストール
・Desktop直下にapp.groovyを作成
該当のソースコード
「app.groovy」
@RestController class App { @RequestMapping("/") def home() { "Hello!!" } }
試したこと
参考サイト
こちらのサイトを参考に進めましたが、冒頭のエラーになってしまいました。
補足情報(FW/ツールのバージョンなど)
Spring version 2.1.0
Gradle 6.5.1
Apache Maven 3.6.3
java version "11.0.7"
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。