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
1answer
58 views

Extract the data in xls file using Java beans

How to extract the data in xls file using Java beans. Since, I a m not familiar with beans can some one plz explain how to get the result in xls file from below code and make the system call to open ...
-1
votes
1answer
57 views

How can I instantiate a bean in spring using an existing object as a constructor argument

I have an existing object, actually a socket, and I want that socket to be an instance variable of a bean that I create, a user session. But if I get the user session from the applicationContext as a ...
0
votes
1answer
172 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
2answers
40 views

Not able to add bean to the ArrayList

I created a JavaBean class like this. package beans; public class Invoice { private String companyName; private double price; public String getCompanyName() { return ...
0
votes
0answers
62 views

Prevent getters/setters from generating for @Transient fields

Spring Roo has an @RooJavaBean annotation which generates AspectJ getters and setters for non-transient fields. The problem is that it also generates them for transient fields. I have this in ...
0
votes
2answers
164 views

Initializing an input tag(html) in a jsp using a bean message tag (i18n)

Am new to JavaEE,so am still trying to find my feet. Well,in order to internationalize my pages,am trying to initialize an input text tag using a bean message tag. This is what i would have done if i ...
0
votes
2answers
194 views

How to add JavaBeans to an ArrayList in the session?

This is an exercise from our Professor. I am kinda stuck. First he wants us to Store a company name and price in a JavaBean we will create – one price and company per instance. This means we require ...
0
votes
2answers
112 views

Creating ICEfaces application example connecting beans and Facelets

I'm new in developing web applications and I installed the ICEfaces plugin. I found this tutorial to learn how to work with it and the first given example dont work in my IDE. Its about the last ...
0
votes
1answer
339 views

javax.ejb.CreateException: Could not create stateless EJB

I'm using netbean 6.7.1 Glassfish v2.1 ... I'm trying to create message driven bean. App A (using session bean, create map message) --> App B (message driven bean located here). @Stateless public ...
0
votes
1answer
75 views

Richfaces valueChangeEvent on input not working

I'm trying to use an richfaces inputNumberSlider or inputNumberSpinner. The problem is I'm not able to update the values in my beans. Here are the 2 solutions I tried: 1) ...
0
votes
1answer
86 views

Could not find a getter for boolean in hibernate

My User model class is traditional as following- package org.ravij.model; public class User { private String username; private String password; private boolean isAdmin; ...
1
vote
1answer
104 views

textarea and jsp

I have a textarea that I first print some values coming from a request.getParameter("some_textarea_name"). The user is allowed to modify those values and then I want to get the new values and replace ...
0
votes
1answer
170 views

JSF managedbean has variables with different scope

I have some variables in JSF managedbean with different scopes (that I feel). In the following snippet, userTable is used in both login() and register() method. But roleList is used only in register() ...
0
votes
1answer
55 views

Why does servlet throw this Servlet.service() Exception?

I am using Netbeans. I got the following exception when running a servlet which called a method from a session bean. ApplicationDispatcher[/TheLibrarySystem-war] PWC1231: Servlet.service() for ...
0
votes
2answers
460 views

How to generate rows of PanelGrid dynamically? (JSF, Primefaces)

I'm trying to create a PanelGrid with 2 columns and loading data in it from a List . The Problem is that it does not create new rows. It just put the entire List in the first row. There is no ...
0
votes
3answers
420 views

getting error while trying to insert in mysql using servlet and jsp

hi i want to insert into the database few field names and for that i am using java bean,jsp and servlet but i am getting the error.I tried using preparedStatement then i tried using Statement but in ...
0
votes
1answer
240 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 ...
0
votes
1answer
42 views

BeanCreationException during acceptance tests

I use Spring Security to authentication. I modified my annotation @Page which define which type of user is able to access page. After that in my acceptance tests i started to get errors in: public ...
2
votes
1answer
94 views

Java EE WebLogic and Spring with SSO

I'm trying to get SSO working in my Spring app deployed on WebLogic 11. I'm using Waffle implementation for this. I set: entry-point-ref="negotiateSecurityFilterEntryPoint" and ...
1
vote
1answer
70 views

Standalone EJB client local statless session bean lookup

As per my references the @Local session beans are accessible under same JVM which where the bean is deployed(client & server running on same JVM). I have implemented a simple statless local ...
0
votes
0answers
61 views

csv to bean , excluding the values not included in csv header java

I'm trying to write a code where a csv content is converted to a bean. This is how my code looks like final String TEMPLATE_FILE="addresses.csv"; CSVReader template = new CSVReader(new ...
0
votes
1answer
157 views

Unable to find matching navigation case with from-view-id '/index.xhtml' for action '#{user.login}' with outcome 'ADMIN_USER'

Below is my web.xml <?xml version="1.0" encoding="UTF-8"?> <web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" ...
0
votes
0answers
12 views

Netbeans missing -war in URL

Using netbeans6.7.1 I have an enterprise app with ejb, app-client and war. Ejb and app-client tested to be working properly. When I run the application with war, the first run after building goes to ...
-1
votes
1answer
57 views

error while creating session bean

i am trying the 'Hello World! with Remote Stateless Session Bean'example with glassfish3+ and netbeans 7.2 and while creating a session bean i have an error stating-"there is no suitable project ...
0
votes
1answer
72 views

JUnit test in Spring - overriding and ingoring beans from application other configuration classes

We have large application written in Spring 3. I need to write JUnit test checking behaviour of some service. It is not a unit but part of a system. There are some services and repositories working ...
-4
votes
1answer
16 views

its related to beans use in jsp

<jsp:useBean name="beanname" property="propertyname"/>how to access the value of a bean property. We can do this by using above syntax but i want to increment the value of this property how it ...
0
votes
1answer
37 views

Spring get bean only if already instanced for scope

Hi i'm using Spring 3 i'm using applicationContext.getBeansOfType is there a possibility to get only the beans already instanciated for the current scope? I don't want to instanciate Beans which ...
0
votes
1answer
81 views

Using recycle on Domino object causes bean to not return data

I have a session scoped bean that reads the contents of a view and stores a hashmap of SelectItem objects. These are then used to populate combobox values on an XPage. The code works fine EXCEPT ...
1
vote
0answers
301 views

Error MVC org.springframework.validation.BeanPropertyBindingResult: 1 errors with array

Hi I try pass an array in a bean from jsp to java. @ModelAttribute("areasActividadAdminBean")AreasActividadAdminBean areasActividadAdminBean Agrupacion[] listaAgrupaciones = x; ...
0
votes
0answers
41 views

“JBAS014151: Could not find view ”

I am trying to run a java application using Jboss 6.0 EAP that was originally developed using Jboss 7.1 AS. But I am running into the following exception msg: "JBAS014151: Could not find view ... for ...
2
votes
1answer
81 views

Cannot inject bean into JSF managed bean with specific name in spring

In the following snippet, when I give the @ManagedBean a specific name, userService and authenticationService are not injected. But if I use only @ManagedBean without name, the injection works fine. ...
0
votes
2answers
120 views

Blank page is returned with primefaces

I want to use primefaces in the project I am working on. So I thought it would be a good idea to get some simple hello world program. It has worked fine, so I suppose all the libriaries I have to ...
0
votes
0answers
30 views

<logic:equal> is not working

I m trying to do something like this-- <logic:equal name='<%=session.getAttribute(Att.INFO)%>' value='<%=Att.INF%>' scope='session'><h3>Equal</h3></logic:equal> ...
0
votes
0answers
30 views

Autowiring DataSource bean

I created a DaoImpl class with following code import java.sql.ResultSet; import java.sql.SQLException; import java.util.List; import javax.sql.DataSource; import org.sample.dao.TestDao; import ...
2
votes
1answer
257 views

<ui:include> throws javax.faces.view.facelets.TagAttributeException: Invalid path

I'm practicing JSF+JPA and got stuck with the following exception: 19/03/2013 00:04:18 org.apache.catalina.core.StandardWrapperValve invoke GRAVE: Servlet.service() for servlet [Faces Servlet] in ...
-1
votes
1answer
101 views

SQL query result in jasper report with Bean DataSource

I am new in Jasper reports and I have (probably) simple problem. We have report which has java bean as datasource. Is it possible that I can add field which query database and showing query result in ...
0
votes
0answers
38 views

how to deal with <logic:equal> and session

what i want is if value in INFO session == value in CCINFO then it should print some message. I am trying to do following but giving an error--- <logic:equal ...
0
votes
1answer
70 views

Inject bean dynamically? Or @Autowire bean not created by Spring

Problem: orderRepository = null. As I understand orderRepository not injected because user not the bean created by Spring but just an object created using new and then got its properties set in dao? ...
0
votes
1answer
287 views

Entity Beans : Unable to retrieve EntityManagerFactory for unitName null

This is my first attempt at Entity beans and i repeatedly get the following error :- java.lang.IllegalStateException: Unable to retrieve EntityManagerFactory for unitName null I wrote a simple ...
1
vote
1answer
42 views

javabeans browsing component for javafx?

I would like to include in the GUI of certain javafx application a JavaBeans browser. I mean, something that receives as input a collection of objects following the JavaBeans convention and allows to ...
0
votes
1answer
40 views

Determine for which aggregation a bean is created

I have the following definition: <bean id="logger" factory-method="createLog" scope="prototype" class="com.test.beans.LogBean" ></bean> <bean id="aone" ...
0
votes
0answers
47 views

Text fields are populating with the older values in Struts1

I am using data entry form.In that one of the field is drop down.On select of the dropdown page reloads and no of controls changes. When first time i am submitting the form with the data its working ...
0
votes
1answer
44 views

Populating $beanList, $beanFiles and $moduleList for a Distributed Module

I want to create a SugarCRM module for redistribution. Where should I populate $beanList, $beanFiles, and $moduleList? That is, if I use the module generator to create a SugarCRM module, the system ...
0
votes
1answer
60 views

SugarCRM: Direct Bean Property Access vs. getFieldValue

In modern versions of SugarCRM, after you load data into a bean object $account = BeanFactory::getBean('Accounts') ->retrieve_by_string_fields(array('name'=>'Q.R.&E. Corp')); ...
2
votes
1answer
71 views

Can you call a method in a bean from a MuleESB <choice>?

I want to be able to do something like the following: <spring:beans> <spring:bean id="myBean" class="com.address.myClass"/> </spring:beans> <choice> <when ...
0
votes
0answers
48 views

BeanNameAutoProxyCreator and auto wiring using annotations

A small question regarding auto wiring and CGLIB proxies created by BeanNameAutoProxyCreator. The BeanNameAutoProxyCreator is wrapping the actual object with a CGLIB proxy. It seems though the ...
0
votes
1answer
58 views

How to get rid of repeating values in List of Java Bean objects

I am developing a web based system using Java and database queries. I have a bean class representing the rows in one of tables in the database - RoadList. Here is the structure of the class: public ...
0
votes
0answers
10 views

Mediater for Datamigration from one form of DB to another form

We want to Migrate clients huge database. We are getting an input in xls format and we wants to migrate those into oracle database. One row represents information about one object. So, for this ...
2
votes
1answer
129 views

Java 1.7 bug?: inherited PropertyDescriptors for properties with generic return types lose attribute map

As of Java 1.7, PropertyDescriptors obtained from BeanInfos for superclasses lose their attribute map if the return type of the property takes generic paramaters. The test code below illustrates this ...
0
votes
1answer
48 views

How can I set a JavaBean's property using EL?

I know how to retrieve (get) a bean's properties using EL. How can I set a JavaBean's property using EL? Thanks!

1 2 3 4 5 31