Creating War File For Spring Boot Grails Project
Answered
Looking for step by step guide.
I can build it locally. But when I create a war I get different issues based on how I build the war.
If I go to the command line and say “./gradlew assemble” that does create a war file that works, but no help I've found on illtellij mentions that.
Please sign in to leave a comment.
Hello!
Could you please elaborate on the nature of the issue?
If your Project is Gradle-based IDEA is fully compatible with all of the Gradle Tasks, which you can run from the Gradle Tool Window or via Run Configurations.
To build an executable Spring Boot WAR you can either run
bootWarTask directly orassembleTask, which is dependent on it.