0
votes
1answer
26 views

Error when I start my application - Hibernate+spring mvc

I have application with spring mvc + hibernate. All tests It's working but when I try to start my application with tomcat I get an error: HTTP Status 500 - type Exception report message ...
1
vote
1answer
26 views

Entities are not mapped

i have an application works good and i have to change my database structure and when i changed it and i generate my model classes with hibernate i got this exception: SEVERE: Servlet.service() for ...
0
votes
0answers
38 views

how to get a first row of an updated record which is sorted asc by date using hibernate?

I am trying to display a record in my jsp based on the id, I have sorted the records in asc order by create_date, and updated a column which is having null value. So now my question is how to get an ...
1
vote
1answer
23 views

hsql from webapp springmvc jpa hibernate

I have hsql server which using its swing manager I can retrieve data fine. jdbc:hsqldb:hsql://localhost:1234/securityweb I have DAO using JPA and when run with its main method as standalone it can ...
-1
votes
0answers
28 views

display a specific colomn in JSF selection tag

I am building a JSF+Hibernate+Spring project now, I have one problem with the JSF selection tag. How to display a specific column in a databse table to JSF SelectOneMenu Tag? Thanks.
1
vote
1answer
19 views

Prevent Hibernate DML execution

I am new to Hibernate and am having some issue with its configuration. I am trying to setup a read-only connection to a preexisting Oracle database. I do not want Hibernate to execute any DML and ...
0
votes
1answer
37 views

Spring Hibernate database query not working

Got this line to get list of "modules" by "course_id" from the database: return sessionFactory.getCurrentSession().createCriteria(Module.class).add(Restrictions.eq("course_id",course_id)).list(); ...
-1
votes
1answer
68 views

Request processing failed; nested exception is java.lang.NullPointerException

i created a form and on post i want to save those values to the database and show the saved values on the page. i am new to spring mvc and hence i am not understanding where i am going wrong. Here is ...
0
votes
3answers
55 views

org.springframework.web.servlet.PageNotFound - No mapping found for HTTP request with URI

Hi i am new Spring Mvc. and i am not unable to solve this problem Dispatcher servlet (servlet-context.xml) <?xml version="1.0" encoding="UTF-8"?> ...
0
votes
2answers
42 views

spring hibernate transaction could not commit

I wrote dao in spring as i used to write in struts some think like this @Autowired private SessionFactory sessionFactory; Session session=null; Transaction tx=null; List<Login> ...
1
vote
1answer
18 views

How do i handle multipart file upload in spring 2.5 with java 1.4 (with out anotation)?

How do i handle multipart file upload in spring 2.5 with java 1.4 (with out anotation)? I need to handle the request in public ModelAndView handleRequest(HttpServletRequest request, ...
1
vote
3answers
35 views

Error in Spring MVC - displaying a form with Modal attribute having a select item

This is in continuation with my previous question : Spring MVC with Hibernate Data Saving Error. The previous error was resolved based on the answer there. Now I want to show the the Saved value back ...
-1
votes
1answer
55 views
0
votes
1answer
33 views

Spring MVC with Hibernate Data Saving Error

I have two tables: Company and Automotive. A company can have many automotives. I am unable to persist an Automotive properly. Company is selected in View page from a drop down. My Controller ...
0
votes
1answer
41 views

Cannot find class [org.springframework.orm.hibernate3.annotation.AnnotationSessionFactory] for bean with name 'sessionFactory'

i created a project in spring using maven dependencies but i am getting the above mentioned error. i changed the version of hibernate dependency but stil it does nt get resolved here is the code: ...
0
votes
1answer
31 views

Spring-WS: LazyInitializationException: could not initialize proxy - no Session

I have an application that use spring-mvc and hibernate. To avoid Hibernate lazy initialization exception in mvc controllers I use succesfully the solution exposed here. Now i have to do the same (if ...
0
votes
1answer
69 views

ERROR: HHH000299: Could not complete schema update java.lang.NullPointerException

I have a web application in the following environment. JPA 2.0 Spring 3.2.2 MySQL 5.6.11 Hibernate 4.2.0 CR1 Apache Tomcat 7.0.35 My configurations until now in the application-context.xml file ...
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 :- ...
-1
votes
1answer
14 views

Spring and jboss [closed]

I want to learn SpringMVC with Hibernate and Jboss as a deploy server. I want to learn all of these using a good book/online tutorial. I googled but couldnt find any. Does anyone know of a tutorial ...
0
votes
2answers
45 views

Spring Security + JPA user schema

As per Spring documentation if you need to manage spring security via database you should have some standard schema of tables. for example. create table users( username varchar(256) not null ...
0
votes
0answers
55 views

Spring + Hibernate + JUnit = LazyInitializationException no session or trouble with Activiti async

My SpringMvc (3.1) + Hibernate + Activiti setup is troubling me when it comes to unit testing: When I subclass my tests from AbstractTransactionalJUnit4SpringContextTests (this uses ...
0
votes
0answers
59 views

Spring MVC, dynamic JSP include and Hibernate

I'm making my first steps in migrating a plain JSP + Hibernate webapp to be Spring MVC based. The JSP pages today (before the migration) contain declarations of jsp:include which are being used to ...
0
votes
1answer
16 views

Getting error during SessionFactory creation

I keep getting failed.org.hibernate.HibernateException when I want to run my hibernate code. I'm using Spring 3 MVC and Spring 3 security in my app. Any idea what can cause this? Hibernate part of ...
0
votes
1answer
16 views

Subclass attributes are not populating in the superclass's database table as columns

I have two boolean values in the subclass of a hibernate annotated superclass along with other few attributes: private Boolean currentLoan; private Boolean unpaidFine; @Column(name="current_loan") ...
0
votes
2answers
167 views

how to display data from controller to jsp using spring mvc?

Hi I am unable to display data from controller to jsp page in spring, am new to spring, this is my controller List<DocDto> list =DocService.getDocs(); DocDto docList = new ...
0
votes
2answers
32 views

Rolled Calendar isn't persisting as desired

I am trying to roll a calendar by a week and persist it using Hibernate. The rolling work (tested using println) but the data being saved in the database seems to be the original calendar. ...
0
votes
0answers
32 views

Hibernate not creating records on deployment machine, update failling

I am working on a web application using Hibernate and tomcat 7. There are 3 users User1, User2 and User3 The relationship between the User and Contact is many to many. On the Dev machine, all ...
1
vote
0answers
134 views

Error when Spring Mvc Application is trying to create LocalContainerEntityManagerFactoryBean bean

I am reading Pro Spring 3 book and I am trying to make the Spring Mvc web application of chapter 17 to work with my local MySql database, so maybe I am doing something wrong. Here is the ...
1
vote
1answer
67 views

MappingException: Unknown entity

Am using Spring, Maven, Hibernate , MVC project. After building the project and installing the dependencies I got this exception. It seems strange. All test units sucseed and no indicator that ...
0
votes
3answers
81 views

Hibernate EntityManager not being injected - NullPointer

I'm trying to use Hibernate and JPA in a Spring project but I have problems injecting the EntityManager. When I deploy the site and I open it, I get Request processing failed; nested exception is ...
-1
votes
0answers
46 views

Get data from two entities in Hibernate

By now i used a list to get a data from one entities. I put this data in json object and return object which have tree model. In tree model one sub-tree have data from one table. Then now i must get ...
0
votes
1answer
61 views

SpringData JPA Hibernate, trying to save a new nested object

I have a nested object like this public class Chart { @Id @GeneratedValue(strategy = GenerationType.IDENTITY) private long chart_id; ...
-3
votes
0answers
69 views

Best Approach to develop a 3-tier Java EE Application? [closed]

I am a new bee in developing 3-tier Java EE applications. I want to develop a small 3 tier appliation using spring, hibernate and jboss7. To be clear my application should be an 3-tier Java EE ...
0
votes
1answer
20 views

How to overcome the error NoSuchFieldError: PATCH

I have crated a project using spring mvc which includes hibernate and jpa. When i try to run that program got an error. Please help. Thank you. exception javax.servlet.ServletException: Servlet ...
0
votes
1answer
18 views

How to validate Entitiy for only 1 field

i have simple question about JPA validator @Entity class Account { @NotNull int id; @Size(max = 30, min = 6) String name; @Size(max = 30, min = 5) @NotNull String password; } If i ...
0
votes
1answer
70 views

Spring Roo OneToMany relationship not showing in JSON

I am trying to get a OneToMany relationship using Hibernate, roo, and JSON. I was able to see the children of the parent via the jspx page by adding <field:display field="children" ...
0
votes
2answers
40 views

Reset Database in JPA Hibernate with SPRING MVC

I have a requirement where i want to clear whole database tables and than move ahead. I found below solution in hibernate with LocalSessionFactoryBean. ...
0
votes
1answer
48 views

Issues updating record with Hibernate and SPRING

I am having one to many relationship tables. When I insert records, program inserts new records without any problem but when I try to update the record by using saveOrUpdate(), prgram does not ...
0
votes
1answer
58 views

Hibernate SessionFactory Annotation Error

Getting this error. Tried everything to resolve it. Looked through tonns of similar questions, but no result. Maybe one of you guys may spot the error? Thank you in advance. Error log: ...
0
votes
1answer
33 views

Iterating a list with hibernate query

I have userTable uid username password 1 stephen 1542S 2 james 8452b Store procedure name: sp_gridview query: select * from userTable List list=null; list=hibernateTemplate. ...
1
vote
2answers
74 views

How to create an efficient Spring-Hibernate project structure?

I am a little confused about services. Why I must use services for hibernate integration? I think i can use directly DAO interfaces. For example at this tutorial ...
0
votes
0answers
29 views

Program asking for ID while inserting an object in database using Hibernate

I'm trying to save an item in the database which has manytoone relation with the Librarian(which is a subclass of user). The code below creates a table *librarian_item* which has librarian_id and ...
1
vote
2answers
30 views

One-One ORM and insertion in DB

I have a one-one mapping of classes Employee and Department. I have Bean classes in domain. I have a front end JSP which is a Employee form. This form has a drop down box which lists all the ...
0
votes
1answer
42 views

Session is closed while creating Criteria

The following code throws SessionException at the line which creates the criteria object: public User getUserByUsername(String username) { try { Criterion criterion = ...
0
votes
1answer
46 views

Spring form not populating the data to model object

My model object has a 'CtlgEntry' attribute which has an attribute 'yearPublished'. The form has to be populated but the following error is thrown: org.hibernate.PropertyAccessException: Null value ...
0
votes
2answers
119 views

Spring mvc 3 Jqgrid :How to load data to a select Type from a list of objects

I have 2 classes, User.java and Bank.java . Each User has a reference to a Bank. When I add new user i must select a bank from a list of Banks. So my question is how to load a list of objects(from ...
0
votes
2answers
83 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 ...
1
vote
1answer
124 views

Using Hibernate 4's Integrator pattern and Spring's dependency injection

I'm used to using Spring to do my dependency injection like so: <context:component-scan base-package="org.emmerich.myapp" /> and then annotating my dependent classes with Autowired like so: ...
1
vote
1answer
53 views

Spring context refreshing makes Hibernate session throw this exception: No Session found for current thread

I am developing a web application that has multiple spring contexts. It has a main context that holds business logic, hibernate session and application's core needs, and other contexts are for spring ...
0
votes
2answers
108 views

Hibernate save data to database SQLException

The following error is thrown when I try to save the data to the database which uses Hibernate for persistence mechanism. java.sql.SQLException: Field 'user_id' doesn't have a default value at ...

1 2 3 4 5 15