ggupta_73 wrote:
I have a view which constitutes 600 fields by joining 15 tables.So when I add the property descriptors for this view to the Registries.hbm.xml file, tomcat hangs when it is started at the point when mapping is done for this view.
Can you post the log file section that shows Tomcat starting Hibernate and then stopping?
600 fields across 15 tables does not look like a good design for O/R mapping. The pattern I have seen in the past where this approach is used is to get a "query of everything" for search purposes. Hibernate can do better than that.
Sherman