Questions tagged [struts]

Apache Struts, an innovative web framework, offers a cost-effective and open-source solution to develop exceptional Java-based web applications.

Rearranging the layout of HTML columns dynamically according to a predetermined configuration saved in the database

In my current project, I'm facing a challenge with the column arrangement in an application. We have a Listing screen that displays data for a specific case, and we also have an Admin>>Customization section where users can configure the column order. The r ...

Tips on sending non-form values to an action in Struts 1.3 via AJAX

Here is a snippet of JSP code that I am working with: <%@ page language="java" contentType="text/html; charset=ISO-8859-1" pageEncoding="ISO-8859-1"%> <%@taglib uri="http://struts.apache.org/tags-bean" prefix="bean"%> < ...

Error encountered in the FilterChain doFilter method due to a java.lang.NullPointerException

After adding a filter in the web.xml deployment descriptor, I am encountering a NullPointerException whenever a request is made to the server. java.lang.NullPointerException org.apache.commons.beanutils.PropertyUtilsBean.getIndexedProperty(PropertyUtilsB ...

Is there a way to create an <a> element so that clicking on it does not update the URL in the address bar?

Within my JSP, there is an anchor tag that looks like this: <a href="patient/tools.do?Id=<%=mp.get("FROM_RANGE") %>"> <%= mp.get("DESCRITPION") %></a>. Whenever I click on the anchor tag, the URL appears in the Address bar. How can ...