Posts by Elizeu Borges • 123 points
5 posts
-
4
votes2
answers65
viewsQ: Is it a bad idea to automatically versize classes with Jibx?
Where work we have a project (very old) that uses Jibx to generate some classes from schemas. These classes are generated in build logo os source do not exist in the project. Someone gave the…
-
2
votes2
answers384
viewsA: Error while removing Arraylist item
The error happens because you are removing the items from the list from within a for, it happens because when the for was "mounted" by the VM the list had a size X, you removed some items, so when…
-
2
votes1
answer427
viewsA: Problems in configuring the Spring project
You are using products/ok on the return of save and you don’t have a page ok.jsp, create one or change the return. Already in the method form you are returning /products/form, take the first '/' and…
-
0
votes2
answers145
viewsA: Child references and service Pattern
Good question. The responsible for the heavy part of the logic must be the Service, the idea of the Service Pattern is to group a set of operations of a given context and make them available through…
-
1
votes3
answers31029
viewsA: What is a Servlet and what is it for?
Servlet is a technology that the Java platform provides to web developers as a simple and consistent mechanism to extend the functionality of a web server and to access existing business systems.…