Good morning I am developing a website that does 2 parts: first an admin dashboard and the second is IOT -- meaning that it will control an electronic card distant and keep on tracking it. I already started the first part( admin dashboard ) using an...
SJMNSky and 3 more commentedCurrently I think Springboot is well-established technology but JakartaEE MicroProfile is also trying to catching up. So if I am a Java developer and I need to make a choice, which one should I choose ? And according to you, which one should have a...
Join discussionI think instead of just reading and go right in separate a monolith into microservices architecture. We can rely on some platform/framework so that we can leverage knowledge, experience and industry best practices. Some of the framework or platform t...
CVishwa and 2 more commentedI am having API response: [{"bankName": "Bank A"}], [{"bankName": "Bank B"}], [{"bankName": "Bank C"}] Thymeleaf dropdown: <select id="select-type-bank"> <option th:each="bankName: ${bankTypeList}" th:text="${bankName.configMappedValues}" ...
Join discussionIs it a good idea to expose an endpoint via spring boot actuator (e.g. /shutdown) and destroy the application context and all registered beans in the Web Application? I’m currently shutting down my service using a custom class that implements Applica...
Join discussion