A javabean is a custom class which often represents real-world data and encapsulates private properties by public getter and setter methods. For example, User, Product, Order, etc.

learn more… | top users | synonyms (2)

0
votes
0answers
7 views

Auto generation form issue vaadin with many to one field — Select field shows objects hash code

I tried to auto generate a form using the JPA container. For a many to one entity, it fills the select box with hash code as shown - Is it possible to have some other parameter of the mapped entity ...
1
vote
0answers
15 views

JBoss7 and Beans - required jars appear not to be used

We are trying to create a functional example with Hibernate, JBoss7, Beans and Servlets using Eclipse as an IDE. In other example project we were able to make functional Servlets, and we were able to ...
3
votes
3answers
39 views

Autowiring Spring superclass

Why does Spring automatically choose the superclass types during autowiring? For instance, if I have @Component public class Foo {} @Component public class Bar extends Foo {} and someone ...
0
votes
1answer
32 views

org.springframework.beans.factory.BeanCreationException: Error creating bean

I am trying to configure Spring Framework 2.5.6.SEC01 + JPA using Hibernate, but I am getting an exception while spring tries to create a Bean , my xml and the error stack trace below: Note : in ...
1
vote
0answers
27 views

JSF and Primefaces; form not passing validation

Disclaimer: school project. Hello, I'm having a strange issue which has hold me back for days. The project im working on is a car tracking and paying system. I'm trying to add a web page to my ...
0
votes
1answer
10 views

spring destroy bean manually instead of ctx.close()

is it possible to tell the container of spring to destroy a specific bean (prototype) in order to save up memory? I dont want to user ctx.close() in order to see this bean destroyed, but rather on ...
0
votes
1answer
24 views

spring - should every class in my project be a bean?

In my project there are several @repositories , @Services, @Controllers My question is for the other 99% of the classes: Should i declare them as beans as well? pros\cons? thanks..
1
vote
1answer
24 views

Accessing my Spring session from a JSP

So, I'm using Spring, and I have the following in my spring-servlet.xml: <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver"> <property name="prefix" ...
1
vote
2answers
22 views

Spring 3 — NoSuchBeanDefinitionException

I have the following code in a custom tag. public void doTag() throws JspException, IOException { PageContext pageContext = (PageContext) getJspContext(); ApplicationContext ...
0
votes
1answer
23 views

Unable to resolve org.eclipse.persistence.exceptions.EntityManagerSetupException

I am trying to run the maven project, i am able to deploy the project but after deploying the project when i click any function to perform an operation it shows following exception: root cause: ...
0
votes
1answer
42 views

Spring managed object always null. wicket framework

today I have had an infuriating problem as follows: I have a wicket based application where I am using spring to manage the objects connecting the application to the database, in the past this has ...
0
votes
0answers
16 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 { ...
-1
votes
2answers
50 views

Accessing bean from Jsp

I searched on this forum but haven't got appropriate solution. And if by mistake this one is duplicate then sorry. Coming to problem... I'm setting the values from one of my HTML using servlet like ...
0
votes
2answers
39 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", ...
0
votes
1answer
12 views

Null object passed to an action on seam repeater

I have in a seam page for a table rows used a repeater like this: <a4j:repeat id="r1279186" value="#{PatientList.entities}" var="Patient" rowKeyVar="rowIndex" > <tr> <td> ...
0
votes
1answer
31 views

JAVA Google App Engine + Facebook API + GSON = Trouble with Javabean

I am trying to get the user's friends list from Facebook. The problem seems to be the Javabean... FBUser fbuser = new Gson().fromJson(jsonStr, FBUser.class); public class FBUser implements ...
2
votes
2answers
42 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
46 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
0answers
20 views

Richfaces does not get submit code when adding select in the xhtml file

I am having the following problem: there is a xhtml page which contains a form. When this form is submitted by a button it calls to my pagebean and saves the values submitted to my database. But since ...
0
votes
1answer
16 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
40 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
52 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
67 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
0answers
65 views

How to pass form data from jsp to javabean?

I'm currently creating a small web application using HTML, JSP and Javabeans and I'm fairly new to this. I am wanting to use the HTML form data passed to the JSP to be then passed to the Javabean to ...
0
votes
1answer
34 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
25 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
27 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
42 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
60 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
15 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
0answers
31 views

Display particular data record using JSF <h:commandLink>

I have a list of books which are stored in database. when i click any one record to see the details of that book, it displays all the book details stored in database. Following figures shows more ...
0
votes
1answer
50 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
80 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
51 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
42 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
36 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 ...
0
votes
1answer
183 views

How to display Arraylist of bean objects on JSP page

I am tring to display Arraylist of bean objects into an HTML table (JSP Page). Please help me where I am going wrong. This is the code which is creating a bean object which have the data from ...
0
votes
1answer
41 views

Update JSF Page when a XYZ variable changes in Session Scoped Bean

I am using; primefaces 3.5 jsf2.0 glassfish3.1.2 My jsf page displays information with the help of <h:outputText value="#{myBean.valueThatMayChange}"/>. I want to update this information on ...
1
vote
4answers
59 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 ...
1
vote
0answers
10 views

Corresponding features between .NET and Java EE [duplicate]

Can you tell me which components of .NET are the corresponding with beans (Entity Bean, Sessionbean, Message Driven Bean) of Java EE?
7
votes
2answers
96 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 ...
0
votes
0answers
29 views

How to refer to an object array field in Java Bean

I have a User bean having basic user attributes public class User { private String name; private String type; public String address; ....... and their setter and getters } ...
1
vote
1answer
32 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
44 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
67 views

Save form data on GET requests in Spring MVC

I have this huge spring form containing a table where the user can add or delete rows of data. It is basically a GridView. For deleting I have put anchors which do the job through GET requests. The ...
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 ...

1 2 3 4 5 32