Hibernate annotation or XML configuration

懵懂的女人 提交于 2019-11-26 14:19:47

问题


I have started a new project with Hibernate. Is Hibernate annotation a better choice or is Hibernate XML mapping better?

I have used Hibernate with XML configuration, but I have no idea about annotation.

  1. are there any issues while going for annotation based implementation?
  2. is maintenance of an application easier or more complicated with annotation based?
  3. which one is better (that is, annotation or XML mapping) and which one is is widely used? Why?
  4. If I use a different database at a different level, that is, production or integration or development level, do I need to go for change of code?

Note: I am not comparing two technologies, but I want to know which one (that is, out of two ways) to be used in the application with the latest technology.


回答1:


Annotations are a better choice for a new application, since it makes the application free from XML files. It is also less code and maintenance is easy. It also helps for refactoring the application (with IDE like Eclipse/NetBeans, etc.), which is the problem with XML since you need to change it manually.

Answers:

  1. No issues, you can use the latest JSR 330 API (dependency injection for Java) which helps to the same annotation for a JSF managed bean (use @Named instead of @managedbean), the Spring IoC layer and Hibernate, so that whole layer you will have a single annotation concept instead of a framework specific.

  2. Maintenance is easy especially refactoring of code, fewer or no XML files and new learning. Use JPA based annotation with Hibernate. You can find some sample in google.

  3. Widely use XML based since it was there from begining, but for a new application annotation is better which is more mature.

  4. For change to any database, the code will remain the same in annotation or XML, only you need to change the property file values.




回答2:


Annotations are newer, and are the standard way of doing for JPA applications.

I find them easier to use than XML, but it's a matter of taste and experience. Using them would make you

  • learn something new
  • ready to start a JPA-based project (that could use another implementation)

I've never been in a situation where I needed XML because annotations didn't allow me to do what I wanted.




回答3:


Before annotation there was only one way to do that - XML. If you use annotation, you will have all in one place, therefore understanding and maintaning it will be easier.



来源:https://stackoverflow.com/questions/7147018/hibernate-annotation-or-xml-configuration

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!