I have a question, how would this format in java with hibernate and mysql?
{
type: 'FeatureCollection',
features: [{
type: 'Feature',
geometry: {
type: 'Point',
coordinates: [-77.032, 38.913]
},
properties: {...
Which SQL Server 2014 tables should be given permissions for reverse engineering to work in the java hibernate framework?
I've been getting this error in eclipse:
com.microsoft.sqlserver.jdbc.SQLServerException: El nombre de objeto 'INFORM...
I have a Whitelabel Error Page I only run the first @RequestMaping (value="/ get", ...)
the truth I do not understand the problem when consuming the service of the backend, only the first method works, the others give me back "Whitelabel Error P...
I am doing a control program for borrowed books where only the Isbn of the book and the Student's card are kept in the Loan table; I do it with JSF and Hibernate.
I'm loading a selectOneMenu with a query of Student-type objects but when converti...
I already asked this question previously but now it gives me another error product of a change. I am a beginner in this Spring-Hibernate (I know the essentials). I have created in Netbean a login with hibernate (annotations) and access to MySql...
I created in Netbeans a login with hibernate (annotations) and access to MySql but when I added Spring (also with annotations) I got stuck, already in the first attempt Spring does not create the instance of an object (dependency injection) .
I...
I have the following problem, I want to make a query to my db, to bring a list of a related class, all worked with hibernate, but when I want to print on the screen it throws me the following error:
Exception in thread "AWT-EventQueue-0" java....
I have an HQL to extract data from a table that has the same user ID that I'm clicking
my bean is:
public void setViewUser () throws IOException {
UserDAOImpl dao = new UserDAOImpl();
User user = dao.findById(id_user);
id_us...
My problem:
1-I have a REST API that I use a lot of data to insert in an internal database (Process that lasts for hours).
2-The API dumps whole tables or filtered by an attribute (Select * from table where attribute = parameter): ex: www....
You see, I have 2 classes, a call NIF, which takes the ID of one person, and another call Secure, with the data of a person. These classes are related so that NIF is a component of Insurance.
Table NIF:
package es.makigas.hibernate.modelo;...