I write test code even before I understand what TDD is. Calling functions and classes that do not have their own implementation help me understand and build my application much faster and more efficiently. Therefore, I very often use the process of writing code → compilation → seeing that it does not succeed → fixed it by building its implementation.
This process is a bit more complicated for the Internet. In particular, JSP. When I compile my Java classes, everything is fine, I see compilation errors. However, when I detect errors in the JSP, I need to open a browser and call this particular JSP.
Is there a way to avoid this process and show me JSP compilation without actually loading the browser?
source
share