Tagged Questions

2
votes
4answers
49 views

JSF 1.2 - Problem with passing page count to bean to create list

I have this select option: <f:verbatim>Pages: </f:verbatim> <h:selectOneMenu id="selectPage" value="#{pageList.selectedPage}"> <f:selectItems value="#{pageList.selectPages}" …
2
votes
2answers
173 views

java: easiest way to populate a bean using servlet params

without using any big web framework (just servlets), do you know a ready to use small library that can populate my bean properties from the params of an http request?
2
votes
5answers
523 views

dynamically change spring beans

hi, how do I dynamically change the properties of a bean at runtime using java spring? I have a bean mainView, which should use as property "class" either "class1" or "class2". This decision should be …
1
vote
1answer
16 views

What are the available options to retrieve Spring-managed beans in a Log4J Appender inside a Spring-managed web application?

Hello. My current build lead has a great idea in theory - construct a custom Log4J appender that takes in Spring-managed beans and uses them to log errors to various other sources than just the …
1
vote
4answers
143 views

Might EnumMap be considered a reasonable alternative to Java beans?

Curious if anybody has considered using EnumMap in place of Java beans, particularly "value objects" (with no behavior)? To me it seems that one advantage would be that the name of a "property" would …
1
vote
0answers
28 views

How Does One Interrupt Bean Methods on Jboss?

EJB 3.1 is a few months away and starting threads in Beans is discouraged since it may have nasty side effects. So what other options are there to interrupt bean methods on Jboss and Enterprise …
1
vote
6answers
273 views

JavaBean problem

Hello. I have two JSPs and a JavaBean that aren't working. This is a problem that's probably very common to newbies, so please forgive me if this has been answered in this forum. I've Googled all …
0
votes
1answer
12 views

Getting access to a spring bean from a webservice?

I have created a cxf webservice within my cxf.xml file I have the following tag. bean id="videoStatsTable" class="com.company.auth.dataobjects.VideoStatsTable" From what I understand Spring should …
0
votes
3answers
43 views

JSF, multiple bean update property in a form

I edited my question to be more precise as I have more time to write it. I have a JSF form that should modify the value of the different properties of a dog : <h:form id="submit"> …
0
votes
2answers
25 views

Eclipse Spring Builder set properties with Groovy beans

I typically use groovy to construct simple bean but the Spring IDE plugin to eclipse fails to build when I try to set a property that is generated by groovy without an explicit setter. For example, …
0
votes
0answers
43 views

editing a java bean ?

Hello, I'm searching for he source of a graphical bean editor... a (very basic) beanbox if you prefer... Here is what I would like to achieve : I have an application which uses some customizable …
0
votes
2answers
316 views

JSF+Facelets treating bean action as property

Guys, for some reason EL is not telling actions from properties. I have this page test.xhtml: <?xml version="1.0" encoding="ISO-8859-1"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 …
0
votes
1answer
115 views

How can I serialize a jpa bean that will also get the lazy loading relationship?

I need to serialize the result of a jpql query (meaning I need to serialize all the jpa beans). I want to get all nested relationship (even if they are lazy loaded) so that the client can deserialize …
0
votes
1answer
71 views

Does it make sense to have more than one MethodSecurityInterceptor bean?

Can two MethodSecurityInterceptor beans be defined as follows? <beans> <bean id="moduleOneMethodSecurity" …
0
votes
1answer
170 views

make java custom annotation to mark bean properties for html cleansing

Can I use a Java custom annotation to add some code to a set or get method on a bean property to cleanse the property from bad html being input by my users? I've been looking for examples but I've …

1 2 next
15 30 50 per page