0
votes
0answers
13 views

Automatically instantiate Objects and set Value for a given Path

I want to set values by a given Path String in a nested Java Object structure. If a collction property dosen't exists the property should get automatically instantiated: public class A { ...
0
votes
1answer
25 views

JSF SelectOneMenu get Entity

I am trying to obtain a Customer entity from a JSF SelectOneMenu component: The classes I have are as follows: Customer Entity @Entity @Table(name="CUSTOMERS") @NamedQuery(name="Customer.findAll", ...
2
votes
2answers
39 views

How can I ensure my bean is built correctly?

I'm building a JavaBean (only fields and getters/setters) using the builder pattern. For the sake of this example, assume this is our bean: public class Pizza { private int size; private boolean ...
0
votes
1answer
45 views

cannot load the oracle driver

hey guys one more question following is the informations tell me in comments if more info is needed INFO: Destroying singletons in ...
0
votes
1answer
13 views

Apache BeanUtils : create dynamic bean from HttpServletRequest

I am using this code to create dynamic bean out of the result set - RowSetDynaClass rsdc = new RowSetDynaClass(rset,false,1); List row = rsdc.getRows(); DynaBean bean = (DynaBean) row.get(0); This ...
1
vote
3answers
39 views

convert SQL table to java bean class

I'm working in web application using a huge number of SQL tables. I need to create for each table a java bean class. I'm searching for a tool that can convert SQL table to a java bean class. It will ...
0
votes
1answer
22 views

Getter for mutable object

I read many articles as how to write right getter/ setter for mutable object as Date or Array. But when I changed this on public Date getDateTo() { return (Date) dateTo.clone(); } ...
1
vote
1answer
51 views

Setting correct value to JSF element

I'm trying to acces an JSF Element from a Java Bean, so I can use it in my app, but I need to send the text from a textarea to a <f:setPropertyActionListener /> The problem is that I don't know ...
-1
votes
1answer
64 views

inserting data from html page into database

ggggggggggggggggggggggggggggggggggggggggggggggggggggggg
0
votes
2answers
41 views

Inserting data from a user into a database

aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
0
votes
1answer
22 views

Setting up simple struts 1.3 project, cannot find bean in ant scope

I am just starting out with struts to maintain a struts 1.3 application and after setting everything up and deploying my hello world application I get the following error: ...
0
votes
0answers
20 views

Can i get both itemValue and Value from selecItems in jsf? [duplicate]

<ice:selectOneMenu> <f:selectItems itemValue="#{CountryB.countryCode}" value="#{CountryB.countryName}"></f:selectItems> </ice:selectOneMenu> its that possible to get ...
0
votes
1answer
24 views

EL can't handle a single character before an underscore?

I am using EL to pull an object from a bean stored in the session. The object is question is called P_COV_MOULT and is declared as follows: this.P_COV_MOULT = new FormField("F_B_P_COV_MOULT",""); ...
0
votes
0answers
25 views

How to call a method in helper using bean defined in servlet.xml?

I am writing Junit test cases for a Helper class. The bean to this "helper" class is defined in servlet.xml. But when i simply use the bean as : @Resource Helper helper; It throws an exception. So, ...
1
vote
3answers
101 views

Looking up data in database from user

mk;kjhhgiulhohojoioippojjpfgfdfsfdsfs
-1
votes
0answers
30 views

Export java to excel with popup window [closed]

I have a java bean code. This code has been successfully exported to an excel file, but I want a pop up window (Open, Save, Cancel) appears before download to hard drive. (I write this to give action ...
-1
votes
0answers
57 views

how to handle null java bean struts2

I have a login page which gets userId and password information, these information were stored in accountBean (please see index.jsp) index.jsp <s:form action="login.action" method="post"> ...
0
votes
0answers
14 views

Convert HTML table into Java Bean using BeanUtils.populate

I have an HTML table that has been populated with phone data. <page:application title="Borrower" bean="${sessionScope.applicationBean}" selected="borrower"> <table cellpadding="0" ...
0
votes
1answer
43 views

Java/JSP iteration with/without bean

I have a quick question on iterating over an array list from a class file onto jsp file. Snippet from a class file: ArrayList al = new ArrayList(); public ArrayList getStatus() { Object o; ...
0
votes
1answer
79 views

Cannot cast from Vector<Object> to Integer

I am trying to display all results from a database but i get the following errors on the results loop: Cannot cast from Vector to Integer Cannot cast from Vector to String <% ...
0
votes
1answer
49 views

How to access List's properties in Spring EL?

EL tries to interpret property name as List index and fails. How to access List's normal bean properties if they are exist? UPDATE I had my own class public class Directory extends ...
0
votes
1answer
38 views

How to access bean from controller in Spring MVC?

I have bean <bean class="myprogram.FileList"> defined. Now I wish this bean to be accessible from JSP. How to accomplish this? First thought is to access bean somewhere in the controller ...
0
votes
2answers
30 views

Java Bean Serialization Library

This is a rather simple issue but I'm having my head against the wall on this one. I'm looking for a way to serialize/deserialize a large number of Java beans into any file format. The key though ...
1
vote
4answers
51 views

Java Reflection - how to set value for the class which are extended from One and Two

Goal : set the value for a class fields as well the extended class fields Example : public class CreateRequisitionRO extends AbstractPortfolioSpecificRO {....} i am able to set value for the ...
7
votes
2answers
93 views

SimpleStringProperty set() vs. setValue()

What is the difference between set(String) and setValue(String) in the SimpleStringProperty class? I know that set(String) is derived from StringPropertyBase, but this makes me even more wonder, why ...
1
vote
1answer
29 views

doPost and getParameter()

First timer here on StackOverflow. I have a question concerning req.getParamter. I have a class Alumni(). Within this Alumni class I have a PersonalAddress class that is used to store things like the ...
0
votes
1answer
43 views

Bean scope not working

The code shows that I want to create a loginBean that's sessions scoped. I'll show the applicationContext too and also the service and dao because there may also be a configuration error in them. I ...
0
votes
1answer
28 views

Passing <br /> in bean variable to print in <h:outputLabel />

What I have is <h:outputLabel value="#{userInfo.totalExp}" /> Below is what I want as output Total - 10 Years 2 Months U.A.E - 5 Years 0 Months India - 5 Years 2 Months For this in bean, I ...
3
votes
1answer
41 views

i get the next output :The class 'misBeans.Datos' does not have a readable property 'enlace'

the source code of the bean is as follow: http://pastebin.com/XprXdJsP the facelet is the next one: http://pastebin.com/Z7NKhpwe the output that i get is the next one: javax.el.ELException: ...
0
votes
1answer
177 views

Java - Servlet, Carry login information throughout project (session bean)

I have a login servlet, it works fine. But I would like for multiple servlets to be able to access the userID, valid, & facultyCB values to do different functions. I know the best way is with a ...
0
votes
2answers
79 views

Servlet passing empty array to JSP?

I have created a web application that uses a login page, a servlet, a managed bean, and a jsp page. No matter what I have tried I cannot get the JSP page to display an array of item names from my ...
1
vote
0answers
121 views

Display messages in JSP, When java bean class get affected?

Please don't hesitate edit my question , If it is not clear. Currently I have a situation When my server sends any response,I need to reflect the message in the JSP when my bean class changes. My ...
0
votes
1answer
40 views

How can I turn off extra logging?

I have a Java service that uses Spring and CXF. The code is from a previous developer and I'm providing maintenance, but I'm seeing this in the logs -------------------------------------- Apr 16, ...
1
vote
1answer
49 views

Using Servlets, JSB and JavaBeans (MVC)

For an assignment in "Web Engineering" we have to use Servlets, Java Server Pages and Java Beans. (I know JSB is more or less deprecated, but we have to use it for training) Basically we have a ...
-1
votes
1answer
62 views

iterate result set to create object as required

Hello guys.I have following result set and now i want it to be saved in a java bean.I have two java beans(pojo). public class Topic{ private int topic_id; private String topic; private ...
-1
votes
2answers
63 views

Login Servlet With Persistant bean - Java, JSP, servlet [closed]

I want to make a login servlet create a bean that is persistent. I mainly just need to store/retrieve userID once they successfully log in for multiple queries across the application. Unfortunately, I ...
0
votes
3answers
110 views

Java Beans with Request and Session Scope

I want to create a web app which makes it possible to add friends into a list. For this reason I use JSF and Java Beans but now I have some serious problems. First of all I created a friend class: ...
1
vote
1answer
71 views

JSF SessionScoped Property not set

I'm using a SessionScoped bean for storing my Client object that i retreive from a ClientService thats using JPA. When my webpage is loaded i pass a GET Id parameter for retreiving the correct Client ...
0
votes
1answer
87 views

How JSP Expression sets bean property of type Object

I have a jsp file and a bean file. I learnt how primitive data types are converted using 'valueOf' method and the bean property is set , however i am still confused how class type values are set. The ...
0
votes
2answers
102 views

ClassFormatError: Absent Code attribute in method that is not native or abstract in class file javax/mail/MessagingException

i am getting a strange classformatError when using the javaMail api to send email on my spirng mvc web app. Below is my mail-cfg.xml <?xml version="1.0" encoding="UTF-8"?> <beans ...
0
votes
2answers
66 views

Showing wrapped bean property in JavaFX TableView

I'm trying use a TableView to show some data the user created, but, unfortunately, some specifics columns contents aren't shown. The columns with problem are a kind of two level bean, or in another ...
1
vote
3answers
166 views

Accessing request scoped bean

I declared a request scoped bean in a jsp page and tried to access it another page. I was able to access the bean on another page using scriptlet as well as EL , however it got an exception if used ...
3
votes
2answers
71 views

How to set a Property (i.e. through BeanUtils) without knowing it's type

I need to set some properties of a JavaBean. I have a generic Map<String, String> where the first String is the Name of the property and the second one represents it's value. Now if the map ...
1
vote
2answers
107 views

Managed Bean - Only execute code on page load

I'm curious about how to get JSF to only load certain business logic on page load and not run this code when I click a button (ActionEvent) or execute an AjaxBehaviorEvent. My bean is in ...
1
vote
1answer
150 views

Java Bean Persistence with XMLEncoder

I've written a bean class containing a HashMultiMap (from the Guava library). I would like to XML encode the bean using the JRE's XMLEncoder. Using a custom PersistenceDelegate I've successfully ...
-2
votes
1answer
125 views

what's the difference between managed bean and spring controller?

I am developing spring-hibernate-jsf application but i dont understand the difference between a managedbean and a spring controller. I think managedbeans work like controllers. Is there any advantage ...
2
votes
1answer
65 views

The value for the useBean class Student is invalid

I've found many questions with my same title, but no one was helpful. I am trying to run a JSP page that should load a class, but I am getting this error: I see many questions answered with ...
0
votes
0answers
55 views

Java Beans Creation

I am creating a Beans Program named "Colors". The class and java file are placed at the following path : C:\BDK1.1\demo\sunw\demo\Colors The source code is as follows (Colors.java) package ...
0
votes
1answer
69 views

Create JSP with XML Through an Array

After creating a Dynamic Web Project in Eclipse, I created some JavaBean classes and for each class a JSP file, which will return an XML. Such as: The bean: package com.beans; public class Program ...
2
votes
3answers
79 views

GWT RF: How to share the same code in client and server

I would like to use the same code to sort and manipulate objects in client and server sides. But I am facing a problem since in client we need a proxy interface representing the class of the server. ...

1 2 3 4 5 18