A *scriptlet* is a piece of raw Java code embedded in a JSP file which get executed in line with the JSP output.
0
votes
3answers
27 views
how to get the value from javascript code to jsp scriptlet with in the same jsp page
below is my code (1.jsp)
<html>
<head>
<script type="text/javascript">
function changeFunc() {
var selectBox = document.getElementById("selectBox");
var selectedValue = ...
0
votes
2answers
30 views
Accessing a Java Map inside a scriptlet
I've got a Java Map object imported into a JSP file that I'm working with. What I need to do is take each entry of that map and put it into a table in the JSP. I'm not going to act like I'm super ...
1
vote
0answers
57 views
Response after multiples form submit
I'm trying to implement a synchronize token and It worked but the last request (or the others after the first) I would like to ignore.
For example:
If I don't put a request.getResquestDispatcher() or ...
1
vote
5answers
145 views
invoking java scriptlet in JSP using HTML
I am trying to find a way to invoke a piece of java code within the JSP using HTML form
<form method="get" action="invokeMe()">
<input type="submit" value="click to submit" ...
0
votes
2answers
52 views
Scriptlet variable in div id
Hi Can we assign scriptlet variable value to div id in jsp?
Im trying like this in my jsp:
<%int nc=1; %>
<div id="nc"+<%=nc%> class="n_content active">
Some div content
...
0
votes
0answers
66 views
Setup session attribute based on the output of javascript
Scenario goes like this :
On login page jsp, within tag javascript function is called, based on the return value the welcome message is updated through AJAX call.
<script>
var divWelText ...
0
votes
0answers
43 views
Redirection is not working Spring MVC form
<form:form>
<%
String applicationId=(String)session.getAttribute("appId");
String serviceId=(String)session.getAttribute("servId");
String ...
0
votes
0answers
168 views
scriptlet in jstl assign values for Set
I want to create a Set in a jstl page (for unique values)
My code looks like this
<%@ page import="java.util.Set" %>
<%@ page import="java.util.TreeSet" %>
<%
Set<String> mySet = ...
0
votes
1answer
126 views
Missing request parameter
we have an application made with JSF 1.2. We use JBoss 4.2 and Apache.
The issue we are having appears randomly in the production enviroment.
We have in a JSP page an static link, similar to:
<a ...
1
vote
2answers
270 views
Deleting Java cookie in .JSP file
I'm using the following function to create a cookie which is set in a Java Servlet. I am trying to delete it in a scriptlet in a .JSP file. However it is not deleting the cookie, any ideas as to why?
...
0
votes
2answers
146 views
How do you mix up java with html and javascript?
I have this little java project in which I have to use jsp files.
I have an html with a login button that triggers the following function:
var loginCall = "user/login";
var logoutCall = ...
0
votes
3answers
1k views
Creating Array using JSTL or EL
I'm working on a web application using Java and its frameworks(Spring 3.1.1). And I'm trying to avoid using scriptlets as much as possible, however I can't find a way other than this to define an ...
0
votes
2answers
142 views
How to send a request to a servlet from a scriptlet in a JSP
Kind of a simple question, but it has me stuck. I want execute a servlet from within a JSP, so I tried something like the following:
<%
//Fetch server name port from request
//Fetch ...
0
votes
1answer
117 views
Accessing css property from scriptlet?
css
.myStyle {
height: 10px;
background-image: url(../myImage.png);
}
jsp
<img class=myStyle src=<% imageurl != null ? imageurl: (bacground-image property from my css)%> >
Is there ...
0
votes
4answers
1k views
JSTL fmt:formatNumber
How do I format a variable with <fmt:formatNumber> ? I'm learning JSTL and converting from old Struts tags. This doesn't work. It can't read the distance variable!
<%double ...
-3
votes
1answer
150 views
Scriptlet in a JSP [closed]
I have two radio buttons. Info will pop out when one of the radio button is selected. How can i check if a radio button is selected using scriptlet?
1
vote
1answer
88 views
Use EL ${XY} directly in scriptlet <% XY %>
In my project I've to asign a variable every time the JSP is being opened.
I tried it with scriptlets <% %> in JSP and EL ${} which gives the variable back.
But it seems not working.
<% ...
0
votes
3answers
639 views
How can we increment variables declared in scriptlet inside javascript
I want to display an element of the list, but I have a problem with the incrementation of list counter. it inrements only one time.
here is my function code in javascript
var element= ...
1
vote
2answers
245 views
Import custom tagLib without the use of directives like <%@
I have disabled scriptlet in all my JSPs in web.xml:
<jsp-config>
<jsp-property-group>
<url-pattern>*.jsp</url-pattern>
...
2
votes
1answer
90 views
JSTL and scriptlet code
So in my JSP page I am using a javabean to get some data from MySQL.
<%= myObj.getContent() %>
Lets assume the returned data if of the following form:
<!-- Content Begin -->
I am ...
-1
votes
2answers
378 views
How to use the nested query string on JSP?
I am trying to store the value in session, but it shows me a "string doesn't close properly" error.
I am using this code for storing the value:
<% ...
0
votes
0answers
168 views
Scriptlet and Struts tag
Hi I am trying to Assign a value to a string variable in scriptlet. and the value is to be fetched from some other class using . How can i achieve that.
<%String a= null;%>
<% a= ...
1
vote
1answer
181 views
JSP File Upload Error
Hi I have a problem uploading and creating files on my server.
There is always an access denied error ...
java.io.FileNotFoundException: ...
2
votes
3answers
128 views
Are JSP scriptlets an antipattern? [closed]
I hope you understand the question. What do you think? If I post some code here with scriptlet I'm convinced that you're going to tell me not to use scriptlet whatsoever. Right?
1
vote
4answers
325 views
JSP and scriptlets
I know that using scriptlets are considered taboo nowadays. Its okay and I will agree to the Top Star's words (as I am just a novice in Java at the moment).
What I have heard so far is, its to make ...
1
vote
1answer
2k views
JSP include page doesn't work
I have a JSP file, member.jsp which is as follows :
<%@ page import="java.util.*" %>
<jsp:include page="/html_functions.jsp" />
<% String heading = "Header" %>
<%= ...
0
votes
1answer
715 views
Add hyperlinks in to report using JasperReports
I've designed jrxml with iReport with hyper-link functionality but its not working (the report is displaying, but hyperlink is not working).
I'm using this jsp page for displaying report:
<%
...
-3
votes
2answers
2k views
How do i embed java code inside jsf page?
I have:
A managed bean called "LoginBean".
A JSF page called "login.xhtml"
In this jsf page, i have a login form.
Inside the managebean i have a loginCheck function.
public void loginCheck(){
...
0
votes
2answers
334 views
Write Static Content With JSTL
Working on a program and trying to print a static integer from another class. The weird thing is I can do it with scriptlets, but not with JSTL. Check out the error checking code I just wrote.
...
1
vote
1answer
280 views
Invoking class object method via scriptlet in servlet
I have a servlet and I want to run .java code through scriptlet. I have a simple class in Temp.java.
package pack;
import static java.lang.System.out;
public class Temp {
public static void ...
0
votes
1answer
99 views
using getRowIndex in scriplet
I'm trying to get the row index of a JSF data table in a scriplet.
With a JSF component, it works like a charm:
<h:outputText value="#{Operations.postsDataTable.rowIndex}" />
But when I use ...
0
votes
2answers
199 views
For loop over ResultSet#getFetchSize() in JSP doesn't produce any HTML
I have the following code:
<%
for (int i = 0; i < rs.getFetchSize(); i++) {
System.out.print("test");
//blah
%>
<div id="Test<%= ...
0
votes
1answer
2k views
ajax on aui:select liferay
I know this is impossible to pass parameter from javascript to scriptlet code in jsp page
So I want to use ajax to post my selected value to server and then get it in scriptlet code by request object
...
1
vote
3answers
189 views
JSP - what's the difference between “<% … %>” VS “<%= … %>”
While working with JSP files and servlets , I came across <% … %> and <%= … %> .
What's the difference between both cases ?
Thanks
3
votes
1answer
156 views
Eclipse isn't updating custom methods in JSP scriptlets
I'm editing a Dynamic Web Project, with a simple class in the project's /src folder, and a .jsp page to access it.
Within Eclipse, .jsp page only recognizes some of the methods in my class as ...
1
vote
1answer
429 views
The execution is repeated after refreshing the jsp page
i'm writing a jsp page that contain a button and i'm putting the code in scriptlet
every thing is good after running , but when i refresh the page the code is executed again without clicking on the ...
0
votes
1answer
212 views
How to get the path of an eclipse project in jsp page
How to get the path of my current project : it's a dynamic web application created with maven archetype .
I want to retrieve the path in my jsp page in scriptlet code , i used different codes but ...
0
votes
0answers
83 views
Changing GUI behaviour in a JSP from a scriptlet
I am new to JSP,html and scriptlets so I really don't know whether I am trying to do the right thing.
I have a Credentials.html as below where the user inputs login credentials
<body>
...
1
vote
0answers
131 views
why using java bean and not standard scriptlets
I'm studying Java EE and reading a chapter that talks about Javabeans, and jsp:setproperty.
The example is:
<jsp:useBean id="user1" class="User" />
<jsp:setProperty id="user1" ...
0
votes
2answers
499 views
Converting this scriptlet code to JSTL / EL?
I don't know how to recode this scriptlet code to JSTL / EL taglib. The statements are quite simple but it uses session data and make new objects which I don't know how to do in JSTL / EL. Is it ...
0
votes
4answers
5k views
Scriptlet in JSP - Accessing request objects
I know its best to use jstl in JSPS but I have been explicitly told to use scriptlets in this project.My question is that my servlet attached an item of Arraylist to the request object and i wanted to ...
0
votes
2answers
703 views
Javascript and scriptlet : can it be done? [duplicate]
Possible Duplicate:
How to use scriptlet inside javascript
<%
if(request.getAttribute("exception")!=null){%>
<script type="text/javascript" >
alert("hi");
...
0
votes
1answer
361 views
Using scriptlet or EL inside an attribute of a tag (Grails UI Plugin)
I want to trigger the same dialog on different ids in my gsp.
So here is the code:
<div class="yui3-widget-bd">
<g:each in="deployments" status="index" var="workflow">
<% ...
0
votes
1answer
702 views
Spring form — modelAttribute name as java constant
in order to not repeat myself in code I've used modelAttribute name as java constant
@Controller
@RequestMapping("/")
public class Controller {
public static final String MODEL_ATTRIBUTE = ...
0
votes
1answer
313 views
Unable to use value of a variable in javascript to assign a value to a java variable.
I have tried this many a times but unable to do this. first let me put my code. ::
<script type="text/javascript">
function delemp(v){
alert(v);
<%
String abc=%>v<%;
...
2
votes
1answer
1k views
How to use a javascript variable in scriptlet code.
I have a variable v which contains a string type value at any point of time . Now i want to use these variable v in database connectivity code.. in my SQL query in Where clause, Something like this ...
0
votes
1answer
352 views
Is it possible to call controller method from a scriptlet in Spring
I need to implement a call to a method that I have in my controller. But I want to call this method from a scriptlet and I don't know how to do it. I am trying to export data that I get from the ...
0
votes
0answers
995 views
JavaScript/ Scriptlet in a JSP
I have a button in a page JSP that remove some informations on the data base.
My problem is to validade if the data was selected by the user, if it's ok I need to show a confirm box on the page. I am ...
1
vote
0answers
219 views
shared expressions in scriptlet
We are using a scriptlet as a way to maintain global expressions that can be leveraged by a pool of iReport developers. Came across an issue where we have created a variable in the scriptlet that is ...
0
votes
1answer
427 views
Get the value of var in JSTL - Scriptlet
I want to call a static method in my jsp file using scriptlet and I want to get the value of variable in jstl like this :
<%= Utilities.splitString(${article.nommodel}); %>
It generates an ...


