Most voted "struts2" questions
Struts is a free (Free-Software), open-source (MVC) framework offered by the Apache Foundation.
Learn more…15 questions
Sort by count of
-
3
votes1
answer299
viewsHow to receive a list of Strings in a Struts2 select?
I have a select on my page that should have its value and caption populated through a list of Strings that come from my Action. I am sending the list correctly, because I see the combo have the…
-
2
votes1
answer125
viewsStruts2 with Spring Security Oauth2 plugin
I wonder if it is possible to use the Oauth2 plugin of Spring Security with Struts2 or if this plugin has some restriction that only allows to work in Springmvc?
-
2
votes1
answer332
viewsStruts2 - Is it possible to access a back end method of an Action in JSP?
I’m using Struts2 to build a web application. I have a method in a class called BaseAction, where all other actions extend it, as written below: public boolean isUserFullyLogged() { final Boolean…
-
1
votes2
answers1732
views -
1
votes1
answer106
viewsProblems in JSP implementation using Struts2
After executing the following jsp: <%@ taglib prefix="s" uri="/struts-tags"%> <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%> <%@ page language="java"…
-
1
votes0
answers14
views(Struts2 - JEE) I used extends of an action class and in the class call my execute() does not run
So guys, I never had a problem with running the project’s action classes, but this time I wanted to reuse code from another class and when using extends in the call, it just runs prepare() and…
-
1
votes1
answer275
viewsWhat are the features and functionality of Apache Struts?
I do not know what the structure and functioning of this framework is like, but from what I have read about it, it has been widely used in Web development. What are the characteristics and…
struts2asked 9 years, 5 months ago Denis Caixeta 3,427 -
1
votes0
answers46
viewsApplication does not starta struts2 and spring4 listeners
I’m using struts2 + spring4 server-based jboss 7.1 on my application. As reported in the title, I’m not getting up the application because the listeners They’re not being squeezed. Someone can tell…
-
0
votes1
answer119
views -
0
votes1
answer227
viewsHow to recognize each list element with Struts 2 iterator tag?
I iterated through a list, adding inputs to be changed. When the field with the class dataFimVigencePlanoVigent is changed, a jquery function is called to change also in the object in java. However…
-
0
votes0
answers76
viewsResteasy and Struts 2 - Interceptor Problem
My project uses Wildfly 8, java 8 with Struts 2. I’m trying to use Resteasy to implement web services. The project works perfectly, but when I include the settings for Resteasy in the web.xml,…
-
0
votes1
answer49
viewsMulti filter on web.xml with struts2
The web.xml I have configured has two filters that work very well on web browser http requests. <?xml version="1.0" encoding="UTF-8"?> <web-app…
struts2asked 7 years, 6 months ago Matheus Caiser 1 -
0
votes2
answers86
viewsHow do I copy and paste to a screen?
Personal greetings, I have a generic javascript file util.js with a Function not to allow copy and paste. $('input').bind('copy paste', function (e) { e.preventDefault(); }); On a specific page, I…
-
0
votes1
answer37
viewsHow to solve Struts Submit CSS?
Watch the image; I’ve done everything to put this button in the right place that I can’t, it just gets weirdly in the corner of the screen, it’s very strange behavior for the one button. These were…
-
0
votes1
answer75
viewsUsing Struts 2 with Maven, Eclipse and Tomcat
I downloaded the Apache provided examples of Struts 2 projects into their repository here. I tried to run the example helloworld. If I run through Jetty for Maven with mvn jetty:run, the project…