Magnolia 5.7 reached extended end of life on May 31, 2022. Support for this branch is limited, see End-of-life policy. Please note that to cover the extra maintenance effort, this EEoL period is a paid extension in the life of the branch. Customers who opt for the extended maintenance will need a new license key to run future versions of Magnolia 5.7. If you have any questions or to subscribe to the extended maintenance, please get in touch with your local contact at Magnolia.
This page is collection of hopefully useful tips and tricks to develop with different approaches and tools.
Filter the log file
The log file can be very helpful while developing - but it contains so much information that it might be too much. Often it makes sense to filter the log a bit.
Example:
tail -f catalina.out | grep -v --line-buffered --invert-match "^\t\(at\|\.\.\.\) " # --line-buffered option makes grep work on a line-by-line basis
Working with IDEs
IntelliJ