-2
votes
1answer
23 views

Login with twitter button in my struts2 application [closed]

I developed struts2 web application, now I want people to login from their twitter account, so I need to place a button called "Login with Twitter" under my normal login button. I already did Facebook ...
0
votes
1answer
36 views

how to return to the invoke action in struts2

I'm using struts 2, and I have a, b, c, d four action now. There's a link "mobile view" in all of the four pages, if click the link, it will go to mobileCheck action to set the session. So after ...
2
votes
5answers
60 views

How to run a specific block of code automatically based on date and time?

I am wondering how to make the application execute a specific part of code, for example a part of code to send an email on a specific time and date? I have read the following questions but none of ...
-2
votes
1answer
36 views

struts2 for modern I performance site [closed]

I want to create a web app and I am looking for the best java web framework to use. The requirements of the app is it needs to handle at least 600,000 user request. Must have a strong security ...
1
vote
2answers
44 views

Send a parameter for every result

I want to send a specific parameter for every result. struts.xml <action name="modifierPara" method="modifierPara" class="ma.ensao.evalmetrics.view.ParametrageAction"> ...
-2
votes
1answer
21 views

Unable to work with Struts2 and REST Plugin [closed]

I've been trying to work with the REST Plugin of Struts2 but was unable to make it work with a VERY simple project and following tutorials but I'm really unable to make it work. I literally feel like ...
2
votes
1answer
36 views

Strruts2.3.14 junit test

I'm using Struts 2.3.14 for my application... I need some unit test in my application... so I'm using junit4... but when I use ActionProxy in my test, it will show NullPointerException... my test ...
1
vote
2answers
31 views

struts 2 file upload without struts tags

Do I need to make use the struts tags <s:form action="doUpload" method="post" enctype="multipart/form-data"> <s:file name="upload" label="File"/> <s:submit/> ...
1
vote
1answer
23 views

command line interface for struts2 spring framework (compiled by maven)

I currently have a project that is a web application (struts2 + spring) that is compiled with maven, running on a tomcat7 server on CentOS6.3. I am wondering if there is any way to provide also a ...
0
votes
1answer
69 views

getting values in pop up window

I have a struts time picker in my parent page like <sx:datetimepicker id="value1" name="value1" label="Format (dd-MMM-yyyy)" displayFormat="dd-MMM-yyyy" value="" /> <sx:datetimepicker ...
0
votes
0answers
30 views

Getting error in Catalina when tomcat is shutdown [closed]

I am getting following error when I stop my tomcat server 6.0.36. May 17, 2013 12:27:27 PM org.apache.catalina.loader.WebappClassLoader clearThreadLocalMap SEVERE: The web application [/TestApp] ...
2
votes
2answers
51 views

struts 2 action with no setter getter

I would like to create an action class with no setter and getter on properties for the data coming from the user interface. Instead, I would like to use ...
1
vote
2answers
28 views

Struts2 action could not execute when redirect (with interceptor) an action to other

I send a request to the ActLand, then intercept(), if not logged in then redirect to Login.jsp. The struts.xml: <struts> <package name="default" extends="struts-default"> ...
0
votes
2answers
34 views

Struts 2 in eclipse giving “requested resource not found”

CONSOLE OUTPUT 16 May, 2013 6:06:51 PM org.apache.catalina.core.AprLifecycleListener init INFO: The APR based Apache Tomcat Native library which allows optimal performance in production environments ...
-1
votes
1answer
53 views

Login to my struts2 application using facebook login credentials [closed]

How to login to my struts2 application using facebook login credentials? I have created struts2 file upload application which has username and password to upload any files. now i want to use facebook ...
0
votes
2answers
34 views

spring MVC dispatching and other problems [closed]

i'm new to spring framework. but i'm confident in struts2 framework. i've three doubts. Question 1: In struts2 we can dispatch from one jsp to another jsp through by configuring in struts.xml. Is ...
0
votes
2answers
76 views

How to disable Struts Validation Interceptor?

I'm trying to build a javascript / ajax uploader which submits a form / file upload to an action. However when the form is submitted, the validation interceptor prevents my action from being run for ...
1
vote
1answer
39 views

Struts2 String[] parameter instead of Long

I am developing a struts2 application (Struts 2.3.14, java 1.7, on a Tomee plus 1.5.1 server). I have a bunch of "detail" actions, and all of them contain the following code: private Long modelId; ...
1
vote
0answers
30 views

How to upload file by using uploadify

I'm using uploadify to upload file There is Jsp Code <%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%> <%@ include file="/common/tags.jsp"%> <!DOCTYPE HTML PUBLIC ...
1
vote
1answer
33 views

CDI: how to apply interceptor to library (third-party) code?

I'm working only in a Servlet container (Tomcat) with CDI (weld) and JPA (hibernate). I've found many examples online of creating a "Transactional" interceptor: import ...
-1
votes
1answer
36 views

Handle ActionForward in Struts 2

I am migrating my Struts1 application to Struts2. Is there any alternative for the below code in Struts2, I am using this in my Action classes. String path = ...
-1
votes
6answers
56 views

404 when running project through eclipse on Tomcat

I have a Struts 2 project with following directory structure. But when I try to run this project using Eclipse on tomcat 7, it gives me 404 error. Struts.xml <?xml version="1.0" ...
0
votes
0answers
49 views

shiro keeps redirecting me to login page

I have a simple authentication application using shiro but it does not work. It does tell me that the user is authenticated properly. It keeps redirecting me to the login page rememberme does not ...
0
votes
0answers
28 views

NullPointerException for Google App Engine Text

I have the following Profile bean with Text property: import com.google.appengine.api.datastore.Text; public class Profile { ... private Text aboutMySelf = null; public String ...
2
votes
2answers
56 views

validate() method after validation.xml

I have a -validation.xml file to check if the fields of the form are empty and that kind of simple validation. I also have a validate() method (extended from ActionSupport) to check more complicated ...
0
votes
2answers
45 views

Upload files inside server webcontent/upload folder in Struts

I want to upload .wav files inside Apache Tomcat server, inside Webcontent/upload folder. How to get path from server, so that I will put that path inside my program for uploading .wav files using ...
-1
votes
0answers
48 views

Losing user input when form validation fails in Struts 2

In Struts, if I have a textbox setup like this: <s:textfield name="foo.bar" label="Foo bar" /> but it fails validation: public void validate() { addFieldError("foo.bar", "Some error"); } ...
-1
votes
1answer
35 views

Not able to understand the why register method is not being called after prepare. always customeraction-validation.xml is being called

I am developing a sample web application in struts2. But i am getting some weird behaviour CustomerAction.java package com.astro.action; import java.io.Serializable; import java.util.ArrayList; ...
2
votes
1answer
42 views

Struts 2 interceptor that runs after the page executes?

I'm using Struts 2. Using an interceptor, I create a database connection at the start of each page execution. So for example, if a user goes to "myAction.do", it will create the database connection ...
-2
votes
0answers
26 views

action without result config also can redirect to jsp page [closed]

my boss gave me a web project yesterday i found there is a action method without any result config not in struts.xml, not in annotation but i debug into DefaultActionInvocation [line: 209] - ...
0
votes
1answer
56 views

How to serve static resources (images, css, etc) using Struts 2?

I'm new to Struts 2, and I'm simply looking for a way to serve static resources (e.g images, javascript files, css files, etc). E.g every request starting with /assets should try to load the static ...
1
vote
2answers
87 views

Getting Interceptor Parameters in Struts2

I have following action mapping <action name="theAction" ...> ... <param name="param1">one</param> <param name="param2">two</param> ... <param ...
-1
votes
0answers
59 views

how to handle null java bean struts2

I have a login page which gets userId and password information, these information were stored in accountBean (please see index.jsp) index.jsp <s:form action="login.action" method="post"> ...
1
vote
0answers
49 views

Action-class method is not called from struts2

This is a very odd error that I have but I have been struggle with this for a week now. I have a web application that worked fine on Jboss4 but when I moved it to Jboss6 all hell broke loose. Check ...
-11
votes
4answers
73 views

What are Struts in Java ? Why and When do you apply struts in Java? [closed]

I would like to learn and apply Java struts in my Application. Can anyone tell me What are Struts in Java ? Why and When do you apply struts in Java?
1
vote
1answer
54 views

Detecting User Agent to redirect on specific Jsp in struts 2

As title suggests I want to redirect the requests of mobile phones to specific page. another way I expect is only a variable that contains information about UserAgent so That U can use that Variable ...
-2
votes
0answers
50 views

show files in thumbnails in jsp [closed]

I want to display all the files in a directory as thumbs. Like if video or image file then a preview. or if it is some other file like word or some other, then a no preview image should be shown. Now ...
-5
votes
1answer
36 views

i m trying to develop a application using struts 2 .but my application cant find the include xml in it [closed]

i have included struts.xml in my classes folder and have specified common.xml in WEB-INF/mappings folder. but still it shows error .please help struts.xml <?xml version="1.0" ...
-1
votes
1answer
70 views

jquery Struts2 Java $.getJSON params UTF-8 encoding (Tomcat 5.5)

I'm getting mad with this: Tomcat 5.5, JRE 1.6 (compliance level) using JDK 1.7 Headers: <%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> ... ...
-1
votes
2answers
92 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 ...
2
votes
0answers
69 views

Need to upload multiple files at once

I need to upload 1000 files all at once using struts2 I have the following answers but none of them suits the purpose. Using one of them I can click on the button to have more input fields but if I ...
0
votes
1answer
65 views

How to upload files using java?

the scenario is as follows, user clicks on upload images, then a three upload file fields will be shown to upload three images, there is also a button to add more images, user can upload unlimited ...
-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 /** ...
1
vote
2answers
160 views

hide passed parameter from jsp to struts2 action class

<s:url action="someAction" var="act"> <s:param name="param1">value1</s:param> </s:url> <s:a href="%{act}">Go Action</s:a> By clicking Go Action link, the address ...
1
vote
1answer
74 views

How to set s:hidden value from another JSP element

i have following form : <s:form id="storno_form" namespace="namespace" action="action"> <sj:submit id="submitId" key="btn.show" targets="cancelation_content" ...
0
votes
1answer
34 views

servletactioncontext null in struts2.3.12

for (Cookie cookie : ServletActionContext.getRequest().getCookies()) { The above line is giving me java.lang.NullPointerException at ...
-1
votes
0answers
92 views

No result defined for action … and result success Struts2

i'm new in struts2 and i'm getting this error while executing the code: No result defined for action com.ilgala.struts2app.register.action.RegisterAction and result success ...
0
votes
1answer
85 views

Struts2: Problems getting data from HTML/JSP

I have my action, which has a variable HashMap<String, MyObject> My Object: public class MyObject { private Boolean confermata; private String idObj; private String versione; ...
-2
votes
0answers
93 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
1answer
53 views

Struts2 cross context JSP access using c:import throws ClassCastException

I have a couple of web apps deployed on the same server. There's a jsp in app1 that I want to access from app2. I enabled cross context access in the tomcat and tried this jstl tag: <c:import ...

1 2 3 4 5 39