JSTL Session Hash Map containing Objects - How to print Objects - java

I have a Servlet that gathers form data, makes a database query, retrieves the data, and puts it into a Hash Map. Such as below:
ResultSet rs = d.execute(SQL);
// Get session and and create hash map (fhMap is flight-hash-map)
HttpSession session = request.getSession();
HashMap<Long, UserFlightsBean> fhMap = new HashMap<Long, UserFlightsBean>();
while(rs.next()) {
int FlightNumber = rs.getInt("FlightNumber");
String Operator = rs.getString("Operator");
String Source = rs.getString("Source");
String DepartureTime = rs.getString("DepartureTime");
String Destination = rs.getString("Destination");
String ArrivalTime = rs.getString("ArrivalTime");
int Cost = rs.getInt("Cost");
int Seats = rs.getInt("SeatsAvailable");
// Get session, get UserFlightsBean, set session UserFlightsBean
UserFlightsBean ufb = new UserFlightsBean(FlightNumber, Operator, Source, DepartureTime, Destination, ArrivalTime, Cost, Seats);
fhMap.put((long) FlightNumber, ufb);
System.out.println(FlightNumber + "\t" + Operator + "\t" + Source + "\t" + DepartureTime + "\t" + Destination + "\t" + ArrivalTime + "\t" + Cost + "\t" + Seats + "\t");
}
// Add hash map "fhMap" to session bean
session.setAttribute("fhMap", fhMap);
As you can see, I create an object with the query, each row from the database is an object which I put into the hash map, then I add the hash map to the session so that I can access it on my jsp page.
On the jsp page I get the session hash map and now I'm trying to print out the elements of the objects, and this is where my problem lies. My code for the jsp page is below:
<%
HashMap <Long, UserFlightsBean> printMap = (HashMap <Long, UserFlightsBean>)session.getAttribute("fhMap");
pageContext.setAttribute("objects", printMap);
%>
<c:forEach items="${objects}" var="entry">
Key is ${entry.key} <%-- these two for testing purposes --%>
value = ${entry.value}<br>
<ul>
<c:forEach var="junk" items="${value.UserFlightsBean}">
<li>${junk.getFlightNumber()}</li>
</c:forEach>
</ul>
</c:forEach>
So what I'm trying to do is print (into a <li>) all the variables that are contained in that object. I've searched everywhere online, scowered the Stack Overflow waters, and cannot find out how to do this.
Thanks for any help one may provide!

Here , what i can understand, you need not to use inner loop...
You can write code like this:
`<c:forEach items="${objects}" var="entry">
Key is ${entry.key} <%-- these two for testing purposes --%>
<ul>
<li>${entry.value.getFlightNumber()}</li>
<li>${entry.value.getOperator()}</li>
<li>${entry.value.getSource()}</li>
</ul>
</c:forEach>`

Related

Why isn't my List<Object> displaying on my webpage?

I'm trying to display the contents of a List<> of objects that are linked to the currently logged in user on a jsp page. The object is successfully created and stored in the database with a user_id of the user who created it, and with a simple system.out.print debugger I can see its added to the List.
But when I try to display this on the NewFile.jsp webpage its as if the the List is empty. There is no error, instead the page is just blank as if there is no List to iterate through.
Skill method in UserController
#RequestMapping(value = "/skill", method = RequestMethod.POST)
public String skill(#ModelAttribute("skillForm") Skill skillForm, BindingResult bindingResult, Model model, Principal principal) {
skillValidator.validate(skillForm, bindingResult);
if (bindingResult.hasErrors()) {
return "skill";
}
// Adds skill object to database and adding it to Users skill list
String name = principal.getName();
skillService.save(skillForm, name);
User currentUser = userService.findByUsername(principal.getName());
currentUser.addSkill(skillForm);
// Debug here shows that the list contains correct data and the list size
System.out.println(skillForm.getSkillName());
System.out.println(skillForm.getCategory());
System.out.println(currentUser.getSkills().size());
// Attempting to pass the list to NewFile.jsp to be displayed
List<Skill> savedSkills = currentUser.getSkills();
for(int i = 0; i < savedSkills.size(); i++) {
model.addAttribute("skills", savedSkills);
/*model.addAttribute("currentUser", currentUser);*/
}
return "NewFile";
}
NewFile.jsp
<table>
<c:forEach var="o" items="${savedSkills}" >
<tr>
<td>Skill Name:<c:out value = "${o.skillName}"/></td>
<td>Category:<c:out value = "${o.category}"/> </td>
</tr>
</c:forEach>
</table>
There are some mistakes. First you don't need a loop.
List<Skill> savedSkills = currentUser.getSkills();
model.addAttribute("skills", savedSkills);
Second, your EL has the wrong argument name, just like the others had stated.
<c:forEach var="o" items="${skills}" >
You need to specify what skill to be added , you are adding the List as an attribute but you need to the object that's inside it
for(int i = 0; i < savedSkills.size(); i++) {
model.addAttribute("skills", savedSkills[i]);
/*model.addAttribute("currentUser", currentUser);*/
}
Try by adding the code model.addAttribute("savedSkills", savedSkills); before the return statement. You haven't add the model attribute named with "savedSkills".

Spring MVC displaying arraylist in JSP correctly

i have a problem whith the displaying of an arraylist in jsp. it displays everything in one line for each person making repetition .
i have a table with columns (phone number,fax,phone2,email)
here is my dao function:
#Override
public ArrayList<String> moyenCom(Authentication auth) {
String login=auth.getName();
List list;
List listres = null;
ArrayList<String> array1=new ArrayList<String>();
//ArrayList<ArrayList<String>> array=new ArrayList<ArrayList<String>>();
SessionFactory factory=new Configuration().configure().buildSessionFactory();
Session session=factory.openSession();
session.beginTransaction();
//Your operation
String sql1="select r.id_responsable from WEBCARE.PERSONNE p,WEBCARE.RESPONSABLE r,WBB_CLU.ABONNE_COMPTE ac,WBB_CLU.COMPTE_CLU c where p.id=r.id_responsable and r.id_abonne=ac.id_abonne and c.id_compte=ac.id_compte and c.login=:x";
SQLQuery query1 = session.createSQLQuery(sql1);
query1.setParameter("x",login);
query1.setResultTransformer(Criteria.ALIAS_TO_ENTITY_MAP);
session.getTransaction().commit();
list=query1.list();
for(int i=0;i<list.size();i++){
String res =list.get(i).toString();
String[] parts = res.split("=");
String part2 = parts[1];
System.out.println("id du responsable est"+res);
System.out.println("id du responsable spliteeee est "+part2);
session.beginTransaction();
String sql="select mc.information from WEBCARE.MOYEN_COMMUNICATION mc,WEBCARE.PERSONNE p where p.id=mc.id_categorie and mc.id_categorie=:part2 and mc.categorie=1";
SQLQuery query = session.createSQLQuery(sql);
query.setParameter("part2",part2);
query.setResultTransformer(Criteria.ALIAS_TO_ENTITY_MAP);
session.getTransaction().commit();
listres=query.list();
for(int i1=0;i1<listres.size();i1++){
String resu =listres.get(i1).toString();
System.out.println("info "+resu);
array1.add(resu);
}
}
System.out.println(array1);
return array1;
}
my controller :
#RequestMapping("/fichets")
public String fichets(Model model,Authentication auth){
Authentication authen = SecurityContextHolder.getContext().getAuthentication();
String name = authen.getName(); //get logged in username
model.addAttribute("moycoms",metier.moyenCom(auth));
return "InfoAbonneTS";
}
and my jsp page :
<c:forEach items="${resps}" var="resp">
<tr>
<td id="date">${resp.nom} ${resp.prenom}</td>
<td>${resp.poste}</td>
<td>${resp.password}</td>
<c:forEach items="${moycoms}" var="moycom">
<td>${moycom}</td>
</c:forEach>
</tr>
</tbody>
</c:forEach>
The function returns the field information witch contains all the 4 informations that should be displayed each in every column.
arraylist returned is :
{information=01234567890}, {information=01999999999}, {information=0199999333}, {information=resp1#gmail.com}, {information=00 }, {information=0622355114}, {information=0588888888}, {information=respons3#gmail.com}, {information=00 }, {information=0111111111}, {information=0666666666}, {information=responsable4#gmail.com}
so the first four information should be displayed each in every column ,the second four same thing...in this example i have 3 persons.
i can't display this correctly any help?
resps is for displaying the first 3 columns
Looking at the data it looks like a List of Map. Try this code
<c:forEach items="${moycoms}" var="moycom" varStatus="stat">
<c:if test="${stat.index%4==0 && stat.index!=0}">
<tr>
</c:if>
<td>${moycom['information']}</td>
<c:if test="${stat.index%4==0 && stat.index!=0}">
</tr>
</c:if>
</c:forEach>
stat variable is used to find the current index. We are adding the <tr> based on the index so that its done for every fourth index. If resp contains some identifier which could be used for finding the correct user then use <c:if> for matching. Please provide additional information
you are adding only "moycoms" attribute to the model object
but you jstl starts from
<c:forEach items="${resps}" var="resp">
you are not adding any "resps" param in your model object

Add To Cart Doesn't Work

Hi I am trying to implement Add To Cart Mechanism in my web Application.
So that's why temporary i have created 3 JSP pages that implement such mechanism. But it is not working properly.
I have also created session uniquely for to identify specific user session but it is not actually implemented in all page.
Following Is My Code :
test.jsp
<%
Random rkey = new Random();
int randomkey = Math.abs(rkey.nextInt());
String sdata = "keyur"+randomkey;
DateFormat dateFormat = new SimpleDateFormat("HHmmss");
Calendar cal = Calendar.getInstance();
String sess = "keyur"+randomkey+dateFormat.format(cal.getTime());
session.setAttribute("KEYUR", sess);
%>
<% response.sendRedirect("test1.jsp"); %>
test1.jsp
Hello <%= session.getAttribute("KEYUR")%>
<%
String a="shirt",b="jeans";
int a1 = 10,b1=20;
Double a2=100.00,b2=200.00;
%>
<br><br>
A : Add To Cart<br><br>
A1 : Add To Cart
test2.jsp
Hello <%= session.getAttribute("KEYUR")%><br><br><br><br>
Your Cart :
<%
List<String> pname = new ArrayList<String>();
List<Integer> pqty = new ArrayList<Integer>();
List<Double> ppr = new ArrayList<Double>();
%>
<%
pname.add(request.getParameter("item"));
pqty.add(Integer.parseInt(request.getParameter("qty")));
ppr.add(Double.parseDouble(request.getParameter("price")));
Double total=0.00;
%>
<br><br>
<%
for(int i = 0;i < pname.size();i++)
{
String name = pname.get(i);
Integer qty1 = pqty.get(i);
Double pr1 = ppr.get(i);
%>
Name : <%= name %><br>
Qty : <%= qty1 %><br>
Price : <%= pr1 %><br><br>
Total : <%= total += qty1*pr1 %>
<%
}
%>
Right now i have taken static data, if it will work then I'll try it with dynamic data.
Anyone tell me why only one item display in cart.
Suppose user click on Add To Cart then it redirect to test2.jsp and again back to test1.jsp then click on second add to cart then cart should be appended not overwrite.
But currently it is overwriting.
Any Suggestion Please...
test2.jsp
List<String> pname = new ArrayList<String>(); //size is 0
...
pname.add(request.getParameter("item")); //size is 1
That's why you get just one item.
By the way, make your self a favour, don't use JSP scriptlets; use JSTL or write your own tags (look for Java Custom tags)
This procudure looking very Bad codding for store a cart items...
But still you can store as many you want in List
In your page when every time a Test2.jsp called the new keywprd initilize a new cart lists..
thats why previous value get losts....
instead of this code
<%
List<String> pname = new ArrayList<String>()
List<Integer> pqty = new ArrayList<Integer>();
List<Double> ppr = new ArrayList<Double>();
%>
use deceleration block for decleration
<%!
List<String> pname = new ArrayList<String>();
List<Integer> pqty = new ArrayList<Integer>();
List<Double> ppr = new ArrayList<Double>();
%>
after that you can store as many you want ....But there will be possible some duplicate values...to remove duplicate you can use Set at the place of List
I think you have got your query's answer.....
The reason why only one item is displayed is because you are inserting only one item in Lists pname, pqty, ppr.
Use a for loop in-order to insert. So that it contains multiple orders or items..
Hope it will help.

Get Value of dynamically create dropdownlist in JSP

I am new to JSP and servlet for 1 month, and there are many things that I am still unsure off.. Inside a JSP, I have a dropdownlist(the values inside are grab from database) and it would be dynamically created on the number that the user keyed in. Example, the user key in 3, this digit would store in session, and 3 dropdownlist would be generated.
I am able to do this, however I am unable to grab the value of all the 3 dropdownlist in a servlet. and instead of getting 3 diff values, the output repeat the value of the first dropdownlist. Example "john,john,john" instead of "john, ken, andy".
JSP code:
<form action="Adding" method="post">
<%
session = request.getSession();
ProjectGroup projGrp1 = (ProjectGroup)session.getAttribute("PROJECTNAME");
//getMaxMember is the int that user keyed in
int staff =projGrp1.getMaxMember();
for(int i = 0; i < staff; i++) {
%>
<select name="list1" >
<%#page import="sit.bean.*,sit.data.*"%>
<%
GroupTaskManager mgr3 = new GroupTaskManager();
GroupTask[] at3 = mgr3.getCheckBox();
for(int g = 0; g < at3.length; g++) {
%>
<option><%=at3[g].getStaffName()%></option>
<%
}
%>
</select>
<%
}
%>
<input type="submit" name="submit">
</form>
In servlet:
protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
HttpSession session = request.getSession();
ProjectGroup projGrp = (ProjectGroup)session.getAttribute("PROJECTNAME");
int member = projGrp.getMaxMember();
String total = null;
for(int i=0; i< member; i++)
{
String names = request.getParameter("list1");
total += names + " , ";
}
PrintWriter pw = response.getWriter();
pw.write("<HTML><BODY>");
pw.write(total);
pw.write("</HTML></BODY>");
pw.close();
}
Can i set the downdownlist name like "list<%i%>", to set different id to each downdownlist? therefore i can retrieve each of them seperately???
In servlet you are getting same parameter every time which is list1 in loop.
and also in JSP creating dropdownlist with same name attribute,
that's why you are getting john,john,john instead of john, ken, andy.
Yes you can use list<%i%> to set different id as well as name
change your select with below in JSP
<select name="list<%=i%>" >
and for loop in servlet with below
for(int i=0; i< member; i++)
{
String names = request.getParameter("list1"+i);
total += names + " , ";
}

Servlet Jsp Array Printing Links

I have a java servlet that passes an array to a jsp page, on that jsp page it displays a bunch of results. What I am trying to do is when it prints out it prints a link so I can use it as a parameter. In my case it prints out a bunch of lab classes, what i want to happen is they click the link related to that lab then i click the link and can use that lab.id in a sql statement.
here is the code for the array being printed out
here is the servlet
private void sendBack(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
HttpSession session = request.getSession(true);
//Set data you want to send back to the request (will be forwarded to the page)
//Can set string, int, list, array etc.
//Set data you want to send back to the request (will be forwarded to the page)
//Can set string, int, list, array etc.
String sql = "SELECT s.name, l.time, l.day, l.room" +
" FROM lab l, subject s, user_lab ul" +
" WHERE ul.user_id=" + (Integer)session.getAttribute("id") +" AND ul.lab_id ="+ "l.id"+" AND l.subject_id ="+"s.id";
try{
Connection con = DriverManager.getConnection("jdbc:mysql://localhost:3306/wae","root","");
System.out.println("got boobs");
System.out.println(session.getAttribute("id"));
Statement stmt = con.createStatement();
ResultSet res = stmt.executeQuery(sql);
System.out.println(res);
ArrayList<String> list1 = new ArrayList<String>();
if (res.next()){
do{
list1.add(res.getString(1) + " " + res.getString(2) +" "+ res.getString(3) + " " + res.getString(4));
System.out.print(res.getString(1) + res.getString(2));
}while(res.next());
System.out.println("Outside");
String[] arr = list1.toArray(new String[list1.size()]);
request.setAttribute("res", arr);
}
}catch (SQLException e) {
}
catch (Exception e) {
}
//Decides what page to send the request data to
RequestDispatcher view = request.getRequestDispatcher("Lecturer_labs.jsp");
//Forward to the page and pass the request and response information
view.forward(request, response);
and here is the jsp page
<h3>Manage Labs</h3>
<table>
<% String[] list1 = (String[])request.getAttribute("res");
if(null == list1){%>
<%
}else{
for(int i=0; i<list1.length; i++)
{ %>
<tr><%out.println(list1[i] + "<br/>");%></tr>
<% }
}
%>
</table>
so how can I get it to print the results as a link that passes a parameter
To display the results as a link that pass the parameter id, each link could look like:
Link <%out.println(list1[i]);%>
but look how clunky this looks.
JSTL tags can eliminate all this scriptlet code:
<c:forEach items="${res}" var="id">
<tr><td>Link ${id}</td></tr>
</c:forEach>

Categories

Resources