Tagged Questions
1
vote
1answer
67 views
Call bean property with a variable in property name
I need to call a property like ${bean.data1A}, but where the number in the property name is a variable. Something like ${bean.data{$n}A}, but that evaluates to ${bean.data1A} when n == 1. How can I ...
0
votes
1answer
254 views
Getting Blank page while iterating through ArrayList in JSTL
Here is my Servlet in which adding the textbox values to an ArrayList. I am also using JavaBeans.
protected void doPost(HttpServletRequest request,
HttpServletResponse response) throws ...
0
votes
1answer
357 views
populating form fields on select of dropdown from java beans
i have an html form with 5 text fields.
i have an ArrayList of user objects created from a database query in a servlet.
i have populated a dropdown menu of selection choices using jstl and it ...
4
votes
1answer
1k views
Populating checkboxes in JSP page with data from a JavaBean
I have a JSP page with checkboxes inside an HTML form as below
Now while editing user Skill I want to take the comma separated values from the table and populate the checkboxes in JSP. The ...
0
votes
2answers
159 views
loop through an attribute from a javabean
I want to print all my products in a table on a JavaServer page but I have troubles with my jstl code.
My Model product:
public final class Product
{
private int id;
private String ...
2
votes
1answer
93 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 ...
0
votes
1answer
517 views
username password verification with DAO class WITHOUT SCRIPTLETS or java code in .jsp page
I want to just run a method in a javaBean class (its not a getter or setter method) it takes 2 parameters (username , password) and returns a boolean (after varifing it from the database(seperate DAO ...
0
votes
1answer
89 views
Best Practice for retrieving and iterating over one to many
I'm trying to produce a web page report of Orders Per Customer with line item details for each order.
So it looks like this:
Customer 1 | Order 1 | Item 1 |
| | == New ...
0
votes
1answer
103 views
Get attributes from java bean
I am new to jstl so this question might sound a bit stupid:
I am trying to use a jsp-tag to get a text from my text-database that is related to a certain key.
It should work kind of like this:
...
1
vote
2answers
384 views
NumberFormatException ArrayList size Javabean method in JSP with JSTL
Im a little new to JSTL and Javabeans so I'm having a lot of trouble figuring this one out.
I have an index.jsp, a class called CustomerScheme which extends an ArrayList, and a test.jsp which im ...
1
vote
1answer
239 views
Set value of bean attribute on Drop Down selection: Spring
I am using JSTL to populate drop down items, where country is an item having { id, name, code } attributes.
My need is to get name and code for selected country.
for example:
Country{c_id, c_name, ...
0
votes
1answer
270 views
How do I pass a specific bean from one JSP file to another only if the button corresponding to that bean was pressed?
I'm trying to pass a bean from one JSP page to another. The source page is the results of a search. The JSP page uses JSTL to print out specific contents of each bean from an ArrayList (returnedPubs) ...
0
votes
1answer
188 views
How to call a bean method with a parameter which is passed as an attribute
<c:out value="${sessionScope.controller.getQuestion(${requestScope.questionNumber})}"/>
where
controller is a bean
getQuestion is a method of a bean
questionNumber is an attribute
when i ...
1
vote
1answer
178 views
JSP, JSTL, Bean Inheritance, and PropertyNotFoundException
I have two JavaBeans.
User
Engineer
Engineer extends User.
User contains this property:
public String getName() { return name; }
My JSP contains:
<c:forEach var="engineer" ...
0
votes
2answers
6k views
need help using <c:forEach> in JSP/JSTL
Ok, what I am trying to do is iterate through a 2d array of integers and represent them in a grid using the tag. The catch is that I am not allowed to use any java-script. I know it is something to ...
1
vote
1answer
172 views
Use enum to retrieve page bean
Consider the following two examples:
<c:if test="${errorMessage!=null}">
Welcome <c:out value="${homePageBean.currentUserName}"/>
When I look at examples of Spring controller to ...
0
votes
1answer
92 views
What is the right way to call values from a bean in jsp page?
I am working on a java MVC project. Currently i've a login.jsp, profile.jsp, ``CheckLogin servlet, User.java bean class and UserDAO dao class (the beans and jsp's and all other things are to be added ...
1
vote
1answer
305 views
Pass JavaBean to Struts 1 tiles
I just started developing a web application using struts 1.3.10 tiles framework. There is something I am not so clear.
Suppose I have a tiles definition in tiles-def.xml:
<definition name="body" ...
0
votes
5answers
351 views
java if statement inconsitency
I've got an if statement in a bean that seems to be processing fine when I create a test java class, but doesn't work fine when the bean is invoked by a jsp.
My code, let me shows you it:
First, the ...
1
vote
1answer
655 views
SetProperty: Mandatory attribute property missing
Ok, first some code. Here's the contents of my displayCollection.tag:
<%@ tag body-content="scriptless" import="com.serco.inquire.*" %>
<%@ taglib prefix="c" ...
0
votes
2answers
173 views
What actually means “value” in JSP?
I have read JSP recently, and have a doubt in the javabeans technolgy it uses. Lets say that the following JavaBeans code :
package mortgage;
public class Mortgage
{
private double amount = -1.0;
...
1
vote
1answer
566 views
Cannot display a collection of beans in JSTL
I have this Bean
public class Bank {
private String id;
private String bankname;
public void setId(String id){
this.id = id;
}
public void setBankname(String name){
...
1
vote
1answer
12k views
how to access array list in jsp , if i pass bean
I am new to JSTL. How can i use JSTL <c:foreach> inside jsp if i pass below sample bean
class B{
private String value="";
private ArrayList arrayVals;
public String getvalue(){
...
0
votes
1answer
5k views
java.lang.NoSuchMethodError:javax.servlet.jsp.PageContext.getELContext()Ljavax/el/ELContex
Hi
i have this code which is not working.
<jsp:useBean id="abbreviationlist" class="AbbreviationListType"/>
<jsp:setProperty name="abbreviationlist" property="id"/>
...
1
vote
2answers
1k views
Equivalent to Struts 1.x “bean:define” tag?
I'm working on converting an old Struts 1.x application to Spring MVC and in some of the JSP pages, the bean:define tag is being used to get a string from a resource bundle, and is then used later in ...
0
votes
2answers
2k views
Saving a PNG file on a server in a Java bean, using JSTL
I am writing an update page in JSTL where the user inputs some numbers. I then call a java bean - passing the numbers as parameters - which, using JFreeChart, creates a PNG image. All of this works ...
8
votes
4answers
36k views
redirect from jsf?
I am working on application with jsp, jstl and jsf for my college project, thats being said, I am as well very new to jsf.
Everything is going great so far. However, I seems to have a problem ...
1
vote
5answers
421 views
Strange behaviour of ArrayList
I am writing a website using JSP, JSTL, Servlets and JavaBeans.
At one point of my code, I am trying to use an ArrayList of objects, and a strange thing is happening: when I add the first object it ...