Criar banco usando Struts 2, Hibernate e JPA2

Olá pessoal!
Criei um projeto para cadastro de contatos, e queria que ao chamar a aplicação o banco fosse criado da mesma forma como ocorre com o VRaptor3.
Meu persistence.xml:

<?xml version="1.0" encoding="UTF-8"?>
<persistence version="2.0" xmlns="http://java.sun.com/xml/ns/persistence"
			 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
			 xsi:schemaLocation="http://java.sun.com/xml/ns/persistence
			 http://java.sun.com/xml/ns/persistence/persistence_2_0.xsd">
    <persistence-unit name="default" transaction-type="RESOURCE_LOCAL">
    <provider>org.hibernate.ejb.HibernatePersistence</provider>  
        <properties>        	
            
            <!-- Configuração MySQL -->
			<property name="hibernate.dialect" value="org.hibernate.dialect.MySQLDialect" />
        	<property name="javax.persistence.jdbc.url" value="jdbc:mysql://localhost/strutsproj" />
        	<property name="javax.persistence.jdbc.driver" value="com.mysql.jdbc.Driver" />
        	<property name="javax.persistence.jdbc.user" value="root" />
        	<property name="javax.persistence.jdbc.password" value="senha" />        
			            
            
            <property name="hibernate.hbm2ddl.auto" value="create" />
            <property name="hibernate.show_sql" value="true"/>
            <property name="hibernate.format_sql" value="true"/>            
        </properties>
</persistence-unit>
</persistence>

A stacktrace não dá sinal de vida sobre a criação do banco:

INFO: Server startup in 4345 ms
2012-01-01 14:43:24,361 DEBUG com.opensymphony.xwork2.config.ConfigurationManager.debug:68 - Checking ConfigurationProviders for reload.
2012-01-01 14:43:24,383 DEBUG com.opensymphony.xwork2.conversion.impl.InstantiatingNullHandler.debug:68 - Entering nullPropertyValue [target=[com.opensymphony.xwork2.DefaultTextProvider@1da2737], property=struts]
2012-01-01 14:43:24,387 DEBUG com.opensymphony.xwork2.config.ConfigurationManager.debug:68 - Checking ConfigurationProviders for reload.
2012-01-01 14:43:24,394 DEBUG com.opensymphony.xwork2.config.ConfigurationManager.debug:68 - Checking ConfigurationProviders for reload.
2012-01-01 14:43:24,394 DEBUG com.opensymphony.xwork2.conversion.impl.InstantiatingNullHandler.debug:68 - Entering nullPropertyValue [target=[com.opensymphony.xwork2.DefaultTextProvider@1da2737], property=org]
2012-01-01 14:43:24,449 DEBUG com.opensymphony.xwork2.conversion.impl.InstantiatingNullHandler.debug:68 - Entering nullPropertyValue [target=[com.opensymphony.xwork2.DefaultTextProvider@1da2737], property=struts]
2012-01-01 14:43:24,450 DEBUG com.opensymphony.xwork2.config.ConfigurationManager.debug:68 - Checking ConfigurationProviders for reload.
2012-01-01 14:43:24,456 DEBUG com.opensymphony.xwork2.config.ConfigurationManager.debug:68 - Checking ConfigurationProviders for reload.
2012-01-01 14:43:24,485 DEBUG com.opensymphony.xwork2.ognl.accessor.XWorkMapPropertyAccessor.debug:68 - Entering getProperty (ognl.OgnlContext@c105936a,org.apache.struts2.util.AttributeMap@1ae939f,templateDir)
2012-01-01 14:43:24,486 DEBUG com.opensymphony.xwork2.conversion.impl.InstantiatingNullHandler.debug:68 - Entering nullPropertyValue [target=[com.opensymphony.xwork2.DefaultTextProvider@1da2737], property=templateDir]
2012-01-01 14:43:24,486 DEBUG com.opensymphony.xwork2.conversion.impl.InstantiatingNullHandler.debug:68 - Entering nullPropertyValue [target=[com.opensymphony.xwork2.DefaultTextProvider@1da2737], property=templateDir]
2012-01-01 14:43:24,487 DEBUG com.opensymphony.xwork2.conversion.impl.InstantiatingNullHandler.debug:68 - Entering nullPropertyValue [target=org.apache.struts2.util.AttributeMap@1ae939f, property=templateDir]
2012-01-01 14:43:24,487 DEBUG com.opensymphony.xwork2.conversion.impl.XWorkConverter.debug:68 - Property: null
2012-01-01 14:43:24,488 DEBUG com.opensymphony.xwork2.conversion.impl.XWorkConverter.debug:68 - Class: com.opensymphony.xwork2.util.CompoundRoot
2012-01-01 14:43:24,488 DEBUG com.opensymphony.xwork2.conversion.impl.XWorkConverter.debug:68 - field-level type converter for property [null] = none found
2012-01-01 14:43:24,488 DEBUG com.opensymphony.xwork2.conversion.impl.XWorkConverter.debug:68 - global-level type converter for property [null] = none found
2012-01-01 14:43:24,489 DEBUG com.opensymphony.xwork2.conversion.impl.XWorkConverter.debug:68 - falling back to default type converter [com.opensymphony.xwork2.conversion.impl.XWorkBasicConverter@1e26602]
2012-01-01 14:43:24,489 DEBUG com.opensymphony.xwork2.ognl.accessor.XWorkMapPropertyAccessor.debug:68 - Entering getProperty (ognl.OgnlContext@25d95285,org.apache.struts2.util.AttributeMap@1ae939f,theme)
2012-01-01 14:43:24,490 DEBUG com.opensymphony.xwork2.conversion.impl.InstantiatingNullHandler.debug:68 - Entering nullPropertyValue [target=[com.opensymphony.xwork2.DefaultTextProvider@1da2737], property=theme]
2012-01-01 14:43:24,491 DEBUG com.opensymphony.xwork2.conversion.impl.InstantiatingNullHandler.debug:68 - Entering nullPropertyValue [target=[com.opensymphony.xwork2.DefaultTextProvider@1da2737], property=theme]
2012-01-01 14:43:24,491 DEBUG com.opensymphony.xwork2.conversion.impl.InstantiatingNullHandler.debug:68 - Entering nullPropertyValue [target=org.apache.struts2.util.AttributeMap@1ae939f, property=theme]
2012-01-01 14:43:24,491 DEBUG com.opensymphony.xwork2.conversion.impl.XWorkConverter.debug:68 - Property: null
2012-01-01 14:43:24,492 DEBUG com.opensymphony.xwork2.conversion.impl.XWorkConverter.debug:68 - Class: com.opensymphony.xwork2.util.CompoundRoot
2012-01-01 14:43:24,492 DEBUG com.opensymphony.xwork2.conversion.impl.XWorkConverter.debug:68 - field-level type converter for property [null] = none found
2012-01-01 14:43:24,492 DEBUG com.opensymphony.xwork2.conversion.impl.XWorkConverter.debug:68 - global-level type converter for property [null] = none found
2012-01-01 14:43:24,493 DEBUG com.opensymphony.xwork2.conversion.impl.XWorkConverter.debug:68 - falling back to default type converter [com.opensymphony.xwork2.conversion.impl.XWorkBasicConverter@1e26602]
2012-01-01 14:43:24,497 DEBUG com.opensymphony.xwork2.ognl.accessor.XWorkMapPropertyAccessor.debug:68 - Entering getProperty (ognl.OgnlContext@25d95285,org.apache.struts2.util.AttributeMap@1ae939f,templateDir)
2012-01-01 14:43:24,497 DEBUG com.opensymphony.xwork2.conversion.impl.InstantiatingNullHandler.debug:68 - Entering nullPropertyValue [target=[com.opensymphony.xwork2.DefaultTextProvider@1da2737], property=templateDir]
2012-01-01 14:43:24,498 DEBUG com.opensymphony.xwork2.conversion.impl.InstantiatingNullHandler.debug:68 - Entering nullPropertyValue [target=[com.opensymphony.xwork2.DefaultTextProvider@1da2737], property=templateDir]
2012-01-01 14:43:24,498 DEBUG com.opensymphony.xwork2.conversion.impl.InstantiatingNullHandler.debug:68 - Entering nullPropertyValue [target=org.apache.struts2.util.AttributeMap@1ae939f, property=templateDir]
2012-01-01 14:43:24,498 DEBUG com.opensymphony.xwork2.conversion.impl.XWorkConverter.debug:68 - Property: null
2012-01-01 14:43:24,499 DEBUG com.opensymphony.xwork2.conversion.impl.XWorkConverter.debug:68 - Class: com.opensymphony.xwork2.util.CompoundRoot
2012-01-01 14:43:24,499 DEBUG com.opensymphony.xwork2.conversion.impl.XWorkConverter.debug:68 - field-level type converter for property [null] = none found
2012-01-01 14:43:24,499 DEBUG com.opensymphony.xwork2.conversion.impl.XWorkConverter.debug:68 - global-level type converter for property [null] = none found
2012-01-01 14:43:24,500 DEBUG com.opensymphony.xwork2.conversion.impl.XWorkConverter.debug:68 - falling back to default type converter [com.opensymphony.xwork2.conversion.impl.XWorkBasicConverter@1e26602]
2012-01-01 14:43:24,500 DEBUG com.opensymphony.xwork2.ognl.accessor.XWorkMapPropertyAccessor.debug:68 - Entering getProperty (ognl.OgnlContext@25d95285,org.apache.struts2.util.AttributeMap@1ae939f,theme)
2012-01-01 14:43:24,501 DEBUG com.opensymphony.xwork2.conversion.impl.InstantiatingNullHandler.debug:68 - Entering nullPropertyValue [target=[com.opensymphony.xwork2.DefaultTextProvider@1da2737], property=theme]
2012-01-01 14:43:24,501 DEBUG com.opensymphony.xwork2.conversion.impl.InstantiatingNullHandler.debug:68 - Entering nullPropertyValue [target=[com.opensymphony.xwork2.DefaultTextProvider@1da2737], property=theme]
2012-01-01 14:43:24,502 DEBUG com.opensymphony.xwork2.conversion.impl.InstantiatingNullHandler.debug:68 - Entering nullPropertyValue [target=org.apache.struts2.util.AttributeMap@1ae939f, property=theme]
2012-01-01 14:43:24,502 DEBUG com.opensymphony.xwork2.conversion.impl.XWorkConverter.debug:68 - Property: null
2012-01-01 14:43:24,502 DEBUG com.opensymphony.xwork2.conversion.impl.XWorkConverter.debug:68 - Class: com.opensymphony.xwork2.util.CompoundRoot
2012-01-01 14:43:24,503 DEBUG com.opensymphony.xwork2.conversion.impl.XWorkConverter.debug:68 - field-level type converter for property [null] = none found
2012-01-01 14:43:24,503 DEBUG com.opensymphony.xwork2.conversion.impl.XWorkConverter.debug:68 - global-level type converter for property [null] = none found
2012-01-01 14:43:24,503 DEBUG com.opensymphony.xwork2.conversion.impl.XWorkConverter.debug:68 - falling back to default type converter [com.opensymphony.xwork2.conversion.impl.XWorkBasicConverter@1e26602]
2012-01-01 14:43:24,506 DEBUG org.apache.struts2.components.UIBean.debug:68 - Rendering template /template/xhtml/form
2012-01-01 14:43:24,605 DEBUG org.apache.struts2.views.freemarker.FreemarkerManager.debug:68 - Using object wrapper of class org.apache.struts2.views.freemarker.StrutsBeanWrapper
2012-01-01 14:43:24,770 DEBUG org.apache.struts2.components.template.FreemarkerTemplateEngine.debug:68 - Rendering template /template/xhtml/form.ftl
2012-01-01 14:43:24,866 DEBUG com.opensymphony.xwork2.config.ConfigurationManager.debug:68 - Checking ConfigurationProviders for reload.
2012-01-01 14:43:24,871 DEBUG com.opensymphony.xwork2.ognl.accessor.XWorkMapPropertyAccessor.debug:68 - Entering getProperty (ognl.OgnlContext@24402e97,org.apache.struts2.util.AttributeMap@8aaff4,templateDir)
2012-01-01 14:43:24,872 DEBUG com.opensymphony.xwork2.conversion.impl.InstantiatingNullHandler.debug:68 - Entering nullPropertyValue [target=[com.opensymphony.xwork2.DefaultTextProvider@1da2737], property=templateDir]
2012-01-01 14:43:24,872 DEBUG com.opensymphony.xwork2.conversion.impl.InstantiatingNullHandler.debug:68 - Entering nullPropertyValue [target=[com.opensymphony.xwork2.DefaultTextProvider@1da2737], property=templateDir]
2012-01-01 14:43:24,873 DEBUG com.opensymphony.xwork2.conversion.impl.InstantiatingNullHandler.debug:68 - Entering nullPropertyValue [target=org.apache.struts2.util.AttributeMap@8aaff4, property=templateDir]
2012-01-01 14:43:24,873 DEBUG com.opensymphony.xwork2.conversion.impl.XWorkConverter.debug:68 - Property: null
2012-01-01 14:43:24,873 DEBUG com.opensymphony.xwork2.conversion.impl.XWorkConverter.debug:68 - Class: com.opensymphony.xwork2.util.CompoundRoot
2012-01-01 14:43:24,874 DEBUG com.opensymphony.xwork2.conversion.impl.XWorkConverter.debug:68 - field-level type converter for property [null] = none found
2012-01-01 14:43:24,874 DEBUG com.opensymphony.xwork2.conversion.impl.XWorkConverter.debug:68 - global-level type converter for property [null] = none found
2012-01-01 14:43:24,875 DEBUG com.opensymphony.xwork2.conversion.impl.XWorkConverter.debug:68 - falling back to default type converter [com.opensymphony.xwork2.conversion.impl.XWorkBasicConverter@1e26602]
2012-01-01 14:43:24,875 DEBUG com.opensymphony.xwork2.ognl.accessor.XWorkMapPropertyAccessor.debug:68 - Entering getProperty (ognl.OgnlContext@24402e97,org.apache.struts2.util.AttributeMap@8aaff4,theme)
2012-01-01 14:43:24,876 DEBUG com.opensymphony.xwork2.conversion.impl.InstantiatingNullHandler.debug:68 - Entering nullPropertyValue [target=[com.opensymphony.xwork2.DefaultTextProvider@1da2737], property=theme]
2012-01-01 14:43:24,876 DEBUG com.opensymphony.xwork2.conversion.impl.InstantiatingNullHandler.debug:68 - Entering nullPropertyValue [target=[com.opensymphony.xwork2.DefaultTextProvider@1da2737], property=theme]
2012-01-01 14:43:24,876 DEBUG com.opensymphony.xwork2.conversion.impl.InstantiatingNullHandler.debug:68 - Entering nullPropertyValue [target=org.apache.struts2.util.AttributeMap@8aaff4, property=theme]
2012-01-01 14:43:24,876 DEBUG com.opensymphony.xwork2.conversion.impl.XWorkConverter.debug:68 - Property: null
2012-01-01 14:43:24,877 DEBUG com.opensymphony.xwork2.conversion.impl.XWorkConverter.debug:68 - Class: com.opensymphony.xwork2.util.CompoundRoot
2012-01-01 14:43:24,877 DEBUG com.opensymphony.xwork2.conversion.impl.XWorkConverter.debug:68 - field-level type converter for property [null] = none found
2012-01-01 14:43:24,877 DEBUG com.opensymphony.xwork2.conversion.impl.XWorkConverter.debug:68 - global-level type converter for property [null] = none found
2012-01-01 14:43:24,877 DEBUG com.opensymphony.xwork2.conversion.impl.XWorkConverter.debug:68 - falling back to default type converter [com.opensymphony.xwork2.conversion.impl.XWorkBasicConverter@1e26602]
2012-01-01 14:43:24,878 DEBUG com.opensymphony.xwork2.conversion.impl.InstantiatingNullHandler.debug:68 - Entering nullPropertyValue [target=[com.opensymphony.xwork2.DefaultTextProvider@1da2737], property=contato]
2012-01-01 14:43:24,879 DEBUG com.opensymphony.xwork2.ognl.accessor.XWorkMapPropertyAccessor.debug:68 - Entering getProperty (ognl.OgnlContext@24402e97,org.apache.struts2.util.AttributeMap@8aaff4,templateDir)
2012-01-01 14:43:24,880 DEBUG com.opensymphony.xwork2.conversion.impl.InstantiatingNullHandler.debug:68 - Entering nullPropertyValue [target=[com.opensymphony.xwork2.DefaultTextProvider@1da2737], property=templateDir]
2012-01-01 14:43:24,880 DEBUG com.opensymphony.xwork2.conversion.impl.InstantiatingNullHandler.debug:68 - Entering nullPropertyValue [target=[com.opensymphony.xwork2.DefaultTextProvider@1da2737], property=templateDir]
2012-01-01 14:43:24,881 DEBUG com.opensymphony.xwork2.conversion.impl.InstantiatingNullHandler.debug:68 - Entering nullPropertyValue [target=org.apache.struts2.util.AttributeMap@8aaff4, property=templateDir]
2012-01-01 14:43:24,881 DEBUG com.opensymphony.xwork2.conversion.impl.XWorkConverter.debug:68 - Property: null
2012-01-01 14:43:24,881 DEBUG com.opensymphony.xwork2.conversion.impl.XWorkConverter.debug:68 - Class: com.opensymphony.xwork2.util.CompoundRoot
2012-01-01 14:43:24,882 DEBUG com.opensymphony.xwork2.conversion.impl.XWorkConverter.debug:68 - field-level type converter for property [null] = none found
2012-01-01 14:43:24,882 DEBUG com.opensymphony.xwork2.conversion.impl.XWorkConverter.debug:68 - global-level type converter for property [null] = none found
2012-01-01 14:43:24,882 DEBUG com.opensymphony.xwork2.conversion.impl.XWorkConverter.debug:68 - falling back to default type converter [com.opensymphony.xwork2.conversion.impl.XWorkBasicConverter@1e26602]
2012-01-01 14:43:24,883 DEBUG com.opensymphony.xwork2.ognl.accessor.XWorkMapPropertyAccessor.debug:68 - Entering getProperty (ognl.OgnlContext@24402e97,org.apache.struts2.util.AttributeMap@8aaff4,theme)
2012-01-01 14:43:24,883 DEBUG com.opensymphony.xwork2.conversion.impl.InstantiatingNullHandler.debug:68 - Entering nullPropertyValue [target=[com.opensymphony.xwork2.DefaultTextProvider@1da2737], property=theme]
2012-01-01 14:43:24,883 DEBUG com.opensymphony.xwork2.conversion.impl.InstantiatingNullHandler.debug:68 - Entering nullPropertyValue [target=[com.opensymphony.xwork2.DefaultTextProvider@1da2737], property=theme]
2012-01-01 14:43:24,884 DEBUG com.opensymphony.xwork2.conversion.impl.InstantiatingNullHandler.debug:68 - Entering nullPropertyValue [target=org.apache.struts2.util.AttributeMap@8aaff4, property=theme]
2012-01-01 14:43:24,884 DEBUG com.opensymphony.xwork2.conversion.impl.XWorkConverter.debug:68 - Property: null
2012-01-01 14:43:24,884 DEBUG com.opensymphony.xwork2.conversion.impl.XWorkConverter.debug:68 - Class: com.opensymphony.xwork2.util.CompoundRoot
2012-01-01 14:43:24,885 DEBUG com.opensymphony.xwork2.conversion.impl.XWorkConverter.debug:68 - field-level type converter for property [null] = none found
2012-01-01 14:43:24,885 DEBUG com.opensymphony.xwork2.conversion.impl.XWorkConverter.debug:68 - global-level type converter for property [null] = none found
2012-01-01 14:43:24,885 DEBUG com.opensymphony.xwork2.conversion.impl.XWorkConverter.debug:68 - falling back to default type converter [com.opensymphony.xwork2.conversion.impl.XWorkBasicConverter@1e26602]
2012-01-01 14:43:24,886 DEBUG org.apache.struts2.components.UIBean.debug:68 - Rendering template /template/xhtml/text
2012-01-01 14:43:24,892 DEBUG org.apache.struts2.components.template.FreemarkerTemplateEngine.debug:68 - Rendering template /template/xhtml/text.ftl
2012-01-01 14:43:24,912 DEBUG com.opensymphony.xwork2.conversion.impl.InstantiatingNullHandler.debug:68 - Entering nullPropertyValue [target=[org.apache.struts2.components.TextField@1984f7d, com.opensymphony.xwork2.DefaultTextProvider@1da2737], property=fieldErrors]
2012-01-01 14:43:24,912 DEBUG com.opensymphony.xwork2.conversion.impl.InstantiatingNullHandler.debug:68 - Entering nullPropertyValue [target=[org.apache.struts2.components.TextField@1984f7d, com.opensymphony.xwork2.DefaultTextProvider@1da2737], property=fieldErrors]
2012-01-01 14:43:25,004 DEBUG com.opensymphony.xwork2.conversion.impl.InstantiatingNullHandler.debug:68 - Entering nullPropertyValue [target=[org.apache.struts2.components.TextField@1984f7d, com.opensymphony.xwork2.DefaultTextProvider@1da2737], property=fieldErrors]
2012-01-01 14:43:25,004 DEBUG com.opensymphony.xwork2.conversion.impl.InstantiatingNullHandler.debug:68 - Entering nullPropertyValue [target=[org.apache.struts2.components.TextField@1984f7d, com.opensymphony.xwork2.DefaultTextProvider@1da2737], property=fieldErrors]
2012-01-01 14:43:25,028 DEBUG com.opensymphony.xwork2.config.ConfigurationManager.debug:68 - Checking ConfigurationProviders for reload.
2012-01-01 14:43:25,029 DEBUG com.opensymphony.xwork2.ognl.accessor.XWorkMapPropertyAccessor.debug:68 - Entering getProperty (ognl.OgnlContext@23a20406,org.apache.struts2.util.AttributeMap@428527,templateDir)
2012-01-01 14:43:25,030 DEBUG com.opensymphony.xwork2.conversion.impl.InstantiatingNullHandler.debug:68 - Entering nullPropertyValue [target=[com.opensymphony.xwork2.DefaultTextProvider@1da2737], property=templateDir]
2012-01-01 14:43:25,030 DEBUG com.opensymphony.xwork2.conversion.impl.InstantiatingNullHandler.debug:68 - Entering nullPropertyValue [target=[com.opensymphony.xwork2.DefaultTextProvider@1da2737], property=templateDir]
2012-01-01 14:43:25,031 DEBUG com.opensymphony.xwork2.conversion.impl.InstantiatingNullHandler.debug:68 - Entering nullPropertyValue [target=org.apache.struts2.util.AttributeMap@428527, property=templateDir]
2012-01-01 14:43:25,031 DEBUG com.opensymphony.xwork2.conversion.impl.XWorkConverter.debug:68 - Property: null
2012-01-01 14:43:25,031 DEBUG com.opensymphony.xwork2.conversion.impl.XWorkConverter.debug:68 - Class: com.opensymphony.xwork2.util.CompoundRoot
2012-01-01 14:43:25,032 DEBUG com.opensymphony.xwork2.conversion.impl.XWorkConverter.debug:68 - field-level type converter for property [null] = none found
2012-01-01 14:43:25,032 DEBUG com.opensymphony.xwork2.conversion.impl.XWorkConverter.debug:68 - global-level type converter for property [null] = none found
2012-01-01 14:43:25,032 DEBUG com.opensymphony.xwork2.conversion.impl.XWorkConverter.debug:68 - falling back to default type converter [com.opensymphony.xwork2.conversion.impl.XWorkBasicConverter@1e26602]
2012-01-01 14:43:25,033 DEBUG com.opensymphony.xwork2.ognl.accessor.XWorkMapPropertyAccessor.debug:68 - Entering getProperty (ognl.OgnlContext@23a20406,org.apache.struts2.util.AttributeMap@428527,theme)
2012-01-01 14:43:25,033 DEBUG com.opensymphony.xwork2.conversion.impl.InstantiatingNullHandler.debug:68 - Entering nullPropertyValue [target=[com.opensymphony.xwork2.DefaultTextProvider@1da2737], property=theme]
2012-01-01 14:43:25,034 DEBUG com.opensymphony.xwork2.conversion.impl.InstantiatingNullHandler.debug:68 - Entering nullPropertyValue [target=[com.opensymphony.xwork2.DefaultTextProvider@1da2737], property=theme]
2012-01-01 14:43:25,034 DEBUG com.opensymphony.xwork2.conversion.impl.InstantiatingNullHandler.debug:68 - Entering nullPropertyValue [target=org.apache.struts2.util.AttributeMap@428527, property=theme]
2012-01-01 14:43:25,035 DEBUG com.opensymphony.xwork2.conversion.impl.XWorkConverter.debug:68 - Property: null
2012-01-01 14:43:25,035 DEBUG com.opensymphony.xwork2.conversion.impl.XWorkConverter.debug:68 - Class: com.opensymphony.xwork2.util.CompoundRoot
2012-01-01 14:43:25,036 DEBUG com.opensymphony.xwork2.conversion.impl.XWorkConverter.debug:68 - field-level type converter for property [null] = none found
2012-01-01 14:43:25,036 DEBUG com.opensymphony.xwork2.conversion.impl.XWorkConverter.debug:68 - global-level type converter for property [null] = none found
2012-01-01 14:43:25,036 DEBUG com.opensymphony.xwork2.conversion.impl.XWorkConverter.debug:68 - falling back to default type converter [com.opensymphony.xwork2.conversion.impl.XWorkBasicConverter@1e26602]
2012-01-01 14:43:25,037 DEBUG com.opensymphony.xwork2.conversion.impl.InstantiatingNullHandler.debug:68 - Entering nullPropertyValue [target=[com.opensymphony.xwork2.DefaultTextProvider@1da2737], property=contato]
2012-01-01 14:43:25,038 DEBUG com.opensymphony.xwork2.ognl.accessor.XWorkMapPropertyAccessor.debug:68 - Entering getProperty (ognl.OgnlContext@23a20406,org.apache.struts2.util.AttributeMap@428527,templateDir)
2012-01-01 14:43:25,038 DEBUG com.opensymphony.xwork2.conversion.impl.InstantiatingNullHandler.debug:68 - Entering nullPropertyValue [target=[com.opensymphony.xwork2.DefaultTextProvider@1da2737], property=templateDir]
2012-01-01 14:43:25,039 DEBUG com.opensymphony.xwork2.conversion.impl.InstantiatingNullHandler.debug:68 - Entering nullPropertyValue [target=[com.opensymphony.xwork2.DefaultTextProvider@1da2737], property=templateDir]
2012-01-01 14:43:25,039 DEBUG com.opensymphony.xwork2.conversion.impl.InstantiatingNullHandler.debug:68 - Entering nullPropertyValue [target=org.apache.struts2.util.AttributeMap@428527, property=templateDir]
2012-01-01 14:43:25,040 DEBUG com.opensymphony.xwork2.conversion.impl.XWorkConverter.debug:68 - Property: null
2012-01-01 14:43:25,040 DEBUG com.opensymphony.xwork2.conversion.impl.XWorkConverter.debug:68 - Class: com.opensymphony.xwork2.util.CompoundRoot
2012-01-01 14:43:25,040 DEBUG com.opensymphony.xwork2.conversion.impl.XWorkConverter.debug:68 - field-level type converter for property [null] = none found
2012-01-01 14:43:25,041 DEBUG com.opensymphony.xwork2.conversion.impl.XWorkConverter.debug:68 - global-level type converter for property [null] = none found
2012-01-01 14:43:25,041 DEBUG com.opensymphony.xwork2.conversion.impl.XWorkConverter.debug:68 - falling back to default type converter [com.opensymphony.xwork2.conversion.impl.XWorkBasicConverter@1e26602]
2012-01-01 14:43:25,042 DEBUG com.opensymphony.xwork2.ognl.accessor.XWorkMapPropertyAccessor.debug:68 - Entering getProperty (ognl.OgnlContext@23a20406,org.apache.struts2.util.AttributeMap@428527,theme)
2012-01-01 14:43:25,042 DEBUG com.opensymphony.xwork2.conversion.impl.InstantiatingNullHandler.debug:68 - Entering nullPropertyValue [target=[com.opensymphony.xwork2.DefaultTextProvider@1da2737], property=theme]
2012-01-01 14:43:25,043 DEBUG com.opensymphony.xwork2.conversion.impl.InstantiatingNullHandler.debug:68 - Entering nullPropertyValue [target=[com.opensymphony.xwork2.DefaultTextProvider@1da2737], property=theme]
2012-01-01 14:43:25,043 DEBUG com.opensymphony.xwork2.conversion.impl.InstantiatingNullHandler.debug:68 - Entering nullPropertyValue [target=org.apache.struts2.util.AttributeMap@428527, property=theme]
2012-01-01 14:43:25,043 DEBUG com.opensymphony.xwork2.conversion.impl.XWorkConverter.debug:68 - Property: null
2012-01-01 14:43:25,044 DEBUG com.opensymphony.xwork2.conversion.impl.XWorkConverter.debug:68 - Class: com.opensymphony.xwork2.util.CompoundRoot
2012-01-01 14:43:25,044 DEBUG com.opensymphony.xwork2.conversion.impl.XWorkConverter.debug:68 - field-level type converter for property [null] = none found
2012-01-01 14:43:25,044 DEBUG com.opensymphony.xwork2.conversion.impl.XWorkConverter.debug:68 - global-level type converter for property [null] = none found
2012-01-01 14:43:25,045 DEBUG com.opensymphony.xwork2.conversion.impl.XWorkConverter.debug:68 - falling back to default type converter [com.opensymphony.xwork2.conversion.impl.XWorkBasicConverter@1e26602]
2012-01-01 14:43:25,045 DEBUG org.apache.struts2.components.UIBean.debug:68 - Rendering template /template/xhtml/text
2012-01-01 14:43:25,048 DEBUG org.apache.struts2.components.template.FreemarkerTemplateEngine.debug:68 - Rendering template /template/xhtml/text.ftl
2012-01-01 14:43:25,054 DEBUG com.opensymphony.xwork2.conversion.impl.InstantiatingNullHandler.debug:68 - Entering nullPropertyValue [target=[org.apache.struts2.components.TextField@ea3cdf, com.opensymphony.xwork2.DefaultTextProvider@1da2737], property=fieldErrors]
2012-01-01 14:43:25,055 DEBUG com.opensymphony.xwork2.conversion.impl.InstantiatingNullHandler.debug:68 - Entering nullPropertyValue [target=[org.apache.struts2.components.TextField@ea3cdf, com.opensymphony.xwork2.DefaultTextProvider@1da2737], property=fieldErrors]
2012-01-01 14:43:25,064 DEBUG com.opensymphony.xwork2.conversion.impl.InstantiatingNullHandler.debug:68 - Entering nullPropertyValue [target=[org.apache.struts2.components.TextField@ea3cdf, com.opensymphony.xwork2.DefaultTextProvider@1da2737], property=fieldErrors]
2012-01-01 14:43:25,065 DEBUG com.opensymphony.xwork2.conversion.impl.InstantiatingNullHandler.debug:68 - Entering nullPropertyValue [target=[org.apache.struts2.components.TextField@ea3cdf, com.opensymphony.xwork2.DefaultTextProvider@1da2737], property=fieldErrors]
2012-01-01 14:43:25,078 DEBUG com.opensymphony.xwork2.config.ConfigurationManager.debug:68 - Checking ConfigurationProviders for reload.
2012-01-01 14:43:25,078 DEBUG com.opensymphony.xwork2.ognl.accessor.XWorkMapPropertyAccessor.debug:68 - Entering getProperty (ognl.OgnlContext@23188dc0,org.apache.struts2.util.AttributeMap@8d41f2,templateDir)
2012-01-01 14:43:25,079 DEBUG com.opensymphony.xwork2.conversion.impl.InstantiatingNullHandler.debug:68 - Entering nullPropertyValue [target=[com.opensymphony.xwork2.DefaultTextProvider@1da2737], property=templateDir]
2012-01-01 14:43:25,079 DEBUG com.opensymphony.xwork2.conversion.impl.InstantiatingNullHandler.debug:68 - Entering nullPropertyValue [target=[com.opensymphony.xwork2.DefaultTextProvider@1da2737], property=templateDir]
2012-01-01 14:43:25,080 DEBUG com.opensymphony.xwork2.conversion.impl.InstantiatingNullHandler.debug:68 - Entering nullPropertyValue [target=org.apache.struts2.util.AttributeMap@8d41f2, property=templateDir]
2012-01-01 14:43:25,080 DEBUG com.opensymphony.xwork2.conversion.impl.XWorkConverter.debug:68 - Property: null
2012-01-01 14:43:25,081 DEBUG com.opensymphony.xwork2.conversion.impl.XWorkConverter.debug:68 - Class: com.opensymphony.xwork2.util.CompoundRoot
2012-01-01 14:43:25,081 DEBUG com.opensymphony.xwork2.conversion.impl.XWorkConverter.debug:68 - field-level type converter for property [null] = none found
2012-01-01 14:43:25,081 DEBUG com.opensymphony.xwork2.conversion.impl.XWorkConverter.debug:68 - global-level type converter for property [null] = none found
2012-01-01 14:43:25,082 DEBUG com.opensymphony.xwork2.conversion.impl.XWorkConverter.debug:68 - falling back to default type converter [com.opensymphony.xwork2.conversion.impl.XWorkBasicConverter@1e26602]
2012-01-01 14:43:25,082 DEBUG com.opensymphony.xwork2.ognl.accessor.XWorkMapPropertyAccessor.debug:68 - Entering getProperty (ognl.OgnlContext@23188dc0,org.apache.struts2.util.AttributeMap@8d41f2,theme)
2012-01-01 14:43:25,083 DEBUG com.opensymphony.xwork2.conversion.impl.InstantiatingNullHandler.debug:68 - Entering nullPropertyValue [target=[com.opensymphony.xwork2.DefaultTextProvider@1da2737], property=theme]
2012-01-01 14:43:25,083 DEBUG com.opensymphony.xwork2.conversion.impl.InstantiatingNullHandler.debug:68 - Entering nullPropertyValue [target=[com.opensymphony.xwork2.DefaultTextProvider@1da2737], property=theme]
2012-01-01 14:43:25,083 DEBUG com.opensymphony.xwork2.conversion.impl.InstantiatingNullHandler.debug:68 - Entering nullPropertyValue [target=org.apache.struts2.util.AttributeMap@8d41f2, property=theme]
2012-01-01 14:43:25,084 DEBUG com.opensymphony.xwork2.conversion.impl.XWorkConverter.debug:68 - Property: null
2012-01-01 14:43:25,084 DEBUG com.opensymphony.xwork2.conversion.impl.XWorkConverter.debug:68 - Class: com.opensymphony.xwork2.util.CompoundRoot
2012-01-01 14:43:25,085 DEBUG com.opensymphony.xwork2.conversion.impl.XWorkConverter.debug:68 - field-level type converter for property [null] = none found
2012-01-01 14:43:25,085 DEBUG com.opensymphony.xwork2.conversion.impl.XWorkConverter.debug:68 - global-level type converter for property [null] = none found
2012-01-01 14:43:25,085 DEBUG com.opensymphony.xwork2.conversion.impl.XWorkConverter.debug:68 - falling back to default type converter [com.opensymphony.xwork2.conversion.impl.XWorkBasicConverter@1e26602]
2012-01-01 14:43:25,086 DEBUG com.opensymphony.xwork2.conversion.impl.InstantiatingNullHandler.debug:68 - Entering nullPropertyValue [target=[com.opensymphony.xwork2.DefaultTextProvider@1da2737], property=celular]
2012-01-01 14:43:25,087 DEBUG com.opensymphony.xwork2.conversion.impl.XWorkConverter.debug:68 - Property: null
2012-01-01 14:43:25,087 DEBUG com.opensymphony.xwork2.conversion.impl.XWorkConverter.debug:68 - Class: com.opensymphony.xwork2.util.CompoundRoot
2012-01-01 14:43:25,087 DEBUG com.opensymphony.xwork2.conversion.impl.XWorkConverter.debug:68 - field-level type converter for property [null] = none found
2012-01-01 14:43:25,088 DEBUG com.opensymphony.xwork2.conversion.impl.XWorkConverter.debug:68 - global-level type converter for property [null] = none found
2012-01-01 14:43:25,088 DEBUG com.opensymphony.xwork2.conversion.impl.XWorkConverter.debug:68 - falling back to default type converter [com.opensymphony.xwork2.conversion.impl.XWorkBasicConverter@1e26602]
2012-01-01 14:43:25,089 DEBUG com.opensymphony.xwork2.ognl.accessor.XWorkMapPropertyAccessor.debug:68 - Entering getProperty (ognl.OgnlContext@23188dc0,org.apache.struts2.util.AttributeMap@8d41f2,templateDir)
2012-01-01 14:43:25,089 DEBUG com.opensymphony.xwork2.conversion.impl.InstantiatingNullHandler.debug:68 - Entering nullPropertyValue [target=[com.opensymphony.xwork2.DefaultTextProvider@1da2737], property=templateDir]
2012-01-01 14:43:25,090 DEBUG com.opensymphony.xwork2.conversion.impl.InstantiatingNullHandler.debug:68 - Entering nullPropertyValue [target=[com.opensymphony.xwork2.DefaultTextProvider@1da2737], property=templateDir]
2012-01-01 14:43:25,090 DEBUG com.opensymphony.xwork2.conversion.impl.InstantiatingNullHandler.debug:68 - Entering nullPropertyValue [target=org.apache.struts2.util.AttributeMap@8d41f2, property=templateDir]
2012-01-01 14:43:25,091 DEBUG com.opensymphony.xwork2.conversion.impl.XWorkConverter.debug:68 - Property: null
2012-01-01 14:43:25,091 DEBUG com.opensymphony.xwork2.conversion.impl.XWorkConverter.debug:68 - Class: com.opensymphony.xwork2.util.CompoundRoot
2012-01-01 14:43:25,091 DEBUG com.opensymphony.xwork2.conversion.impl.XWorkConverter.debug:68 - field-level type converter for property [null] = none found
2012-01-01 14:43:25,092 DEBUG com.opensymphony.xwork2.conversion.impl.XWorkConverter.debug:68 - global-level type converter for property [null] = none found
2012-01-01 14:43:25,092 DEBUG com.opensymphony.xwork2.conversion.impl.XWorkConverter.debug:68 - falling back to default type converter [com.opensymphony.xwork2.conversion.impl.XWorkBasicConverter@1e26602]
2012-01-01 14:43:25,092 DEBUG com.opensymphony.xwork2.ognl.accessor.XWorkMapPropertyAccessor.debug:68 - Entering getProperty (ognl.OgnlContext@23188dc0,org.apache.struts2.util.AttributeMap@8d41f2,theme)
2012-01-01 14:43:25,093 DEBUG com.opensymphony.xwork2.conversion.impl.InstantiatingNullHandler.debug:68 - Entering nullPropertyValue [target=[com.opensymphony.xwork2.DefaultTextProvider@1da2737], property=theme]
2012-01-01 14:43:25,093 DEBUG com.opensymphony.xwork2.conversion.impl.InstantiatingNullHandler.debug:68 - Entering nullPropertyValue [target=[com.opensymphony.xwork2.DefaultTextProvider@1da2737], property=theme]
2012-01-01 14:43:25,094 DEBUG com.opensymphony.xwork2.conversion.impl.InstantiatingNullHandler.debug:68 - Entering nullPropertyValue [target=org.apache.struts2.util.AttributeMap@8d41f2, property=theme]
2012-01-01 14:43:25,094 DEBUG com.opensymphony.xwork2.conversion.impl.XWorkConverter.debug:68 - Property: null
2012-01-01 14:43:25,094 DEBUG com.opensymphony.xwork2.conversion.impl.XWorkConverter.debug:68 - Class: com.opensymphony.xwork2.util.CompoundRoot
2012-01-01 14:43:25,094 DEBUG com.opensymphony.xwork2.conversion.impl.XWorkConverter.debug:68 - field-level type converter for property [null] = none found
2012-01-01 14:43:25,095 DEBUG com.opensymphony.xwork2.conversion.impl.XWorkConverter.debug:68 - global-level type converter for property [null] = none found
2012-01-01 14:43:25,095 DEBUG com.opensymphony.xwork2.conversion.impl.XWorkConverter.debug:68 - falling back to default type converter [com.opensymphony.xwork2.conversion.impl.XWorkBasicConverter@1e26602]
2012-01-01 14:43:25,095 DEBUG org.apache.struts2.components.UIBean.debug:68 - Rendering template /template/xhtml/text
2012-01-01 14:43:25,097 DEBUG org.apache.struts2.components.template.FreemarkerTemplateEngine.debug:68 - Rendering template /template/xhtml/text.ftl
2012-01-01 14:43:25,101 DEBUG com.opensymphony.xwork2.conversion.impl.InstantiatingNullHandler.debug:68 - Entering nullPropertyValue [target=[org.apache.struts2.components.TextField@388c74, com.opensymphony.xwork2.DefaultTextProvider@1da2737], property=fieldErrors]
2012-01-01 14:43:25,101 DEBUG com.opensymphony.xwork2.conversion.impl.InstantiatingNullHandler.debug:68 - Entering nullPropertyValue [target=[org.apache.struts2.components.TextField@388c74, com.opensymphony.xwork2.DefaultTextProvider@1da2737], property=fieldErrors]
2012-01-01 14:43:25,109 DEBUG com.opensymphony.xwork2.conversion.impl.InstantiatingNullHandler.debug:68 - Entering nullPropertyValue [target=[org.apache.struts2.components.TextField@388c74, com.opensymphony.xwork2.DefaultTextProvider@1da2737], property=fieldErrors]
2012-01-01 14:43:25,109 DEBUG com.opensymphony.xwork2.conversion.impl.InstantiatingNullHandler.debug:68 - Entering nullPropertyValue [target=[org.apache.struts2.components.TextField@388c74, com.opensymphony.xwork2.DefaultTextProvider@1da2737], property=fieldErrors]
2012-01-01 14:43:25,137 DEBUG com.opensymphony.xwork2.config.ConfigurationManager.debug:68 - Checking ConfigurationProviders for reload.
2012-01-01 14:43:25,145 DEBUG com.opensymphony.xwork2.ognl.accessor.XWorkMapPropertyAccessor.debug:68 - Entering getProperty (ognl.OgnlContext@2516ab79,org.apache.struts2.util.AttributeMap@1bb205a,templateDir)
2012-01-01 14:43:25,146 DEBUG com.opensymphony.xwork2.conversion.impl.InstantiatingNullHandler.debug:68 - Entering nullPropertyValue [target=[com.opensymphony.xwork2.DefaultTextProvider@1da2737], property=templateDir]
2012-01-01 14:43:25,146 DEBUG com.opensymphony.xwork2.conversion.impl.InstantiatingNullHandler.debug:68 - Entering nullPropertyValue [target=[com.opensymphony.xwork2.DefaultTextProvider@1da2737], property=templateDir]
2012-01-01 14:43:25,147 DEBUG com.opensymphony.xwork2.conversion.impl.InstantiatingNullHandler.debug:68 - Entering nullPropertyValue [target=org.apache.struts2.util.AttributeMap@1bb205a, property=templateDir]
2012-01-01 14:43:25,147 DEBUG com.opensymphony.xwork2.conversion.impl.XWorkConverter.debug:68 - Property: null
2012-01-01 14:43:25,148 DEBUG com.opensymphony.xwork2.conversion.impl.XWorkConverter.debug:68 - Class: com.opensymphony.xwork2.util.CompoundRoot
2012-01-01 14:43:25,148 DEBUG com.opensymphony.xwork2.conversion.impl.XWorkConverter.debug:68 - field-level type converter for property [null] = none found
2012-01-01 14:43:25,148 DEBUG com.opensymphony.xwork2.conversion.impl.XWorkConverter.debug:68 - global-level type converter for property [null] = none found
2012-01-01 14:43:25,149 DEBUG com.opensymphony.xwork2.conversion.impl.XWorkConverter.debug:68 - falling back to default type converter [com.opensymphony.xwork2.conversion.impl.XWorkBasicConverter@1e26602]
2012-01-01 14:43:25,149 DEBUG com.opensymphony.xwork2.ognl.accessor.XWorkMapPropertyAccessor.debug:68 - Entering getProperty (ognl.OgnlContext@2516ab79,org.apache.struts2.util.AttributeMap@1bb205a,theme)
2012-01-01 14:43:25,150 DEBUG com.opensymphony.xwork2.conversion.impl.InstantiatingNullHandler.debug:68 - Entering nullPropertyValue [target=[com.opensymphony.xwork2.DefaultTextProvider@1da2737], property=theme]
2012-01-01 14:43:25,150 DEBUG com.opensymphony.xwork2.conversion.impl.InstantiatingNullHandler.debug:68 - Entering nullPropertyValue [target=[com.opensymphony.xwork2.DefaultTextProvider@1da2737], property=theme]
2012-01-01 14:43:25,150 DEBUG com.opensymphony.xwork2.conversion.impl.InstantiatingNullHandler.debug:68 - Entering nullPropertyValue [target=org.apache.struts2.util.AttributeMap@1bb205a, property=theme]
2012-01-01 14:43:25,151 DEBUG com.opensymphony.xwork2.conversion.impl.XWorkConverter.debug:68 - Property: null
2012-01-01 14:43:25,151 DEBUG com.opensymphony.xwork2.conversion.impl.XWorkConverter.debug:68 - Class: com.opensymphony.xwork2.util.CompoundRoot
2012-01-01 14:43:25,151 DEBUG com.opensymphony.xwork2.conversion.impl.XWorkConverter.debug:68 - field-level type converter for property [null] = none found
2012-01-01 14:43:25,152 DEBUG com.opensymphony.xwork2.conversion.impl.XWorkConverter.debug:68 - global-level type converter for property [null] = none found
2012-01-01 14:43:25,152 DEBUG com.opensymphony.xwork2.conversion.impl.XWorkConverter.debug:68 - falling back to default type converter [com.opensymphony.xwork2.conversion.impl.XWorkBasicConverter@1e26602]
2012-01-01 14:43:25,153 DEBUG com.opensymphony.xwork2.ognl.accessor.XWorkMapPropertyAccessor.debug:68 - Entering getProperty (ognl.OgnlContext@2516ab79,org.apache.struts2.util.AttributeMap@1bb205a,templateDir)
2012-01-01 14:43:25,153 DEBUG com.opensymphony.xwork2.conversion.impl.InstantiatingNullHandler.debug:68 - Entering nullPropertyValue [target=[com.opensymphony.xwork2.DefaultTextProvider@1da2737], property=templateDir]
2012-01-01 14:43:25,154 DEBUG com.opensymphony.xwork2.conversion.impl.InstantiatingNullHandler.debug:68 - Entering nullPropertyValue [target=[com.opensymphony.xwork2.DefaultTextProvider@1da2737], property=templateDir]
2012-01-01 14:43:25,154 DEBUG com.opensymphony.xwork2.conversion.impl.InstantiatingNullHandler.debug:68 - Entering nullPropertyValue [target=org.apache.struts2.util.AttributeMap@1bb205a, property=templateDir]
2012-01-01 14:43:25,155 DEBUG com.opensymphony.xwork2.conversion.impl.XWorkConverter.debug:68 - Property: null
2012-01-01 14:43:25,155 DEBUG com.opensymphony.xwork2.conversion.impl.XWorkConverter.debug:68 - Class: com.opensymphony.xwork2.util.CompoundRoot
2012-01-01 14:43:25,155 DEBUG com.opensymphony.xwork2.conversion.impl.XWorkConverter.debug:68 - field-level type converter for property [null] = none found
2012-01-01 14:43:25,156 DEBUG com.opensymphony.xwork2.conversion.impl.XWorkConverter.debug:68 - global-level type converter for property [null] = none found
2012-01-01 14:43:25,156 DEBUG com.opensymphony.xwork2.conversion.impl.XWorkConverter.debug:68 - falling back to default type converter [com.opensymphony.xwork2.conversion.impl.XWorkBasicConverter@1e26602]
2012-01-01 14:43:25,157 DEBUG com.opensymphony.xwork2.ognl.accessor.XWorkMapPropertyAccessor.debug:68 - Entering getProperty (ognl.OgnlContext@2516ab79,org.apache.struts2.util.AttributeMap@1bb205a,theme)
2012-01-01 14:43:25,157 DEBUG com.opensymphony.xwork2.conversion.impl.InstantiatingNullHandler.debug:68 - Entering nullPropertyValue [target=[com.opensymphony.xwork2.DefaultTextProvider@1da2737], property=theme]
2012-01-01 14:43:25,157 DEBUG com.opensymphony.xwork2.conversion.impl.InstantiatingNullHandler.debug:68 - Entering nullPropertyValue [target=[com.opensymphony.xwork2.DefaultTextProvider@1da2737], property=theme]
2012-01-01 14:43:25,158 DEBUG com.opensymphony.xwork2.conversion.impl.InstantiatingNullHandler.debug:68 - Entering nullPropertyValue [target=org.apache.struts2.util.AttributeMap@1bb205a, property=theme]
2012-01-01 14:43:25,158 DEBUG com.opensymphony.xwork2.conversion.impl.XWorkConverter.debug:68 - Property: null
2012-01-01 14:43:25,158 DEBUG com.opensymphony.xwork2.conversion.impl.XWorkConverter.debug:68 - Class: com.opensymphony.xwork2.util.CompoundRoot
2012-01-01 14:43:25,159 DEBUG com.opensymphony.xwork2.conversion.impl.XWorkConverter.debug:68 - field-level type converter for property [null] = none found
2012-01-01 14:43:25,159 DEBUG com.opensymphony.xwork2.conversion.impl.XWorkConverter.debug:68 - global-level type converter for property [null] = none found
2012-01-01 14:43:25,159 DEBUG com.opensymphony.xwork2.conversion.impl.XWorkConverter.debug:68 - falling back to default type converter [com.opensymphony.xwork2.conversion.impl.XWorkBasicConverter@1e26602]
2012-01-01 14:43:25,160 DEBUG org.apache.struts2.components.UIBean.debug:68 - Rendering template /template/xhtml/submit
2012-01-01 14:43:25,165 DEBUG org.apache.struts2.components.template.FreemarkerTemplateEngine.debug:68 - Rendering template /template/xhtml/submit.ftl
2012-01-01 14:43:25,225 DEBUG com.opensymphony.xwork2.ognl.accessor.XWorkMapPropertyAccessor.debug:68 - Entering getProperty (ognl.OgnlContext@f53a79ac,{templateDir=template, theme=xhtml, dynamicAttributes={}, nameValue=enviar, id=cadastra_0, form={templateDir=template, theme=xhtml, dynamicAttributes={}, action=/strutsproj/cadastra.html, actionName=cadastra, actionClass=class br.com.strutsproj.action.ContatoAction, namespace=, name=cadastra, id=cadastra, tagNames=[contato.nome, contato.dataNascimento, celular]}, type=input, align=right},nameValue)
2012-01-01 14:43:25,253 DEBUG com.opensymphony.xwork2.ognl.accessor.XWorkMapPropertyAccessor.debug:68 - Entering getProperty (ognl.OgnlContext@2516ab79,org.apache.struts2.util.AttributeMap@1bb205a,templateDir)
2012-01-01 14:43:25,254 DEBUG com.opensymphony.xwork2.conversion.impl.InstantiatingNullHandler.debug:68 - Entering nullPropertyValue [target=[com.opensymphony.xwork2.DefaultTextProvider@1da2737], property=templateDir]
2012-01-01 14:43:25,254 DEBUG com.opensymphony.xwork2.conversion.impl.InstantiatingNullHandler.debug:68 - Entering nullPropertyValue [target=[com.opensymphony.xwork2.DefaultTextProvider@1da2737], property=templateDir]
2012-01-01 14:43:25,255 DEBUG com.opensymphony.xwork2.conversion.impl.InstantiatingNullHandler.debug:68 - Entering nullPropertyValue [target=org.apache.struts2.util.AttributeMap@1bb205a, property=templateDir]
2012-01-01 14:43:25,255 DEBUG com.opensymphony.xwork2.conversion.impl.XWorkConverter.debug:68 - Property: null
2012-01-01 14:43:25,255 DEBUG com.opensymphony.xwork2.conversion.impl.XWorkConverter.debug:68 - Class: com.opensymphony.xwork2.util.CompoundRoot
2012-01-01 14:43:25,256 DEBUG com.opensymphony.xwork2.conversion.impl.XWorkConverter.debug:68 - field-level type converter for property [null] = none found
2012-01-01 14:43:25,256 DEBUG com.opensymphony.xwork2.conversion.impl.XWorkConverter.debug:68 - global-level type converter for property [null] = none found
2012-01-01 14:43:25,256 DEBUG com.opensymphony.xwork2.conversion.impl.XWorkConverter.debug:68 - falling back to default type converter [com.opensymphony.xwork2.conversion.impl.XWorkBasicConverter@1e26602]
2012-01-01 14:43:25,257 DEBUG com.opensymphony.xwork2.ognl.accessor.XWorkMapPropertyAccessor.debug:68 - Entering getProperty (ognl.OgnlContext@2516ab79,org.apache.struts2.util.AttributeMap@1bb205a,theme)
2012-01-01 14:43:25,257 DEBUG com.opensymphony.xwork2.conversion.impl.InstantiatingNullHandler.debug:68 - Entering nullPropertyValue [target=[com.opensymphony.xwork2.DefaultTextProvider@1da2737], property=theme]
2012-01-01 14:43:25,258 DEBUG com.opensymphony.xwork2.conversion.impl.InstantiatingNullHandler.debug:68 - Entering nullPropertyValue [target=[com.opensymphony.xwork2.DefaultTextProvider@1da2737], property=theme]
2012-01-01 14:43:25,258 DEBUG com.opensymphony.xwork2.conversion.impl.InstantiatingNullHandler.debug:68 - Entering nullPropertyValue [target=org.apache.struts2.util.AttributeMap@1bb205a, property=theme]
2012-01-01 14:43:25,259 DEBUG com.opensymphony.xwork2.conversion.impl.XWorkConverter.debug:68 - Property: null
2012-01-01 14:43:25,259 DEBUG com.opensymphony.xwork2.conversion.impl.XWorkConverter.debug:68 - Class: com.opensymphony.xwork2.util.CompoundRoot
2012-01-01 14:43:25,259 DEBUG com.opensymphony.xwork2.conversion.impl.XWorkConverter.debug:68 - field-level type converter for property [null] = none found
2012-01-01 14:43:25,260 DEBUG com.opensymphony.xwork2.conversion.impl.XWorkConverter.debug:68 - global-level type converter for property [null] = none found
2012-01-01 14:43:25,260 DEBUG com.opensymphony.xwork2.conversion.impl.XWorkConverter.debug:68 - falling back to default type converter [com.opensymphony.xwork2.conversion.impl.XWorkBasicConverter@1e26602]
2012-01-01 14:43:25,260 DEBUG com.opensymphony.xwork2.ognl.accessor.XWorkMapPropertyAccessor.debug:68 - Entering getProperty (ognl.OgnlContext@2516ab79,org.apache.struts2.util.AttributeMap@1bb205a,templateDir)
2012-01-01 14:43:25,261 DEBUG com.opensymphony.xwork2.conversion.impl.InstantiatingNullHandler.debug:68 - Entering nullPropertyValue [target=[com.opensymphony.xwork2.DefaultTextProvider@1da2737], property=templateDir]
2012-01-01 14:43:25,261 DEBUG com.opensymphony.xwork2.conversion.impl.InstantiatingNullHandler.debug:68 - Entering nullPropertyValue [target=[com.opensymphony.xwork2.DefaultTextProvider@1da2737], property=templateDir]
2012-01-01 14:43:25,262 DEBUG com.opensymphony.xwork2.conversion.impl.InstantiatingNullHandler.debug:68 - Entering nullPropertyValue [target=org.apache.struts2.util.AttributeMap@1bb205a, property=templateDir]
2012-01-01 14:43:25,262 DEBUG com.opensymphony.xwork2.conversion.impl.XWorkConverter.debug:68 - Property: null
2012-01-01 14:43:25,262 DEBUG com.opensymphony.xwork2.conversion.impl.XWorkConverter.debug:68 - Class: com.opensymphony.xwork2.util.CompoundRoot
2012-01-01 14:43:25,263 DEBUG com.opensymphony.xwork2.conversion.impl.XWorkConverter.debug:68 - field-level type converter for property [null] = none found
2012-01-01 14:43:25,263 DEBUG com.opensymphony.xwork2.conversion.impl.XWorkConverter.debug:68 - global-level type converter for property [null] = none found
2012-01-01 14:43:25,263 DEBUG com.opensymphony.xwork2.conversion.impl.XWorkConverter.debug:68 - falling back to default type converter [com.opensymphony.xwork2.conversion.impl.XWorkBasicConverter@1e26602]
2012-01-01 14:43:25,264 DEBUG com.opensymphony.xwork2.ognl.accessor.XWorkMapPropertyAccessor.debug:68 - Entering getProperty (ognl.OgnlContext@2516ab79,org.apache.struts2.util.AttributeMap@1bb205a,theme)
2012-01-01 14:43:25,264 DEBUG com.opensymphony.xwork2.conversion.impl.InstantiatingNullHandler.debug:68 - Entering nullPropertyValue [target=[com.opensymphony.xwork2.DefaultTextProvider@1da2737], property=theme]
2012-01-01 14:43:25,265 DEBUG com.opensymphony.xwork2.conversion.impl.InstantiatingNullHandler.debug:68 - Entering nullPropertyValue [target=[com.opensymphony.xwork2.DefaultTextProvider@1da2737], property=theme]
2012-01-01 14:43:25,265 DEBUG com.opensymphony.xwork2.conversion.impl.InstantiatingNullHandler.debug:68 - Entering nullPropertyValue [target=org.apache.struts2.util.AttributeMap@1bb205a, property=theme]
2012-01-01 14:43:25,266 DEBUG com.opensymphony.xwork2.conversion.impl.XWorkConverter.debug:68 - Property: null
2012-01-01 14:43:25,266 DEBUG com.opensymphony.xwork2.conversion.impl.XWorkConverter.debug:68 - Class: com.opensymphony.xwork2.util.CompoundRoot
2012-01-01 14:43:25,266 DEBUG com.opensymphony.xwork2.conversion.impl.XWorkConverter.debug:68 - field-level type converter for property [null] = none found
2012-01-01 14:43:25,267 DEBUG com.opensymphony.xwork2.conversion.impl.XWorkConverter.debug:68 - global-level type converter for property [null] = none found
2012-01-01 14:43:25,267 DEBUG com.opensymphony.xwork2.conversion.impl.XWorkConverter.debug:68 - falling back to default type converter [com.opensymphony.xwork2.conversion.impl.XWorkBasicConverter@1e26602]
2012-01-01 14:43:25,267 DEBUG org.apache.struts2.components.UIBean.debug:68 - Rendering template /template/xhtml/submit-close
2012-01-01 14:43:25,272 DEBUG org.apache.struts2.components.template.FreemarkerTemplateEngine.debug:68 - Rendering template /template/xhtml/submit-close.ftl
2012-01-01 14:43:25,281 DEBUG com.opensymphony.xwork2.ognl.accessor.XWorkMapPropertyAccessor.debug:68 - Entering getProperty (ognl.OgnlContext@25ed01c2,org.apache.struts2.util.AttributeMap@1bb205a,templateDir)
2012-01-01 14:43:25,281 DEBUG com.opensymphony.xwork2.conversion.impl.InstantiatingNullHandler.debug:68 - Entering nullPropertyValue [target=[com.opensymphony.xwork2.DefaultTextProvider@1da2737], property=templateDir]
2012-01-01 14:43:25,282 DEBUG com.opensymphony.xwork2.conversion.impl.InstantiatingNullHandler.debug:68 - Entering nullPropertyValue [target=[com.opensymphony.xwork2.DefaultTextProvider@1da2737], property=templateDir]
2012-01-01 14:43:25,282 DEBUG com.opensymphony.xwork2.conversion.impl.InstantiatingNullHandler.debug:68 - Entering nullPropertyValue [target=org.apache.struts2.util.AttributeMap@1bb205a, property=templateDir]
2012-01-01 14:43:25,283 DEBUG com.opensymphony.xwork2.conversion.impl.XWorkConverter.debug:68 - Property: null
2012-01-01 14:43:25,283 DEBUG com.opensymphony.xwork2.conversion.impl.XWorkConverter.debug:68 - Class: com.opensymphony.xwork2.util.CompoundRoot
2012-01-01 14:43:25,283 DEBUG com.opensymphony.xwork2.conversion.impl.XWorkConverter.debug:68 - field-level type converter for property [null] = none found
2012-01-01 14:43:25,284 DEBUG com.opensymphony.xwork2.conversion.impl.XWorkConverter.debug:68 - global-level type converter for property [null] = none found
2012-01-01 14:43:25,284 DEBUG com.opensymphony.xwork2.conversion.impl.XWorkConverter.debug:68 - falling back to default type converter [com.opensymphony.xwork2.conversion.impl.XWorkBasicConverter@1e26602]
2012-01-01 14:43:25,285 DEBUG com.opensymphony.xwork2.ognl.accessor.XWorkMapPropertyAccessor.debug:68 - Entering getProperty (ognl.OgnlContext@25ed01c2,org.apache.struts2.util.AttributeMap@1bb205a,theme)
2012-01-01 14:43:25,285 DEBUG com.opensymphony.xwork2.conversion.impl.InstantiatingNullHandler.debug:68 - Entering nullPropertyValue [target=[com.opensymphony.xwork2.DefaultTextProvider@1da2737], property=theme]
2012-01-01 14:43:25,286 DEBUG com.opensymphony.xwork2.conversion.impl.InstantiatingNullHandler.debug:68 - Entering nullPropertyValue [target=[com.opensymphony.xwork2.DefaultTextProvider@1da2737], property=theme]
2012-01-01 14:43:25,286 DEBUG com.opensymphony.xwork2.conversion.impl.InstantiatingNullHandler.debug:68 - Entering nullPropertyValue [target=org.apache.struts2.util.AttributeMap@1bb205a, property=theme]
2012-01-01 14:43:25,286 DEBUG com.opensymphony.xwork2.conversion.impl.XWorkConverter.debug:68 - Property: null
2012-01-01 14:43:25,287 DEBUG com.opensymphony.xwork2.conversion.impl.XWorkConverter.debug:68 - Class: com.opensymphony.xwork2.util.CompoundRoot
2012-01-01 14:43:25,287 DEBUG com.opensymphony.xwork2.conversion.impl.XWorkConverter.debug:68 - field-level type converter for property [null] = none found
2012-01-01 14:43:25,287 DEBUG com.opensymphony.xwork2.conversion.impl.XWorkConverter.debug:68 - global-level type converter for property [null] = none found
2012-01-01 14:43:25,288 DEBUG com.opensymphony.xwork2.conversion.impl.XWorkConverter.debug:68 - falling back to default type converter [com.opensymphony.xwork2.conversion.impl.XWorkBasicConverter@1e26602]
2012-01-01 14:43:25,288 DEBUG com.opensymphony.xwork2.ognl.accessor.XWorkMapPropertyAccessor.debug:68 - Entering getProperty (ognl.OgnlContext@25ed01c2,org.apache.struts2.util.AttributeMap@1bb205a,templateDir)
2012-01-01 14:43:25,289 DEBUG com.opensymphony.xwork2.conversion.impl.InstantiatingNullHandler.debug:68 - Entering nullPropertyValue [target=[com.opensymphony.xwork2.DefaultTextProvider@1da2737], property=templateDir]
2012-01-01 14:43:25,289 DEBUG com.opensymphony.xwork2.conversion.impl.InstantiatingNullHandler.debug:68 - Entering nullPropertyValue [target=[com.opensymphony.xwork2.DefaultTextProvider@1da2737], property=templateDir]
2012-01-01 14:43:25,290 DEBUG com.opensymphony.xwork2.conversion.impl.InstantiatingNullHandler.debug:68 - Entering nullPropertyValue [target=org.apache.struts2.util.AttributeMap@1bb205a, property=templateDir]
2012-01-01 14:43:25,290 DEBUG com.opensymphony.xwork2.conversion.impl.XWorkConverter.debug:68 - Property: null
2012-01-01 14:43:25,290 DEBUG com.opensymphony.xwork2.conversion.impl.XWorkConverter.debug:68 - Class: com.opensymphony.xwork2.util.CompoundRoot
2012-01-01 14:43:25,291 DEBUG com.opensymphony.xwork2.conversion.impl.XWorkConverter.debug:68 - field-level type converter for property [null] = none found
2012-01-01 14:43:25,291 DEBUG com.opensymphony.xwork2.conversion.impl.XWorkConverter.debug:68 - global-level type converter for property [null] = none found
2012-01-01 14:43:25,291 DEBUG com.opensymphony.xwork2.conversion.impl.XWorkConverter.debug:68 - falling back to default type converter [com.opensymphony.xwork2.conversion.impl.XWorkBasicConverter@1e26602]
2012-01-01 14:43:25,292 DEBUG com.opensymphony.xwork2.ognl.accessor.XWorkMapPropertyAccessor.debug:68 - Entering getProperty (ognl.OgnlContext@25ed01c2,org.apache.struts2.util.AttributeMap@1bb205a,theme)
2012-01-01 14:43:25,292 DEBUG com.opensymphony.xwork2.conversion.impl.InstantiatingNullHandler.debug:68 - Entering nullPropertyValue [target=[com.opensymphony.xwork2.DefaultTextProvider@1da2737], property=theme]
2012-01-01 14:43:25,293 DEBUG com.opensymphony.xwork2.conversion.impl.InstantiatingNullHandler.debug:68 - Entering nullPropertyValue [target=[com.opensymphony.xwork2.DefaultTextProvider@1da2737], property=theme]
2012-01-01 14:43:25,293 DEBUG com.opensymphony.xwork2.conversion.impl.InstantiatingNullHandler.debug:68 - Entering nullPropertyValue [target=org.apache.struts2.util.AttributeMap@1bb205a, property=theme]
2012-01-01 14:43:25,293 DEBUG com.opensymphony.xwork2.conversion.impl.XWorkConverter.debug:68 - Property: null
2012-01-01 14:43:25,294 DEBUG com.opensymphony.xwork2.conversion.impl.XWorkConverter.debug:68 - Class: com.opensymphony.xwork2.util.CompoundRoot
2012-01-01 14:43:25,294 DEBUG com.opensymphony.xwork2.conversion.impl.XWorkConverter.debug:68 - field-level type converter for property [null] = none found
2012-01-01 14:43:25,294 DEBUG com.opensymphony.xwork2.conversion.impl.XWorkConverter.debug:68 - global-level type converter for property [null] = none found
2012-01-01 14:43:25,295 DEBUG com.opensymphony.xwork2.conversion.impl.XWorkConverter.debug:68 - falling back to default type converter [com.opensymphony.xwork2.conversion.impl.XWorkBasicConverter@1e26602]
2012-01-01 14:43:25,295 DEBUG org.apache.struts2.components.UIBean.debug:68 - Rendering template /template/xhtml/form-close
2012-01-01 14:43:25,301 DEBUG org.apache.struts2.components.template.FreemarkerTemplateEngine.debug:68 - Rendering template /template/xhtml/form-close.ftl

Abraço!