Good day, dear development gurus. Please share your development experience using Spring and Spring boot. Should I use Spring boot to prototype a web application? Have you encountered cases of using such systems in production solutions? What are the disadvantages of this approach. Is it possible in the future to remove the boot from the Spring application, leaving Spring simply or even switching to another java framework? Are there any other adequate ways to create a prototype for a java web application with the ability to later increase the functionality in the prototype?

    1 answer 1

    I will partially answer: If you have the task of removing some technology from the project in the future, then most likely you are doing something wrong. Do not forget that if you change one technology to another, then you need to rewrite a piece of the project, including tests. If manual testing was conducted, then it also needs to be conducted on a new one.

    The technology selection stage needs attention.