Tagged Questions
1
vote
2answers
43 views
Hibernate and tables with same data/columns but with different table names
The database I am working with has many tables with the same columns but with (obviously) different table names (I didn't design it). For example (these are database table names):
company1Data
...
0
votes
0answers
6 views
Get tomcat hibernate apps and non hibernate apps to share 3CP0 connections
On Tomcat with have a jndi connection to a postgresql database using 3CP0 as a connection pool. I have two different apps that have parts written using jdbc and parts written using Hibernate. When I ...
1
vote
0answers
18 views
How to specify a field, so that when we query, using Joda LocalDate or LocalDateTime value for the field, it is mapped to same column?
I have a postgres database that has a table "draft" containing a column set_up_time, saved as a timestamp:
@Column(nullable = false)
@Type(type = ...
0
votes
1answer
29 views
Hibernate does not create Table in the database
I am using PostgreSQL and I am trying to run a simple Hibernate application, in particular the application decribed in the page. My hibernate.cfg.xml file is:
<?xml version="1.0" ...
0
votes
1answer
31 views
JPA/Hibernate Difference MappedSuperclass and Entity Abstract Class
I would like to know what is the difference between MappedSuperclass and Entity Abstract Class when one wants to derive from a super class in Hibernate. I know that Hibernate does not create a Table ...
0
votes
3answers
30 views
Hibernate + embedded database - setup
I have created Java application using Hibernate with this configuration:
<hibernate-configuration>
<session-factory>
<property ...
0
votes
1answer
16 views
is it possible to apply a query in hibernate which uses two databases?
I have two different databases (on same server) and i want to join tables across databases. I am using Hibernate, is it possible to create a query in hibernate which can join two tables in those ...
0
votes
2answers
36 views
how to save foreign key entity in JPA
I have 2 tables customer and customerhistory. customhistory has foreign key customerId which is referencing to customer's customerId. In the Entity that is generated by JPA i have a object of customer ...
0
votes
1answer
30 views
Hibernate 4 Many to one annotation - same table no PK
I have 1 table, like so:
ID - the PK
eid - the EID
mgr_eid - the manager eid
I need a many to one relationship so that I can have an eid associated with 1 mgr_id and 1 mgr_id associated with a list ...
-1
votes
1answer
32 views
Hibernate Query, how to group different tables?
Im pretty new to databases, and programming in general, i tried everything but could not come up with a solution, my problem is:
I have 2 tables in my database:
Cars
Model
in my Cars table i have ...
0
votes
1answer
29 views
Foreign Key inheritance and Hibernate
I hope this title isn't misleading. But I really don't know with which words to describe the problem.
So, I have three tables. Contract, Subcontract and Project.
One Contract has many Subcontracts. ...
1
vote
0answers
46 views
Hibernate - Let it map
I have the following db model:
I have several subtypes of an int, double, string and date which have an abstract parent type of templateValue. The all have in common the valueType. Each ...
0
votes
2answers
55 views
How to design a database for a game with cards and decks [closed]
I'm creating a Java-based server for a card game where clients can connect to make their "plays". Each "Game" (Java-class) holds a deck of 104 cards (a normal deck times two). So the basic classes I ...
0
votes
1answer
35 views
Doctrine associations owning vs inverse side
In the Doctrine Association reference manual it's mentioned that
Of course, in a correct application the semantics of the bidirectional association are properly maintained by the application ...
0
votes
2answers
40 views
Strange NumberFormatException in Hibernate When Using SessionFactory
[It may be useful to see my related, yet distinct, question from earlier today here Hibernate Schema Export in Eclipse .]
I have the following Java class
package com.examscam.model;
import ...
0
votes
1answer
57 views
How to normalize your database in hibernate? (Repeating values don't get saved again and again)
imagine I have a table called Photo and a table called Tag.
A Photo can have any amount of tags. Like a picture of the Brandenburg Gate in Berlin has as tags "Berlin", "Gate", ...
Now there is a ...
0
votes
1answer
25 views
What constraint could I put so JPADAO should always insert first entry with id =0 and not with id =1
I have created some Tables using JPA with Spring support.
I would like to know if there is any mechanism by which we could control the insertion process of JPA.
Question more elaborate as follows :-
...
0
votes
0answers
16 views
Keep track of changes in fast growing DB tables
I'm developing a Spring application that uses a DB to store data. I'm using Spring Data (JPA) and Hibernate to connect to it. I've four entities, described below:
Channel: Stores information about ...
0
votes
1answer
42 views
can not update many to many relationship in hibernate
this is my pojo, User and Book
@Entity
public class User {
private int id;
private String username;
private String userage;
private String useremail;
private String usergender;
private ...
0
votes
0answers
19 views
unreasonable caching in Hibernate
In Hibernate, I'm disabling the second level cache and query cache in Hibernate.cfg.xml file
I'm using session factory to open sessions .. I create the session Factory once at the initialization. I'm ...
0
votes
1answer
55 views
No value specified for parameter 1
I am using Hiberante to connect to postgres database. I am trying to insert a record into the database. I have the values for the record in a string array which I got from a csv file. This is my dao ...
0
votes
1answer
36 views
Hibernate Tools in Eclipse: Change in column values does not reflecting in the query result
I am using Eclipse indigo and hibernate tools 3.3 for testing my hql queries.
I have configured hibernate tools correctly. But when I am querying to db after changing the values in a column, the old ...
0
votes
1answer
28 views
Hibernate - my table is not mapped
I want to make a simple query with a getValueByLabel Method:
Here is my code:
public Config getValueByLabel(String label) throws EntityPersistException{
try {
Query query = ...
0
votes
1answer
37 views
Hibernate: how to extract the time part
just want to insert the time part in data base using hibernate ....
what i am trying is .....
public static void main(String[] args)
{
Calendar cal = Calendar.getInstance();
UserID ui = new ...
0
votes
1answer
50 views
Can Hibernate be used to lock a database table or row so that other programs can't access it?
I have batch program that gets a primary key value from a database table (Table_A). This batch program does some logic with this primary key value and then adds it to a new table (Table_B). I have a ...
0
votes
0answers
32 views
OneToMany relationship without both entities
I have and application in which persistence model I've something like this:
Channel -> id, name
Channel_keywords -> channel_id, keywords, last_mod
I'm using hibernate + spring data, and wanted to ...
0
votes
0answers
28 views
Hibernate disabling 2nd level cache
In hibernate SQL .. I did the following in the hibernate config xml file :
<hibernate-configuration>
<session-factory>
<property name="hibernate.cache.provider_class">
...
0
votes
0answers
55 views
Update entity with JPA 1.0 and Hibernate after change database value
I'm working on a Java project with EJB 3.0. I'm using JPA 1.0 and Hibernate as persistence provider.
The problem is: when I change a value in the database, I can't see the change until I restart the ...
0
votes
0answers
62 views
lost precision when storing BigDecimal into H2 using Hibernate
We are using H2 database for testing purposes, but when I store BigDecimal value into it using Hibernate and then load it back the value is truncated to two decimal places:
The field definition looks ...
0
votes
1answer
25 views
ping failed error in connection testing : MySQL
I'm trying to connect to a MySQL database using hibernate.
I'm testing the connection using this :
My wamp is installed on port number 80, my database name is hibernate_test, both my username and ...
0
votes
1answer
74 views
“relation not found” using Postgres within an Eclipse Hibernate application
Based on my previous unsolved question PostgreSql does not "recognize" table created by Hibernate I would like to ask if I do not do something right regarding the connection to PostgreSql ...
0
votes
0answers
18 views
Get active hibernate transactions
We're using AOP in our persistence layer to check for deadlocks and perform different retry strategies. The issue is due to the multi-threading environment, we are encountering hibernate "transaction ...
0
votes
2answers
46 views
Ways to generate database errors for exception handling
I am writing java code to do database operations using JPA. i.e. getTransaction, getResultList, setFirstResult, setMaxResults, begin, commit, flush, clear, ...
My question is, even though I can wrap ...
0
votes
1answer
40 views
Hibernate sequence, use the specific sequence
Today my DB responsible boss told me that I'm using a wrong sequence, in JPA/Hibernate, but I weren't so I checked up on why my generated table entries had a higher ID than the normal(trigger) ...
0
votes
1answer
34 views
Hibernate column with list
I want to create a hibernate table which can store a list of values. I am doing something like:
@Column(name = "userHobbies")
@ElementCollection(targetClass = String.class)
@CollectionTable(schema = ...
0
votes
1answer
37 views
Performance of search in java list vs on database records using hibernate
Now I have a situation where I need to make some comparisons and result filtration that is not very simple to do, what I want is something like Lucenes search but only I will develop it, it is not my ...
2
votes
0answers
108 views
Intellij ERROR: No suitable driver found for jdbc:mysql://127.0.0.1:3306/person
first of all I couldn't find an answer from related questions in this forum. I am new to Hibernate technology and I am trying to run a basic example from this page: ...
0
votes
1answer
33 views
nullpointer exception when querying database
I am trying to query from the database its a hibernate project
public class FeedInputParamsDaoImpl implements IFeedInputParamsDao {
@Autowired
private SessionFactory sessionFactory;
public void ...
0
votes
2answers
88 views
Add array of string to database in Hibernate
I'm beginner in Hibernate framework, and now I integrated Spring and Hibernate in one project.
I ran it OK, but it have something I can't understand why. The problem is:
I have bean class decribed ...
0
votes
0answers
84 views
Hibernate throwing exception on insert on one-to-many
I have the following DB tables:
CREATE TABLE DS_NVALUES(
id Number NOT NULL,
value1 Number(3,0),
value2 Number(3,0),
CONSTRAINT ds_nvalues_id PRIMARY KEY (id)
)
CREATE TABLE DS_AREA(
id ...
2
votes
1answer
102 views
Can i use only one table for all hibernate envers auditing?
i recently found the beautiful library that is called "hibernate envers", it's such a great and easy way to have an audit log, it solved one of my biggest problem while working on a play ...
0
votes
1answer
67 views
create/update DB schema with hibernate
I am working on a product that uses hibernate (4.2) and mysql (Amazon RDS).
the schema is updated via liquibase whenever a change is made. it also hosts many tanents through different schemas in the ...
0
votes
1answer
66 views
Hibernate query execution issue
I am facing some issue in query execution here is my case :
I have two tables log with 2 lakh records and logrecords with 6 lakh records
Where single log record in log table can have multiple log ...
0
votes
0answers
116 views
Hibernate with user defined IdentifierGenerator UUID
I am working with a environment using Hibernate 3.6. I am trying to implement a MySQL table that uses UUIDs from java.util as the PK, these UUIDs are generated from multiple Strings defined by the ...
0
votes
1answer
80 views
hibernate criteria if collection contains collection
I have a Priv class
@Entity
@Table(name = "PK_PRIVS", schema = "dbo")
public class Priv implements java.io.Serializable{
private static final long serialVersionUID = 1L;
private String code;
private ...
0
votes
1answer
54 views
columns to rows hibernate
I have tables called PATIENTINFO and MEDICATIONINFO with columns as mentioned below
PATIENTINFO
PatiendId Disease
------------------------
1000 Fever
1001 Cold
...
1
vote
1answer
73 views
Why I get MappingNotFound Exception
Hello i get exception from mapping my hibernate:
Initial SessionFactory creation failed.org.hibernate.MappingNotFoundException: resource: bbstats/domain/User.hbm.xml not found
Exception in thread ...
0
votes
3answers
135 views
Why is my Hibernate session always null?
I'm using Hibernate to connect to my db and when I want to load data from the db I get null pointer exception at session. I don't know why? Everything looks good for me :<
I have this class to read ...
1
vote
3answers
91 views
How to save the order of a table and prevent concurrency issues
I have the following problem I have to save the order of some elements in a table. This is done by a order number. So the first element has ordering 1 and the tenth the ordering 10 etc. Also I have a ...
0
votes
3answers
80 views
Java and Hibernate, how to
I've to save some data for a Java game.
All guides that I found for hibernate assumes that mysql or another database management system is installed.
I can't assume that since it is a game, I don't ...


