java Programming Glossary: businessobject
Infinite Recursion with Jackson JSON and Hibernate JPA issue http://stackoverflow.com/questions/3325387/infinite-recursion-with-jackson-json-and-hibernate-jpa-issue columnNames id public class Trainee extends BusinessObject @Id @GeneratedValue strategy GenerationType.TABLE @Column name.. columnNames id public class BodyStat extends BusinessObject @Id @GeneratedValue strategy GenerationType.TABLE @Column name..
What is a good use case for static import of methods? http://stackoverflow.com/questions/420791/what-is-a-good-use-case-for-static-import-of-methods to the current class import static some.package.DA. class BusinessObject void someMethod .... save this The reviewer was not keen that.. . In this case would you have been tempted to have BusinessObject extend some.package.DA If so static imports may be a cleaner..
Collection Alternative - ConcurrentModificationException http://stackoverflow.com/questions/911462/collection-alternative-concurrentmodificationexception collection type for this purpose Example. myCollection BusinessObject for BusinessObject anObject myCollection if someConditionIsTrue.. for this purpose Example. myCollection BusinessObject for BusinessObject anObject myCollection if someConditionIsTrue myCollection.remove..
|