Posts by Philipi Willemann • 231 points
2 posts
-
2
votes2
answers412
viewsA: Problem when changing the type of a column in the model using JPA annotation
As Victor Stafusa replied, just use the property length of annotation Column, but if the database column is already created it will only be changed if the option hibernate.hbm2ddl.auto is update,…
-
8
votes2
answers4523
viewsA: Inner Class in Java, when to use?
Usually the purpose of a Inner class is to separate functionalities to make code more organized, or when specific functionality requires a separate class, but is too specific to create a separate…