1. ホーム
  2. スプリングブート

要求されたプロファイル "test "は存在しないため、アクティブにすることができませんでした。

2022-03-02 23:36:48
<パス

SpringBootプロジェクトで、mvn installコマンドを実行すると、以下のような問題が発生します。

[WARNING] The requested profile "test" could not be activated because it does not exist.
[ERROR] Failed to execute goal org.springframework.boot:spring-boot-maven-plugin:1.3.3.RELEASE:repackage (default) on project mobile: Execution default of goal org.springframework.boot:spring-boot-maven-plugin:1.3.3.RELEASE:repackage failed: Unable to find main class -> [ Help 1]
[ERROR] 
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR] For more information 
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/PluginExecutionException

リパッケージに失敗しました。Unable to find main class から、メイン・クラスが見つからなかったことがわかります。
しかし、実はSpringBootのスタータークラスはすでに書かれているのです。
エラーの原因
SpringBootで記述されたパッケージには、他にもmainメソッドを持つクラスが存在します。
mainメソッドを削除することで、上記の問題は解決します。