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: &quot;&#39;1&quot; to 1, &quot;01/01/2009&quot; to Date, etc<br>3 - inject the converted object according the request name: &quot;<a href="http://person.name">person.name</a>&quot;, &quot;person.age&quot;, etc <br>

<br>Who would have do this conversion?<br><br>Thanks.  <br>