In a web application, we usually convert the request params from String (or String array) to Beans. All web frameworks do that.<br>Is string conversion a topic of Web beans spec? <br><br>A conversion workflow has usually 3 phases:<br>
1 - inspect the property type: String, Date, Number, beans<br>2 - do the conversion: "'1" to 1, "01/01/2009" to Date, etc<br>3 - inject the converted object according the request name: "<a href="http://person.name">person.name</a>", "person.age", etc <br>
<br>Who would have do this conversion?<br><br>Thanks. <br>