vote up 2 vote down star

Is there an equivalent to:

<jsp:setProperty name="beanName" property="*"/>

for servlets?

Something that will auto-populate the bean from inside a servlet using the request parameters? I'm refactoring a JSP-only application and would like to move some of the code to servlets. For a bunch of tragic reasons, we are not able (right now) to use any frameworks to make this easier.

flag

2 Answers

vote up 4 vote down check

Can you use external libraries? If so, Commons BeanUtils would help you a lot.

Update: Now that you've confirmed you can use this approach:
The method you're looking for is BeanUtils.populate(). There is an example here (chapter 4.2) on how to use it to map request parameters.

link|flag
I can - so I'll check this out. – Jibba Jul 24 at 10:40
Thanks - this works perfectly. – Jibba Jul 24 at 17:38
vote up 2 vote down

You can use reflection to do it, but there is nothing there from you out of the box. It would be pretty easy to write a little helper object to do using reflection

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.