Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
173 views

I have a Jakarta 10 application which i deploy to google app engine standard java runtime 21. With the current dependencies JSP has been working well along with jstl tags. This is a snippet of my pom....
Henschel lungu's user avatar
0 votes
0 answers
45 views

There are link problems when loading resources. Can't figure out why. I have a song-history.js file in /component folder and I'm trying to load it: <script src="/components/song-history.js&...
egor-n's user avatar
  • 83
0 votes
1 answer
32 views

Working to migrate an application from Struts 1.2.x to Spring MVC, I am stuck at a place where in JSP I have to use labels from .properties lookup files. In the legacy code, the app has used Struts' ...
Anirudh Giran's user avatar
1 vote
1 answer
100 views

I am trying to build app pages via JSP, using nested tags within an outer tag ("page"). All of the tags need access to the same object, which is passed in from the controller. But I can't ...
xormar's user avatar
  • 103
0 votes
1 answer
435 views

I'm writing JSP Code for the first time. when I'm declaring an expression statement it's giving me an error; sum cannot be resolved to a variable. Here's my code for your reference: <%@ page ...
Usama Bagwan's user avatar
0 votes
0 answers
42 views

i'm learning make crud java web using servlet. When i access url for list data is success, but when access create data, i get an error in browser like this When i check in netbeans, error displaying ...
Franky's user avatar
  • 31
0 votes
1 answer
52 views

I imported the war file for jsp project into Eclipse. When running the project it gives giving following error. How to resolve this? I have tried to run a test jsp project with tomcat it works. But ...
it_works_on_my_computer's user avatar
-1 votes
1 answer
171 views

I am using a custom tag in my code to take user input but the jsp page has multiple inputs. What is the reason for it? Also please suggest me a proper documentation or any resources to learn about ...
ni9khil's user avatar
  • 13
0 votes
1 answer
124 views

I am using liferay 6.1.1 and I want to put a text file with Markdown in the product and want to read the text from the file and needs to display the text in the terms_of_use.jsp The Markdown in the ...
user18781702's user avatar
0 votes
0 answers
136 views

I have a JSP page which is called with various URL parameters like this: http://myserver.com/page_A.jsp?paramA=hello&paramB=you This page however doesn't do anything with the URL parameters; it's ...
halloleo's user avatar
  • 10.8k
1 vote
1 answer
252 views

I want to create JSP templates, i. e. JSP files that contain e.g. a dropdown or input field, to keep the styling of the elements in one place. Now these templates should be used in different UseCases. ...
Kleinstein11's user avatar
0 votes
1 answer
49 views

org.apache.jasper.JasperException: An exception occurred processing [/hello.jsp] at line [3] 1: <%@ taglib uri="http://struts.apache.org/tags-html" prefix="h" %> 2: 3: <h:...
sushil's user avatar
  • 17
2 votes
1 answer
179 views

Why is it not possible to combine a jsp include tag with an <%= ... %> expression? <jsp:include page="pages/<%= element.convertToLowercase() %>.jsp"></jsp:include> ...
Japhei's user avatar
  • 645
0 votes
1 answer
181 views

I have a questions regarding on how to configure the JSP file for the 500 error page. In this scenario, there are multiple themes with a folder structure described below. All the themes in question ...
Torjescu Sergiu's user avatar
0 votes
1 answer
237 views

PreparedStatement ps1 = con.prepareStatement("update cart set address = ?,city =?,state=?,country=?,mobileNumber=?,orderDate=SYSDATE,deliveryDate= orderDate + INTERVAL '10' DAY ,paymentMethod = ?,...
Ayush's user avatar
  • 1
1 vote
0 answers
62 views

I'm trying to load a jsp from remote during runtime. <c:import> accepts remote url and loads the file but it displays the jsp content as it is. Downloaded jsp has custom tags in it which needs ...
Jegan Babu's user avatar
  • 1,398
0 votes
1 answer
430 views

I'm creating a custom taglib under SpringBoot. My taglib tag is: <%@taglib prefix="ttl" uri="/WEB-INF/tags/resourceBundle.tld" %> I created a TLD file according to the many ...
user3481644's user avatar
0 votes
2 answers
253 views

I am trying to add a search and sort functionality on the client side using DataTable into my Liferay Search Container that brings data. However for some reason it is showing up on top of my data ...
Aftab's user avatar
  • 39
0 votes
1 answer
74 views

I am reading the book "Head First Servlet and JSP". There is one question I cannot fully understand. I am not sure why the book says that "it is not possible to import the contents of ...
Yu Tian Toby's user avatar
0 votes
1 answer
369 views

I have seen the UI of OpenKM to prepare document management system in JSP. I am just asking how they make it looks like a desktop app with right click, drop down and so many features. Visit this site ...
ALSOUMAHI's user avatar
0 votes
0 answers
25 views

Why do we need to use FreeMarker to generate text output with .ftl file while we can use JSP file which includes html code?
HoangBinh's user avatar
0 votes
0 answers
114 views

I am Getting a error where it says Uncaught TypeError: Cannot read property 'querySelector' of undefined while date validation. Any help will appreciated. here is my JSP Page form <form id="...
Swapnil Ghule's user avatar
1 vote
1 answer
1k views

I am getting cross-site Scripting: DOM critical issue. Please can anyone help with the alternateway of using document.write <script> document.write('<base href=“' + document.location + '” ...
cheema genupuri's user avatar
1 vote
1 answer
855 views

I have the following code to redirect to a new page from a jsp. //response.sendRedirect("someJspPage.jsp"); %> <c:redirect url="someJspPage.jsp" /> <% ...
Som's user avatar
  • 1,610
0 votes
1 answer
380 views

I am trying to calculate the values : amountBeforeTax taxAmount and amount but my input named : amountBeforeTax is not updating value to $scope.amountBeforeTax in the controller. Versions : Angular ...
Mudit Agrawal's user avatar

1
2 3 4 5
30