Tagged Questions
0
votes
1answer
19 views
Struts2 upload file by POSTing
So I'm trying to integrate wami-recorder into my webapp. The webapp currently is built using the Struts2 framework.
There is an example on StackOverflow here on how to integrate wami-recorder into a ...
0
votes
2answers
71 views
How to check if User Logged in or Not using Session Struts 2
I am working on struts2. I use below code to check if the User have logged in or not
public String execute()
{
HttpServletRequest request = ServletActionContext.getRequest();
HttpSession ...
-4
votes
1answer
100 views
Servlet initialization as “welcome” page for STRUTS2
Please find the folder structure image as below: ( PROJECT & FILE STRUCTURE + web.xml in screen shot)
http://tinypic.com/r/28bgvw8/5
I'm using:
STRUTS 2
Servlet 3
Glassfish server 3.1.2
...
3
votes
2answers
174 views
How to forward request from servlet to action of struts2?
I want to forward a request from Servlet to Action like this using RequestDispacher like this
RequestDispatcher dispatcher=request.getRequestDispatcher("hello.action");
dispatcher.include(request, ...
1
vote
2answers
215 views
Forwarding a request from a JSF managed bean to a Struts 2 action does not work
Within a JSF managed bean, I have the following code taken from this past question:
String uri = "/myAction";
FacesContext.getCurrentInstance().getExternalContext().dispatch(uri);
myAction is the ...
-1
votes
2answers
261 views
servlet not calling struts2 , web.xml conflict
Here is my web.xml structure.
<servlet>
<servlet-name>myServlet</servlet-name>
<servlet-class>com.test.servlet.MyServlet</servlet-class>
...
1
vote
1answer
123 views
Getting request parameters in a Struts Action when you don't know what they are called
I have a struts ActionSupport class that uses a Map<String, String> to create <input> elements in a jsp where the name of the input is the key of the map. The map contains parameters (not ...
-2
votes
1answer
87 views
is it possible to scan bar code using jsp or servlet [closed]
Can any one Help me.
I am developing one web application using jsp servlet , in that i want to scan bar code using webcam and store the details into database . Is this possible to scan bar code using ...
0
votes
1answer
243 views
sms/email alert in dynamic web project using servlet [closed]
i'm creating a dynamic web project using servlet(Eclipse) which consists of e-mail & sms alerts like for forget password options & for other related fields. i have no idea about how to ...
0
votes
1answer
62 views
Chrome-only Issue: Serving images using a servlet. One image loads, one image doesn't
Edit:
I have a page that contains the following HTML code:
<img src="/static/ads/1111.png"> <!-- 1 -->
<img src="/static/2222.png"> <!-- 2 -->
When I load the page, Image ...
-1
votes
1answer
205 views
Setting ContextPath in Struts2 Action Class gives wrong path
I'm currently trying to set a context path for a config file in my webapp, but it seems no matter what solution I try, none of them give the right path. The config file is found in WEB-INF/Config.
...
0
votes
1answer
391 views
How to get images from database using struts 2 framework?
i have jsp which has takes some information from database along with blob image.but to get image i written servlet which take id of image and do some operation on image like converting blob to binary ...
-1
votes
1answer
50 views
Making browser to search/submit the resource relative to actual served page instead of original requested one?
i have a scenario where i need to forward the request from struts 2 action to legacy action class which is not struts 2.Here is my flow
JSP(serverd from struts 2 action under customer ...
0
votes
0answers
49 views
How can i call EJB DTO from Servlet
I am using EJB Session bean for Business logic,How can i call EJB DTO from Servlet to set and get values in SessionBean?
1
vote
2answers
101 views
Redirecting URL or hiding URL information
Its about redirecting the url. I am redirecting below url "A" to
"B". In browser i get "B". My question is i don want to display "B" on my browser, but instead should display "A". I don't want ...
-1
votes
2answers
104 views
How to access pretty URL from code
I am using UrlRewriteFilter to make my URLs "pretty". From within my application I frequently need to access the current URL. I do it like this:
ServletActionContext.getRequest().getRequestURI();
...
0
votes
1answer
481 views
Struts2 - SessionMonitor -The page isn't redirecting properly
I have developed struts2 web application. I need to do the session monitor. If the user doesn't login to the system/ or session time out, automaticatlly need to redirect to login page.
Web.xml
...
1
vote
1answer
165 views
JSP/Servlet How to identify if the HTTP request came from an ajax request
I am using JQuery-Ajax, and History.js for my web app, is there anyway I can identify if the request came from an AJAX request or just normal request? What I aim to do is something like this
...
1
vote
1answer
165 views
how to auto-run a servlet/action in a java web application whenever the context loads (tomcat starts)
I want to have some code executed whenever my web-app deploys.
The same should happen if I re-start tomcat.
And this should be done only once in the life-cycle of the entire web-application.
Is ...
1
vote
1answer
454 views
Why Struts 2 doesn't provide easier method for retrieving request parameters?
I rewrite application from servlets to Struts 2.
Previously to get parameter value I could write:
request.getParameter("name");
Now I should do:
public class MyAction implements ParameterAware {
...
0
votes
0answers
122 views
Struts2 servlet as action
I want to convert an upload servlet to an Struts2 action. The servlet is used by an applet to upload a file to the server. This is a "third party" applet - I cannot change it anyhow.
Applet is ...
0
votes
1answer
94 views
Struts2 With Styling outside the war/ear
I have a problem with Struts2, the problem is, the client want the styling of the web apps is dynamic, for example is, i can put the template (.html / .ftl) on /apps/template/path where all the logic ...
3
votes
1answer
122 views
Is the use of servlet better than the action-classes in struts2?
As it is known, that Servlets use individual threads for the respective requests and this improves the efficiency of server.
Whereas, in the struts2 framework, each mapped Action-Class has its own ...
5
votes
1answer
153 views
Code working in Localhost but it dosent work in online website in java using hibernate
I had made one web application in Java using frameworks -struts 2.0, hibernate 3.0, and tiles 2.0 .
and in my local system i am using JDK 1.6, apache- tomcat 6.0 and my SQL 5.5
when i registering the ...
0
votes
1answer
1k views
Getting the value of a Map in Struts2 JSP
I am loading a map of values into ServletContext during start of the application/server
HashMap<String, List<String>> cfsUfsMap = new HashMap<String, List<String>>();
//some ...
0
votes
4answers
1k views
ServletOutputStream write in jsp when using struts
I am working with a struts2 web application. Am facing a situation in which I want to display a file (it may be an excel , pdf file or html) in the users browser when he/she clicks on a link.
And the ...
-3
votes
1answer
130 views
How many Java web apps on the Internet use the Struts framework? [closed]
Is there a website that shows how many web apps on the Internet use Struts, how many use traditional Servlets, etc... .
0
votes
1answer
73 views
ServletContex attribute in a clustered application environment
I have my application deployed in a cluster with two servers. When I set any attribute using:
this.getServletContext().setAttribute("test", testObj);
Will testObj attribute with key test be ...
-1
votes
3answers
339 views
How to run a thread from struts2
i am developing a sturts2 webapplication, i am having a login page with username and password fields. As soon as user submitted form with values , i am validaing the login, if the user provides valid ...
0
votes
1answer
2k views
Pass selected values to action class using Javascript ajax
whenever user clicks on add button, the server selection popup will come with server types in dropdown list and server version in multiple selection dropdown. When the user selects server type and ...
0
votes
1answer
544 views
can we access the servlet without directing through struts2.xml?
i've created a project in struts2 MVC.
can anyone tell me how to access the servlet without directing through struts2.xml?
i know that we can access through struts2.xml by the action dispatcher but i ...
0
votes
1answer
94 views
How can I get the directory of my deployed web application?
How to get current working directory for struts2 web application?
String currentDir = System.getProperty("user.dir");
String currentDir = new File(".").getAbsolutePath();
return /usr/share/tomcat.
...
0
votes
0answers
126 views
webapp start with log4j debug before load log4j.properties
I use log4j since 2010. Great tool.
In a new software I imported the same configuration and libs, but at deploy the app start with logging level DEBUG (but I haven't set the debug level).
It logs all ...
0
votes
1answer
1k views
Show All images on Jsp with name and size
requirement : I want to show details of image(imageName,imagesize,image) on jsp page. Image is stored in database with object type blob. Column of database tables are ...
1
vote
3answers
2k views
Filter with url-pattern /* not mapped to all jsp's
I am starting to learn struts 2. I have 3 pages, FirstLevel.jsp, SecondLevel.jsp, BadGuess.jsp. I want to apply filter in the three pages.
LevelFilter.java
package com.tutorialspoint.struts2;
...
0
votes
0answers
276 views
Can we call http servlet from httpClient Componet
I want to call http servlet class from my httpClient, my httpClient code below
public class ConnectionClientHttp {
public static void main(String[] args) throws Exception {
...
1
vote
2answers
635 views
How to implement ServletContextListener in struts2, spring, hibernate application?
In my application I want to store some of my data in ServletContext as its going to be used through out the application. Data are saved in a database. All the configurations are made through ...
0
votes
1answer
106 views
About validation in struts 2 - First validation ok next yields wrong page
I am having a slight issue with validation in struts2 during consecutive validations.Now if an error is found on the form for the first time the correct url is used such as:
...
0
votes
1answer
1k views
request.getSession() creating new session after sendRedirect()
We are developing travel application. Through this flight, Hotel, Bus tickets will be booked. It is product based application. Nearly we have 25 clients(3 clients are using, for remaining still ...
0
votes
2answers
1k views
Struts2: struts.xml doesn't forward to action name
You will suppose this is a big question.but there might be a simple problem which I can't find the reason.
There is a form( a simple login) whose action name is 'loginAction' in a jsp page called ...
0
votes
0answers
105 views
Redirecting a page with a Servlet
I have an application that is a mix of plain old servlets and Struts2. There is a search page which is used throughout the application, so I made it as a generic page. Several search pages just ...
0
votes
3answers
238 views
What design pattern should I use for a simple reporting system
I'm working on a java application for a web based reporting system. The application currently uses struts2 for some reports and basic servlets for others. The code is all over the place and I want to ...
0
votes
0answers
64 views
Linking servlet-struts2.0
I am trying to integrate existing jsp/servlet app with some struts 2.0 but not able to integrate web.xml file from both sides giving errors .1st is it possible to use servlet and struts 2.0 action ...
0
votes
1answer
996 views
Error for 404 pageNotFound with struts2
Can anyone explain me why I am getting the following exception:
java.lang.ClassCastException: org.apache.struts2.dispatcher.StrutsRequestWrapper cannot be cast to com.evermind[Oracle Containers
...
1
vote
1answer
986 views
Filter is used as controller in Struts2
In struts2 why Filter is used as a controller instead of Servlet?
what is the advantage of filter over servlet?
0
votes
4answers
3k views
Why Servlets are not thread Safe?
I need to know why the servlets are not thread safe ? And whats the reason that in Struts 2.0 framework controller servlet is thread safe ?
0
votes
1answer
525 views
Struts 2 - Dynamically set the method name, from one Action to call another action method, to execute
I have one query regarding Struts 2 method invocation.
Suppose i want to call method dynamically and that method name will come from DB. so the scenario is,
there is one Master module and 2 sub ...
0
votes
1answer
80 views
where do on-fly-generated-images with a servlet store?
if I'm generating images using servlets/actions something like this:
byte[] imageBytes = getImageAsBytes();
response.setContentType("image/jpeg");
response.setContentLength(imageBytes.length);
...
0
votes
3answers
1k views
Get http session / request in hibernate interceptor
I want to to implement an audit logging module to my existing system and I want to save actual logged user information and it's only the httpSession.
I'm using hibernate/spring/struts 2, and in order ...
0
votes
2answers
975 views
java how to get json from a request?
I'm posting a json request to server. I can see the http post is done correctly in firebug. (I'm sure the json format is valid)
eg. {datas:[{"a":1, "b":2},{"a":5, "b":6}]}
my question is, how do I ...




