1
vote
0answers
29 views

insert a date field mysql, struts2 spring hibernate

I'm working on a project using spring hibernate struts2 framework and mysql database, I have a problem when I wanted to add a field of type Date does not work, it means when I try to insert a Date ...
-3
votes
0answers
23 views

Block concurrent transactions being committed via server code [closed]

In an application, if suppose a user is adding a device on a particular position and if another user from a different location tries to add a device in the same position, there are chances that the ...
0
votes
0answers
41 views

Struts 2 w/ Hibernate 4 property tag issue in result jsp

I am trying to forward a string (resultado) that comes from a Hibernate List (result) the HQL and listing goes well, and then i fetch a result (that answer is one siple row , i even selected a ...
-1
votes
2answers
97 views

JSP Input data (Welcome.Jsp) cannot get by Java code (OrderProcessingAction.saveOrUpdate() )

Jsp page input the details user and sends to struts action, struts.xml mapped the action to Action class OrderProcessingAction method saveOrUpdate() and this method call saveOrUpdateUser() of DAO ...
-3
votes
1answer
48 views

Unable to Save/Add User details [closed]

I have a problem in below code, cannot save user details. Methods are well written but don't know where i'm legging. 1. JSP Page 2. ActionClass 3. Data Access Object 4. struts xml file /** ...
-2
votes
0answers
98 views

User login module using java,struts2 and hibernate [closed]

I am new to Struts and Hibernate frameworks. I want to develop a simple user login and registration module. Suppose I have login.jsp to get username and password. Then I want to call an execute() ...
0
votes
3answers
40 views

hibernate returned list casting issue

Two entity classes: @Entity public class FilesInfo { @Id @GeneratedValue private Integer id; private String name; private String url; @OneToMany(cascade= CascadeType.ALL) ...
0
votes
1answer
47 views

HTTP Status 503 on Sun Java System Application Server 9.1_02 (build b04-fcs)

We are replicating our Production application to our DR machine. Our application is a web app using Hibernate Spring and Struts2 framework running on a Sun Java System Application Server 9.1_02 ...
-1
votes
1answer
56 views

Deploying struts2 + hibernate application using google app engine

This is quite cumbersome for me now... I have developed an application using struts2, and hibernate (mysql) and it is working fine with apache tomcat. Now i want to deploy it on google app engine. I ...
-3
votes
0answers
63 views

Please guide me through the loop holes in my code [closed]

Can someone please tell that what i am doing is wright or something wrong, as i am new to hibernate. Its just a simple login example, but will take time,to go through and i will surely appreciate all ...
0
votes
2answers
64 views

Session is closed Exception

I am building an application with struts 2 hibernate spring 3 with my sql as back end and c3p0 connection pooling(c3p0-0.9.1.1 jar). Sometimes, when executing a query, I get the below error. When ever ...
-1
votes
1answer
68 views

Struts2+Spring3+Tiles3

I would like to integrate tiles 3 to my web application spring3+struts2+hibernate, but I don't have any idea of were to begin. All examples that I see use struts2 with tiles only, no integration of ...
1
vote
2answers
55 views

get it in action but no display in <s:iterator>

I use <class name="Topic" table="topic"> ....... <set name="replies" inverse="true" lazy="false" cascade="save-update"> <key ...
0
votes
0answers
242 views

Exception starting filter struts2 Unable to load configuration. - action

I am new in maven and i am trying to build an application using struts2, Hibernate and spring3. when i try to deploy my app on tomcat server i get following error. SEVERE: Exception starting filter ...
0
votes
2answers
61 views

Hibernate solution for Composite key [closed]

I have been working on creating a composite key using hibernate. I found this link: how to make a composite primary key (java persistence annotation) First of all I tried Tim's accepted solution with ...
0
votes
1answer
58 views

No web dyno for newly created heroku app

I have been working on a Java maven web app using Struts2, Hibernate, and tomcat locally for sometime now. I have decided to host the app on Heroku so I signed up and create a new app. I then pushed ...
0
votes
0answers
28 views

Creating a struts2 app on heroku

I have created a struts2 app using hibernate and tomcat. I want to host this app on heroku, which one of the java templates is recommend to use a Web app with Spring and Tomcat or Containerless web ...
0
votes
1answer
140 views

struts2+hibernate java.lang.reflect.InvocationTargetException

I have a problem when i am trying to list the table using hibernate, I am not getting the problem when i am adding data to table. Problem is when i am retrieving. The Action method ...
0
votes
1answer
63 views

Constructor with nearly 1000 Parameters

one of my table contains nearly 1000 columns. I'm creating a struts2-hibernate application. So when creating class based upon the table i'm having the constructor with nearly 1000 parameters. does ...
-1
votes
1answer
49 views

Looking for a solution for making 3 inter depended Select tags.(One more select than doubleselect)

I am having an issue in creating 3 inter-depended select case. If i am having just 2 select Then i can use doubleselect, but here its more than two select case. My code looks like this. <s:select ...
0
votes
0answers
55 views

Getting a JasperException in the Navigation page

I am getting the following error message in the Navigation page. The page is displayed with HTTP Status 500 Error. Here is the complete error message. HTTP Status 500 -type Exception report message ...
1
vote
1answer
136 views

how to handle exceptions in a project of Struts + Spring + Hibernate

I want to know what is the better approach for handling exception.My web project is having Struts-Spring and Hibernate. An exception can occur either at Struts Action or Biz Layer or at Data Layer. ...
0
votes
2answers
71 views

Struts 2 - Date instance become String

when I submit the form, input error is occur. JourneyDate is instance of 'Date'. But ,here it become String which is not accepted by the setter and getter. <s:hidden name="JourneyDate" ...
1
vote
1answer
269 views

How to apply Spring security on struts2

I have read various tutorials and forums but have not found a working example of combination of Spring security and struts2 to investigate the coding. Most of the current examples are using the ...
1
vote
1answer
86 views

Solving Maven dependency error in Netbeans

Why am I receiving the following error? I am using netbeans and not sure which commend line should I use to re-run the maven and follow the error's instructions. I have found this as well but still ...
0
votes
1answer
98 views

What is the best solution to add/delete a many-to-one mapped object with hibernate and struts

Ticket class: @Entity @Table(name="tickets") public class Ticket implements Serializable { @Id @GeneratedValue(strategy = GenerationType.IDENTITY) @Column(name = "id") private Long id; ...
0
votes
1answer
226 views

struts2 + hibernate not able to solve null pointer

struts.xml <!DOCTYPE struts PUBLIC "-//Apache Software Foundation//DTD Struts Configuration 2.0//EN" "http://struts.apache.org/dtds/struts-2.0.dtd"> <struts> <package ...
-2
votes
1answer
81 views

Hibernate best way to define data types (Object/Primitive) in mapping class [closed]

I'm working on struts2 with hibernate 3.3. When I did reverse engineering of my tables from oracle DB i got all table number fields of table mapped in class with BigDecimal,Long,Boolean etc., All are ...
0
votes
1answer
132 views

Struts2 Jquery Struts-Plugin.xml invalid

I have setup a project which is a combo of Struts2 + Springs + JPA. I recently came across this Struts2-Jquery Plugin Using this plugin [struts2-jquery-plugin-3.5.1.jar] in my project i got an error ...
0
votes
2answers
124 views

HQL Insert fails while selecting a record from a table and inserting selected records in another table?

my HQL Insert query fails while selecting a record from a table and inserting selected records in another table. I am getting all debuging message "inside list" and iterating list in console but not ...
2
votes
3answers
122 views

delete record by any column value hibernate

I am new to hibernate, I am learning struts2+hibernate and have been understanding by example on net. In one of the examples here strts2+hibernate example What i can see and do is, delete a user by ...
0
votes
1answer
77 views

Could not open or put a Hibernate Session in ValueStack: Cannot open connection

I have created application using struts and hibernate. While running application am getting following error in Eclipse IDE: org.hibernate.SessionException: Error! Please, check your JDBC/JDNI ...
-2
votes
2answers
124 views

Struts2 select and Distinct select items

I have a ArrayList which of type empDetail( a pojo class). List<EmpDetail> empDetailList = new ArrayList<EmpDetail>(); This list represents a table in the database. I need values for a ...
1
vote
2answers
319 views

hibernate HQL createQuery() list() type cast to model directly

When I use list() of Hibernate (HQL) after createQuery(), then I want to directly type cast List<Object[]> to my List<POJO class>. I describe my actual scenario here. I have 3 Plain Old ...
-1
votes
1answer
236 views

java.util.ArrayList cannot be cast to java.lang.Long hibernate detached criteria

I have a Hibernate DetachedCriteria Code here. I receive a java.util.ArrayList cannot be cast to java.lang.Long when I run the application! basically what I do here is there are two lists each with ...
0
votes
2answers
62 views

Is it Better way to get the inserted id in Hibernate?

I am using Hibernate 3.0 and Struts. I am using @GeneratedValue for the id generation. I have one customer screen when i save the customer details i want tomove to the next screen with the newly ...
1
vote
3answers
434 views

Struts2 JsonResult Hibernate LazyInitialization - How to deserialize within a hibernate session

I'm trying to implement a hibernate session/transaction interceptor to avoid LazyInitializationException on json results in struts2, but I get this exception anyway: 245968 [http-8080-7] ERROR ...
0
votes
0answers
84 views

multiple bean injected to bean not working [closed]

I am using Spring 3.0 and have injected muliple beans into an Action bean. Sometimes it works and at other times the program becomes unresponsive. When the 'error' occurs, the program simply gets ...
0
votes
3answers
95 views

Spring and Hibernate save not working

I am using Hibernate and Spring 3.0 i am trying to save the value into database but when i see a console the only select query is showing insert or update is not showing and save is not working I ...
1
vote
1answer
77 views

Spring Bean injection not working Dwr

I have two actions in two different packages <package name="default" extends="struts-default json-default" namespace="/"> <action name="getstarted" class="GetStartedActionBean"> ...
0
votes
3answers
258 views

Struts 2- Not able to view ActionMessages in my jsp and problems with validation

I am having various problems with my code: I am not able to view my ActionMessages and ActionErrors set by LoginAction Once I log in, if I again go to URL: /login, it does not redirect me to success ...
1
vote
2answers
125 views

Unable to get result after Inner Join 3 tables

I have declare a List<Object[]> which returning list of object array, where each array represents a row in result. And index of values are based on your select statement. productList = ...
0
votes
1answer
588 views

How to send form data to ActionSupport using Ajax and Struts2

when am not using Ajax then all well and good with same code. but using ajax here am got null vale for same public String execute() throws Exception { String strAction = cartItemForm.getAction(); /*i ...
0
votes
2answers
240 views

Spring+ Hibernate :How to map single session factory in multiple modules (deployed as jar)

I am working on Spring + Struts2 and Hibernate currently, My requirement is : I have Master module which will make DB connection, shared by all other modules (deployed as Jar) in the system. All ...
0
votes
1answer
78 views

re: jdbc driver for MySQL cannot be found from WEB-INF/lib directory

Application that uses Struts2 and Hibernate4 , MySql Server 5.1 and Apache Tomacat 7.0 ,is unable to find the jdbc driver (mySql Connector for 5.1) from the WEB-INF/lib directory. The following error ...
1
vote
2answers
847 views

java.lang.NoClassDefFoundError: Could not initialize class org.com.hibernate.HibernateUtil

This is my hibernate util code public class HibernateUtil { private static final SessionFactory sessionFactory = buildSessionFactory(); private static SessionFactory buildSessionFactory() { try ...
1
vote
2answers
194 views

Exception handling in struts2 and hibernate

Suppose that we have developed a website in struts2,hibernate,mysql and we have added few try catch blocks here are there which encloses database calls via hibernate. my question is 1.Inside the ...
1
vote
1answer
99 views

Struts or Springs for Batch processing

Currently I am working on some application which would later require batch functionality module since I have not yet started that module I need to know which (Struts or Springs) has the best Framework ...
3
votes
0answers
183 views

Play Framework high latency

I created an web application using struts2, hibernate with mysql. I migrated to play framework so now I have two instance of the application one written in play the other with struts2. I can see a ...
1
vote
1answer
780 views

Convert java.lang.String to java.sql.Blob using Struts2 and Hibernate Framework

Is there any way convert the java.lang.String to java.sql.Blob ? please help me ,this is one of my project requirements Ineed to store user password as Blob format into the Database(oracle10g) ...

1 2 3 4 5 6