Hi,

Since upgrading to 1.3.1 I am getting the following runtime error from
a JSP that calls a custom taglib that has an attribute of a type that
I've defined.

org.apache.jasper.JasperException: jsp.error.beans.property.conversion
        at
org.apache.jasper.runtime.JspRuntimeLibrary.getValueFromPropertyEditorManager(JspRuntimeLibrary.java:
885)
        at org.apache.jsp.index_jsp._jspx_meth_sq_foo_0(index_jsp.java:225)


The attribute in the tag file is defined as:

<%@ attribute name="myfoo" required="true" type="com.my.model.Foo" %>

The tag is being invoked from another jsp like so:

<% request.setAttribute("foo", new Foo()); %>
<f:foo myfoo="${foo}"/>

What is the best way to view the source in :
org.apache.jsp.index_jsp._jspx_meth_sq_foo_0(index_jsp.java:225) to
try and see what is going wrong?
Is it possible to configure jetty/jasper to compile the jsps to a
specific location under GAE-J in Dev Mode?

Does anyone have any idea what may be causing this Exception ?

NOTE: When I use a simple java.lang.String type as the attribute,
things work fine.

Cheers,
Nick



-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine for Java" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/google-appengine-java?hl=en.

Reply via email to