I am developing in grails 3.2.8 and the code hot swap simply does not work. I know that i should talk to spring boot, but perhaps someone had the tailored fix for grails. BTW, i had a quick look at the spring boot questions but could not find anything related to hot swap. Am I the only one with this problem?!
Problems with hot swap and grails 3.2.8
405 Views Asked by Fabio Sogni At
1
There are 1 best solutions below
Related Questions in GRAILS3
- Find isDirty() for children elements
- How to pass values from controller to view in grails 3
- Rendering command object in gson
- Rendering few models in gson
- PooledConnection has already been closed
- Different (both bad) output for render and respond custom gson
- grails DefaultGrailsDomainClass.getIdentifier always returns 'id as identifier
- GRAILS respond with atomic json values
- How to exclude a plugin from development environment in Grails 3?
- cascading behavior lost when using specific classes in GORM
- Grails 3 JMS Error during sending messages
- Grails 3.2.4 refuses to save domain instance: java.lang.IllegalArgumentException: object is not an instance of declaring class
- Difference between Grails withTransaction() and a transactional service method
- Grails firing find and save query when performing domain.save()
- UrlMappings in Tomcat container vs. running via grails run-app
Related Questions in GRAILS-3.2
- Can I Add Placeholder Text Into A Groovy Text Field (g:textField)?
- How to retrieve the current dependencies in a Grails 3.2 script
- Grails 3 command line's commands source code
- Problems with hot swap and grails 3.2.8
- Plugins in a Multiproject fails at Grails 3.2.11
- Grails promises losing data - seemingly not waiting for each other to complete
- Grails 3 how to render json view to file output instead of to http response stream?
- Grails 3.2 Resource Bundle does not display text with correct encoding
- Grails 3.2 - defaultAction ignored on scaffolded controllers?
- How to deploy multiple Grails 3.x applications in Tomcat 8 with shared jars?
- Grails 3.2.x datasource per deployment
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Add the following to build.gradle:
Then start the application with:
grails -Dgrails.env=custom -Dgrails.reload.enabled=true run-app
Credit to Hubert Klein Ikkink