Tagged Questions
0
votes
1answer
180 views
Insert into database after spring hibernate sessionfactory is created
I want to insert some data in a table of database after the SessionFactory of spring hibernate has been created.
I have a CUSTOMER table and I want to insert a particular Customer into this table if ...
1
vote
1answer
196 views
Multiple Hibernate data sources
I have a project that currently uses 3 databases on the same database server. One of the databases has now been moved to another physical server and I'm trying to get hibernate to handle this but ...
0
votes
2answers
104 views
different hibernate session factories on different machines for accessing single db instance
I have different hibernate session factories on different machines for accessing single db instance and it is creating havoc(gives stale data/throws Nullpointer Exception) between sessions. Is there ...
0
votes
2answers
662 views
Hibernate using Programmatic Configuration, starting hibernate.hbm2ddl.auto
I am configuration my hibernate sessionfactory programmatically:
http://docs.jboss.org/hibernate/orm/3.3/reference/en/html/session-configuration.html#configuration-programmatic
private static ...
3
votes
1answer
156 views
How can an Hibernate web application start if its database is not yet available
What would be the best way to setup/design or simply configure an Hibernate based Java web application to support being started (i.e. sessionfactory initialization) up if the database connectivity is ...
0
votes
1answer
124 views
Specifying a named SQL Server instance for nhibernate
I've been making a first attempt to use fluent nHibernate on an ASP.NET MVC 3 application. Because I have multiple instances of SQL Server Express, I've been trying to specify a named instance along ...
1
vote
1answer
170 views
Manage multiple session factories for read replica and primary DB
In our application, we have two databases, one primary and the other read-replica, which is used just for reporting purpose.
Some part of our application reads-writes to primary DB whereas the ...