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
50 views

JSF dataTable and fileUpload (fileupload issue)

Please let me know your suggestion. I want to build fileUpload with specific design and having issue with getting hold of the uploadedFile. My design: DataModel class: @Named @SessionScoped ...
0
votes
0answers
11 views

jsp isProperty need explanation.

I have this example : class A{ private boolean isX; private boolean isY; public boolean getIsX(){ return isX; } public void setIsX(boolean isx){ this.isX = isx; } public ...
3
votes
1answer
44 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
77 views

JSF selectonemenu generic converter issue

I want to get selected object from selectonemenu but the problem is I couldn't find any generic converter for all type of entities. My first question is Is there a generic converter for all type of ...
0
votes
1answer
204 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
1answer
74 views

Bean Validation 1.1 (JSR-349), implementation alternatives?

Besides the reference implementation (Hibernate Validator 5.x http://www.hibernate.org/subprojects/validator.html) are there alternative implementations of this JSR?
0
votes
1answer
47 views

JSP, Java Beans, How to remember position

For an assignment in "Web Engineering" we have to program a Web Application game with JSP, Servlets and Java Beans. The algorithms for the game, using a Servlet for the Control, JSP for the Model/View ...
0
votes
1answer
26 views

Hi guys, i want to know to work with ejb entity bean. must i deploy ejb entity bean in ejb container

i want to know to work with EJB entity bean. must i deploy EJB entity bean in ejb container. but i have seen some projects my friends working use java persistence api with EJB entity bean, but they ...
0
votes
2answers
94 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
1answer
50 views

JSP shows wrong (old) values

Following Problem: I am using a Servlet as a Controller, JSB for the Model and Java Beans for the Information. Here the code: HTML/JSP: <table summary="Diese Tabelle zeigt Informationen zum ...
1
vote
0answers
141 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
41 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
54 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
vote
1answer
55 views

How to do multiple nested ui:param?

I'm working on a project and I want to test how much I can do with templates in JSF. Right now I am working on parameters and I was wondering how you could template multiple parameters. ...
-1
votes
2answers
66 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
0answers
16 views

spring session bean references another bean of different session

Is it safe if a session bean references another bean of different session and do some actions on that bean? How is the best way to maintaing that: I mean if a session expires I want the user that has ...
0
votes
0answers
43 views

Cannot get value from spring bean when creating it's own class

In my spring-extension-deployment.xml file I have defined: <bean id="TestReportRoot" class="com.snpj.gias.enhancement.service.tools.TestReportRootImpl" scope="prototype"> <property ...
0
votes
3answers
117 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
73 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
43 views

JavaScript TO Bean in SEAM + JSF 1.2

I want to save the variable "position" in my BEAN, does anyone know how to do this? I'm starting in javascipt. function placeMarker(position, map) { var marker = new google.maps.Marker({ ...
0
votes
0answers
7 views

Parsing content from tokenized HTML

One of the cells in a table I am displaying has a tokenized string specified in the following manner - <logic:iterate id="appointment" name="appointments" scope="request"> ... <td ...
0
votes
1answer
99 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
1answer
163 views

How to pass String from Java applet in XHTML page to a managed bean

So as advised I am extending my earlier question to pick up the username of the system opening my web page and then authenticating that user accordingly. Thanks to some useful advice and after long ...
0
votes
1answer
26 views

reusing spring beans - name collisions

What is the preffered approach for reusing other jar containing spring-annotated classes in spring (3.2) ? Example of a problem: I have a jar that has @Autowired SessionFactory, but it needs ...
0
votes
2answers
119 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 ...
2
votes
2answers
132 views

Domino Database connection for a Java bean architecture

We are moving our multi-database web application from LS to a Java beans architecture, but are struggling to decide how best to handle database connections and what scope should we use for them. If ...
0
votes
1answer
45 views

Get all CDI beans

I want to retrieve all CDI beans from container as map which bean names as keys and beans as values. How could I achieve this? I need this to add CDI beans to thymeleaf expression resolver.
0
votes
2answers
70 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 ...
0
votes
2answers
37 views

Reusing of Beans

On the Dashboard each User can see some Basic Stats. Lets take for example the "last login" Date. (But there are many more stats / values / settings to display) The XHTML Files looks simplidfied like ...
1
vote
3answers
178 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
75 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
113 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
164 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
131 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
67 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 ...
1
vote
0answers
58 views

Implementing caching using a spring bean

I want to implement caching in my java spring project. My cache object is updated through a method using spring trigger. I am aware that spring allows the ehcache and the java concurrenthashmap for ...
0
votes
0answers
41 views

HTML tags in String JAVA EE

In my application I have a interceptor that checks if a certain (tweet) message contains words like cool. What I want is to show these words in bold. What I did was the following: @AroundInvoke ...
0
votes
1answer
72 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
82 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
vote
1answer
60 views

What is the best way to call a method(with parameters) right after a class is instantiated using a bean?

I have read up on @PostConstruct and init-method but they don't allow args to be passed from the bean. Something along the line of this question. But the args-to-be-passed are from the class that ...
0
votes
0answers
20 views

Convert Complex Bean to String and String to Bean

I have this bean: public class Person { private int id; private String name; private List<Contact> contacts; private User user; //with get and set } public class Contact { ...
0
votes
0answers
89 views

Create a JSP Bean instance based upon an ArrayList and set Values

I'm just starting out with JSP and I need to read from several .txt files, create a html table based upon the data read, give the user the ability to edit this data and by effect edit the original ...
1
vote
0answers
89 views

Dynamic Proxy in Java EL [closed]

EDIT: I narrowed down the problem and posted the related question here. Please check it out! I am trying to use dynamic proxies to make HTML form processing easier. I am using a pretty plain MVC ...
0
votes
0answers
35 views

tomcat/jsp/bean offer serial imprinted java applet for download

(i have searches stack and google for hours... nothing) What I want to do: have a jsp/bean + tomcat based server through webaccess a client can login and download a custom serialnumber imprinted ...
0
votes
0answers
38 views

Java Bean @Schedule annotation - trigger a new method execution before the previous is over

Is it possible to create a bean method that has @Schedule annotation for example: @Schedule(minute = "", second = "1,11,21,31,41,51", dayOfMonth = "", month = "", year = "", hour = "", dayOfWeek = ...
1
vote
1answer
56 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
84 views

Entity Bean and Data Access Object Pattern

I am having a few issue in understanding the DAO design pattern Here. My confusion lies on two points : In the "problem" section of the website, the entity beans which are referred to...are they ...
1
vote
0answers
82 views

how to share data between jsf bean and restful resource bean?

Using JBoss 7.1.1.Final and running a very basic restful web service. I have a linux dream plug box running a node js http client that connects to the web service at port 8080. It sends a request ...

1 2 3 4 5 32