Thanks, I am not sure if that was required but that did helped me to resolve that issue, but I am getting another error now.
SEVERE: StandardWrapper.Throwable...
Type: Posts; User: vbindal; Keyword(s):
Thanks, I am not sure if that was required but that did helped me to resolve that issue, but I am getting another error now.
SEVERE: StandardWrapper.Throwable...
Is people are still active on this thread, I am getting the same error. I tried with slf4j-api-1.5.3.jar and slf4j-log4j12-1.5.3.jar. No success. any help would be appreciated.
Hi,
anyone ? please help
I am getting below error while starting tomcat. I have all the JAR's from my development in my lib folder. Please help
Sep 10, 2012 4:24:20 PM org.apache.catalina.core.ApplicationContext log...
If I have understood correctly from the documentation, below code is enough to manage transactions. untill and unless I want to do something special, I would have to add advice on class level, method...
this was the mistake which you pointed out
UserDTO userDTO1 = new UserDTO();
userDTO1.setUserName("test");
userDTO1.setUserPassword("temp");
userDTO1.setUserRole("STUDENT");...
Dear Marten,
I totally understand what you are trying to say.
I am using the same instance of UserDTO. I just had it named that way. I corrected it and It is still throwing up the same error.
Is someone still there to help, the problem is not yet resolved. :(
userDTO1 is an object of UserDTO as you can see. and userDTO is also an object of UserDTO too.
here is UserDTO
package com.peanuts.blackboard.database.dto;
/**
* @version=1.0
* @author...
It still isnt working, :(
thts a typing mistake from me, Sorry about it it is
userDTO.setUserPersonalInfoDTO(userPersonalInfoDTO );
userPersonalInfoDTO.setUserDTO(userDTO1);
session.save(userDTO1);
I have tried all of these many times, any other suggestions? pleaseee
I have seen this, I am setting both of them.
UserDTO userDTO1 = new UserDTO();
userDTO1.setUserName("test");
userDTO1.setUserPassword("temp");
userDTO1.setUserRole("STUDENT");...
I have changed the mappings and This is how it looks like,
<hibernate-mapping package="com.peanuts.blackboard.database.dto">
<class name="com.peanuts.blackboard.database.dto.UserDTO"...
I have refereed to this example here
http://www.mkyong.com/hibernate/hibernate-one-to-one-relationship-example/
I have checked couple of similar examples on web and I am not sure about the...
Guys, I have tried almost everything I could guess or find on web, Could it be a possible bug with hibernate?
I have removed TransactionalProxyBean and am using Transaction Manager with @transactional.
can you please tell me what shoul i change in my mappings? I have gone through my mappings again and...
helppp pleaseee
I have these bidirectional settings.
I am still getting this exception
SEVERE: Servlet.service() for servlet in context with path threw exception [Request processing failed; nested...
Guys, I am stuck with this problem, Please help.
Here is user DTO
public class UserDTO {
private int userId;
private String userName;
private int userSchoolId;
private String userPassword;
private String userRole;
here is the mappings for referance
<hibernate-mapping>
<class name="com.peanuts.blackboard.database.dto.UserDTO" table="users.User">
<id column="UserId" name="userId"...
I have debuged it. Nothing is set to Null.
The query saves the values in the database and then throws this exception. Its strange. It is saving the data in DB but throwing this exception. Please...
java.lang.NullPointerException
at org.hibernate.tuple.entity.AbstractEntityTuplizer.getPropertyValue(AbstractEntityTuplizer.java:521)
I have search a lot on this but couldn't find any solution....
m facing another problem now, m using spring sts, the server starts up normally, but it can not display any pages, it says http error code 404.
I created the spring mvc template project added the...