Aplicacao JSF e HIBERNATE
'#{managerBeanCliente.clientes.idCliente}' Target Unreachable, 'clientes' returned null .
Minha classe ManagerBeanCliente:
package br.org.shift.managerbean;
import br.org.shift.hibernate.HibernateUtil;
import br.org.shift.persistencia.Cliente;
public class ManagerBeanCliente {
private Cliente clientes;
public Cliente getClientes() {
return clientes;
}
public void setClientes(Cliente clientes) {
this.clientes = clientes;
}
public String addCliente() throws Exception{
HibernateUtil.save(clientes);
return "sucesso";
}
}
Minha classe Cliente
package br.org.shift.persistencia;
import java.util.List;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.Id;
import javax.persistence.OneToMany;
import javax.persistence.Table;
@Entity
@Table(name="Cliente", schema="public")
public class Cliente extends BeanAbstrato {
@Id
@Column
private Integer idCliente;
@Column
private String nomeCliente;
@Column
private String cpfCnpjCliente;
@OneToMany(mappedBy="Cliente")
private List<Suporte>suporte;
@OneToMany(mappedBy="Cliente")
private List<Contato>contato;
@OneToMany(mappedBy="Cliente")
private List<Projeto>projeto;
public List<Suporte> getSuporte() {
return suporte;
}
public void setSuporte(List<Suporte> suporte) {
this.suporte = suporte;
}
public List<Contato> getContato() {
return contato;
}
public void setContato(List<Contato> contato) {
this.contato = contato;
}
public List<Projeto> getProjeto() {
return projeto;
}
public void setProjeto(List<Projeto> projeto) {
this.projeto = projeto;
}
public Integer getIdCliente() {
return idCliente;
}
public void setIdCliente(Integer idCliente) {
this.idCliente = idCliente;
}
public String getNomeCliente() {
return nomeCliente;
}
public void setNomeCliente(String nomeCliente) {
this.nomeCliente = nomeCliente;
}
public String getCpfCnpjCliente() {
return cpfCnpjCliente;
}
public void setCpfCnpjCliente(String cpfCnpjCliente) {
this.cpfCnpjCliente = cpfCnpjCliente;
}
public Cliente(){
}
public Cliente(Integer idCliente, String nomeCliente, String cpfCnpjCliente) {
super();
this.idCliente = idCliente;
this.nomeCliente = nomeCliente;
this.cpfCnpjCliente = cpfCnpjCliente;
}
@Override
public int hashCode() {
final int prime = 31;
int result = 1;
result = prime * result
+ ((idCliente == null) ? 0 : idCliente.hashCode());
return result;
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (getClass() != obj.getClass())
return false;
Cliente other = (Cliente) obj;
if (idCliente == null) {
if (other.idCliente != null)
return false;
} else if (!idCliente.equals(other.idCliente))
return false;
return true;
}
}
Minha classe HibernateUtil
package br.org.shift.hibernate;
import java.io.Serializable;
import java.util.List;
import org.hibernate.HibernateException;
import org.hibernate.Query;
import org.hibernate.SessionFactory;
import org.hibernate.Transaction;
import org.hibernate.cfg.AnnotationConfiguration;
import org.hibernate.classic.Session;
import br.org.shift.persistencia.BeanAbstrato;
import br.org.shift.persistencia.Cliente;
/**
* Classe utilitaria do Hibernate
* @author Cristian
* @version 1.0
*/
public class HibernateUtil {
/**
*
*/
private static SessionFactory SESSION_FACTORY = new AnnotationConfiguration().configure().buildSessionFactory();
/**
*
*/
private static final ThreadLocal<Session> THREAD_SESSION = new ThreadLocal<Session>();
/**
*
*/
private static final ThreadLocal<Transaction> THREAD_TRANSACTION = new ThreadLocal<Transaction>();
/**
*
* @return
*/
protected SessionFactory getSESSION_FACTORY() {
return SESSION_FACTORY;
}
/**
*
* @return
* @throws Exception
*/
@SuppressWarnings("unchecked")
protected static Session getSession() throws Exception {
Session s = (Session) THREAD_SESSION.get();
try {
if (s == null || !s.isOpen()) {
s = SESSION_FACTORY.openSession();
THREAD_SESSION.set(s);
}
} catch (HibernateException ex) {
throw new Exception(ex);
}
return s;
}
/**
*
* @throws Exception
*/
@SuppressWarnings("unchecked")
protected static void closeSession() throws Exception {
try {
Session s = (Session) THREAD_SESSION.get();
//Session s = (Session) getSESSION_FACTORY();
THREAD_SESSION.set(null);
if (s != null && s.isOpen())
s.close();
} catch (HibernateException ex) {
throw new Exception(ex);
}
}
/**
*
* @throws Exception
*/
@SuppressWarnings("unchecked")
protected static void beginTransaction() throws Exception {
Transaction tx = (Transaction) THREAD_TRANSACTION.get();
try {
if (tx == null) {
tx = getSession().beginTransaction();
THREAD_TRANSACTION.set(tx);
}
} catch (HibernateException ex) {
closeSession();
throw new Exception(ex);
}
}
/**
*
* @throws Exception
*/
@SuppressWarnings("unchecked")
protected static void commitTransaction() throws Exception {
Transaction tx = (Transaction) THREAD_TRANSACTION.get();
try {
if (tx != null && !tx.wasCommitted() && !tx.wasRolledBack())
tx.commit();
THREAD_TRANSACTION.set(null);
} catch (HibernateException ex) {
rollbackTransaction();
throw new Exception(ex);
}
}
/**
*
* @throws Exception
*/
@SuppressWarnings("unchecked")
protected static void rollbackTransaction() throws Exception {
Transaction tx = (Transaction) THREAD_TRANSACTION.get();
try {
THREAD_TRANSACTION.set(null);
if (tx != null && !tx.wasCommitted() && !tx.wasRolledBack())
tx.rollback();
} catch (HibernateException ex) {
throw new Exception(ex);
}
}
/**
*
* @param bean
* @throws Exception
*/
public static void save(Cliente bean) throws Exception {
try {
beginTransaction();
getSession().save(bean);
getSession().flush();
commitTransaction();
} catch (HibernateException e) {
rollbackTransaction();
//throw new Exception("Falha ao salvar o objeto: " + bean.toString() + "(" + e.getMessage() + ")",e.getCause());
e.printStackTrace();
}
}
/**
*
* @param bean
* @throws Exception
*/
public static void delete(BeanAbstrato bean) throws Exception {
try {
beginTransaction();
getSession().clear();
getSession().delete(bean);
getSession().flush();
commitTransaction();
} catch (HibernateException e) {
rollbackTransaction();
throw new Exception("Falha ao deletar o objeto: " + bean.toString() + "(" + e.getMessage() + ")",e.getCause());
}
}
/**
*
* @param bean
* @throws Exception
*/
public static void update(BeanAbstrato bean) throws Exception {
try {
beginTransaction();
getSession().clear();
getSession().update(bean);
getSession().flush();
commitTransaction();
} catch (HibernateException e) {
rollbackTransaction();
throw new Exception("Falha ao atualizar o objeto: " + bean.toString() + "(" + e.getMessage() + ")",e.getCause());
}
}
/**
*
* @param bean
* @throws Exception
*/
public static void saveOrUpdate(BeanAbstrato bean) throws Exception {
try {
beginTransaction();
getSession().clear();
getSession().saveOrUpdate(bean);
getSession().flush();
commitTransaction();
} catch (HibernateException e) {
rollbackTransaction();
throw new Exception("Falha ao atualizar o objeto: " + bean.toString() + "(" + e.getMessage() + ")",e.getCause());
}
}
/**
*
* @param query
* @return
* @throws Exception
*/
@SuppressWarnings("unchecked")
public static List find(String query) throws Exception {
try {
beginTransaction();
getSession().clear();
Query executeQuery = getSession().createQuery(query);
List ListaObjetos = executeQuery.list();
return ListaObjetos;
} catch(Exception e) {
if((e.getCause() != null) && (e.getCause().getMessage()!=null)) {
rollbackTransaction();
throw new Exception(e.getCause().getMessage());
}
rollbackTransaction();
throw new Exception(e);
}
}
/**
* Metodo responsavel por trazer um objeto da classe passada como parametro
* @param refClass
* @param key
* @return
* @throws Exception
*/
@SuppressWarnings("unchecked")
public static Object load(Class refClass,Serializable key) throws Exception {
getSession().clear();
return getSession().get(refClass, key);
}
/**
*
* @param query
* @param session
* @return
* @throws Exception
*/
@SuppressWarnings("unchecked")
public static List createNativeQueryList(String query, Session session) throws Exception {
List list = null;
try {
beginTransaction();
list = session.createSQLQuery(query).list();
commitTransaction();
return list;
} catch (Exception e) {
if ((e.getCause() != null) && (e.getCause().getMessage() != null))
throw new Exception(e.getCause().getMessage());
throw new Exception(e);
}
}
/**
*
* @param query
* @return
* @throws Exception
*/
@SuppressWarnings("unchecked")
public static List createNativeQueryList(String query) throws Exception {
try {
return createNativeQueryList(query, getSession());
} catch (Exception e) {
if ((e.getCause() != null) && (e.getCause().getMessage() != null))
throw new Exception(e.getCause().getMessage());
throw new Exception(e);
}
}
@SuppressWarnings("unchecked")
public static List find(BeanAbstrato bean) throws Exception {
try {
beginTransaction();
List listAll = getSession().createCriteria(bean.getClass()).list();
commitTransaction();
return listAll;
} catch(Exception e) {
if((e.getCause() != null) && (e.getCause().getMessage()!=null)) {
rollbackTransaction();
throw new Exception(e.getCause().getMessage());
}
rollbackTransaction();
throw new Exception(e);
}
}
}
Meu JSP
<%@ page language="java" contentType="text/html; charset=ISO-8859-1" pageEncoding="ISO-8859-1"%>
<%@ taglib prefix="f" uri="http://java.sun.com/jsf/core"%>
<%@ taglib prefix="h" uri="http://java.sun.com/jsf/html"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Insert title here</title>
</head>
<body>
<f:view>
<h:form>
<h:inputText value="#{managerBeanCliente.clientes.idCliente}">
Codigo
</h:inputText>
<h:inputText value="#{managerBeanCliente.clientes.nomeCliente}">
Nome
</h:inputText>
<br>
<h:inputText value="#{managerBeanCliente.clientes.cpfCnpjCliente}">
Cpf
</h:inputText>
<h:commandButton value="OK" action="#{managerBeanCliente.addCliente}"/>
</h:form>
</f:view>
</body>
</html>
Cristian Mietlicki
Respostas
Dyego Carmo
02/06/2009
private Cliente clientes;
para:
private Cliente clientes = new Cliente();
Isto acontece pois a propriedade clientes é NULL... entao nao eh possivel acessar seu id :)
Cristian Mietlicki
02/06/2009
public static void save(ClasseAbstrata bean) throws Exception {
try {
beginTransaction();
getSession().save(bean);
getSession().flush();
commitTransaction();
} catch (HibernateException e) {
rollbackTransaction();
//throw new Exception("Falha ao salvar o objeto: " + bean.toString() + "(" + e.getMessage() + ")",e.getCause());
e.printStackTrace();
}
}
Cristian Mietlicki
02/06/2009
public String addCliente() throws Exception{
HibernateUtil.save(clientes);
return "sucesso";
}
Cristian Mietlicki
02/06/2009
public String addCliente() throws Exception{
HibernateUtil.save(clientes);
return "sucesso";
}
Cristian Mietlicki
02/06/2009
2009-06-02 10:15:00,875 DEBUG hibernate.cfg.AnnotationConfiguration -> null <- org.dom4j.tree.DefaultAttribute@bc3811 [Attribute: name class value "br.com.shift.persistencia.Cliente"]
Dyego Carmo
02/06/2009
Cristian Mietlicki
02/06/2009
2009-06-02 10:23:06,328 DEBUG commons.digester.Digester -> [SetPropertiesRule]{f:template/div/div/table/tbody/tr/td/div/table/f:attribute/f:call} Setting property 'name' to 'getBorder'
2009-06-02 10:23:06,328 DEBUG commons.digester.Digester -> [SetPropertiesRule]{f:template/div/div/table/tbody/tr/td/div/table/f:attribute/f:call} Set org.ajax4jsf.renderkit.compiler.MethodCallElement properties
2009-06-02 10:23:06,328 DEBUG commons.beanutils.BeanUtils -> BeanUtils.populate(org.ajax4jsf.renderkit.compiler.MethodCallElement [
]
, {name=getBorder})
2009-06-02 10:23:06,328 DEBUG commons.beanutils.ConvertUtils -> Convert string 'getBorder' to class 'java.lang.String'
2009-06-02 10:23:06,328 DEBUG digester.Digester.sax -> endElement(,,f:call)
2009-06-02 10:23:06,328 DEBUG commons.digester.Digester -> match='f:template/div/div/table/tbody/tr/td/div/table/f:attribute/f:call'
2009-06-02 10:23:06,328 DEBUG commons.digester.Digester -> bodyText=''
2009-06-02 10:23:06,328 DEBUG commons.digester.Digester -> Fire body() for ObjectCreateRule[className=org.ajax4jsf.renderkit.compiler.MethodCallElement, attributeName=null]
2009-06-02 10:23:06,328 DEBUG commons.digester.Digester -> Fire body() for SetNextRule[methodName=addChild, paramType=null]
2009-06-02 10:23:06,328 DEBUG commons.digester.Digester -> Fire body() for SetPropertiesRule[]
2009-06-02 10:23:06,328 DEBUG commons.digester.Digester -> Popping body text '
'
2009-06-02 10:23:06,328 DEBUG commons.digester.Digester -> Fire end() for SetPropertiesRule[]
2009-06-02 10:23:06,328 DEBUG commons.digester.Digester -> Fire end() for SetNextRule[methodName=addChild, paramType=null]
2009-06-02 10:23:06,328 DEBUG commons.digester.Digester -> [SetNextRule]{f:template/div/div/table/tbody/tr/td/div/table/f:attribute/f:call} Call org.ajax4jsf.renderkit.compiler.AttributeElement.addChild(org.ajax4jsf.renderkit.compiler.MethodCallElement [
]
)
2009-06-02 10:23:06,328 DEBUG commons.digester.Digester -> Fire end() for ObjectCreateRule[className=org.ajax4jsf.renderkit.compiler.MethodCallElement, attributeName=null]
2009-06-02 10:23:06,328 DEBUG commons.digester.Digester -> [ObjectCreateRule]{f:template/div/div/table/tbody/tr/td/div/table/f:attribute/f:call} Pop org.ajax4jsf.renderkit.compiler.MethodCallElement
2009-06-02 10:23:06,328 DEBUG digester.Digester.sax -> characters(
)
2009-06-02 10:23:06,328 DEBUG digester.Digester.sax -> endElement(,,f:attribute)
2009-06-02 10:23:06,328 DEBUG commons.digester.Digester -> match='f:template/div/div/table/tbody/tr/td/div/table/f:attribute'
2009-06-02 10:23:06,328 DEBUG commons.digester.Digester -> bodyText='
'
2009-06-02 10:23:06,328 DEBUG commons.digester.Digester -> Fire body() for ObjectCreateRule[className=org.ajax4jsf.renderkit.compiler.AttributeElement, attributeName=null]
2009-06-02 10:23:06,328 DEBUG commons.digester.Digester -> Fire body() for SetNextRule[methodName=addChild, paramType=null]
2009-06-02 10:23:06,328 DEBUG commons.digester.Digester -> Fire body() for SetPropertiesRule[]
2009-06-02 10:23:06,328 DEBUG commons.digester.Digester -> Popping body text '
'
2009-06-02 10:23:06,328 DEBUG commons.digester.Digester -> Fire end() for SetPropertiesRule[]
2009-06-02 10:23:06,328 DEBUG commons.digester.Digester -> Fire end() for SetNextRule[methodName=addChild, paramType=null]
2009-06-02 10:23:06,328 DEBUG commons.digester.Digester -> [SetNextRule]{f:template/div/div/table/tbody/tr/td/div/table/f:attribute} Call org.ajax4jsf.renderkit.compiler.PlainElement.addChild(org.ajax4jsf.renderkit.compiler.AttributeElement [
org.ajax4jsf.renderkit.compiler.MethodCallElement [
]
;
]
)
2009-06-02 10:23:06,328 DEBUG commons.digester.Digester -> Fire end() for ObjectCreateRule[className=org.ajax4jsf.renderkit.compiler.AttributeElement, attributeName=null]
2009-06-02 10:23:06,328 DEBUG commons.digester.Digester -> [ObjectCreateRule]{f:template/div/div/table/tbody/tr/td/div/table/f:attribute} Pop org.ajax4jsf.renderkit.compiler.AttributeElement
2009-06-02 10:23:06,328 DEBUG digester.Digester.sax -> characters(
)
2009-06-02 10:23:06,328 DEBUG digester.Digester.sax -> startElement(,,f:call)
2009-06-02 10:23:06,328 DEBUG commons.digester.Digester -> Pushing body text '
'
2009-06-02 10:23:06,328 DEBUG commons.digester.Digester -> New match='f:template/div/div/table/tbody/tr/td/div/table/f:call'
2009-06-02 10:23:06,343 DEBUG commons.digester.Digester -> Fire begin() for ObjectCreateRule[className=org.ajax4jsf.renderkit.compiler.MethodCallElement, attributeName=null]
2009-06-02 10:23:06,343 DEBUG commons.digester.Digester -> [ObjectCreateRule]{f:template/div/div/table/tbody/tr/td/div/table/f:call}New org.ajax4jsf.renderkit.compiler.MethodCallElement
2009-06-02 10:23:06,343 DEBUG commons.digester.Digester -> Fire begin() for SetNextRule[methodName=addChild, paramType=null]
2009-06-02 10:23:06,343 DEBUG commons.digester.Digester -> Fire begin() for SetPropertiesRule[]
2009-06-02 10:23:06,343 DEBUG commons.digester.Digester -> [SetPropertiesRule]{f:template/div/div/table/tbody/tr/td/div/table/f:call} Setting property 'name' to 'utils.encodePassThruWithExclusions'
2009-06-02 10:23:06,343 DEBUG commons.digester.Digester -> [SetPropertiesRule]{f:template/div/div/table/tbody/tr/td/div/table/f:call} Set org.ajax4jsf.renderkit.compiler.MethodCallElement properties
2009-06-02 10:23:06,343 DEBUG commons.beanutils.BeanUtils -> BeanUtils.populate(org.ajax4jsf.renderkit.compiler.MethodCallElement [
]
, {name=utils.encodePassThruWithExclusions})
2009-06-02 10:23:06,343 DEBUG commons.beanutils.ConvertUtils -> Convert string 'utils.encodePassThruWithExclusions' to class 'java.lang.String'
2009-06-02 10:23:06,343 DEBUG digester.Digester.sax -> characters(
)
2009-06-02 10:23:06,343 DEBUG digester.Digester.sax -> startElement(,,f:parameter)
2009-06-02 10:23:06,343 DEBUG commons.digester.Digester -> Pushing body text '
'
2009-06-02 10:23:06,343 DEBUG commons.digester.Digester -> New match='f:template/div/div/table/tbody/tr/td/div/table/f:call/f:parameter'
2009-06-02 10:23:06,343 DEBUG commons.digester.Digester -> Fire begin() for ObjectCreateRule[className=org.ajax4jsf.renderkit.compiler.MethodParameterElement, attributeName=null]
2009-06-02 10:23:06,343 DEBUG commons.digester.Digester -> [ObjectCreateRule]{f:template/div/div/table/tbody/tr/td/div/table/f:call/f:parameter}New org.ajax4jsf.renderkit.compiler.MethodParameterElement
2009-06-02 10:23:06,343 DEBUG commons.digester.Digester -> Fire begin() for SetNextRule[methodName=addParameter, paramType=null]
2009-06-02 10:23:06,343 DEBUG commons.digester.Digester -> Fire begin() for SetPropertiesRule[]
2009-06-02 10:23:06,343 DEBUG commons.digester.Digester -> [SetPropertiesRule]{f:template/div/div/table/tbody/tr/td/div/table/f:call/f:parameter} Setting property 'value' to 'onclick,onselect,width,height,rows,border'
2009-06-02 10:23:06,343 DEBUG commons.digester.Digester -> [SetPropertiesRule]{f:template/div/div/table/tbody/tr/td/div/table/f:call/f:parameter} Set org.ajax4jsf.renderkit.compiler.MethodParameterElement properties
2009-06-02 10:23:06,343 DEBUG commons.beanutils.BeanUtils -> BeanUtils.populate(org.ajax4jsf.renderkit.compiler.MethodParameterElement [
]
, {value=onclick,onselect,width,height,rows,border})
2009-06-02 10:23:06,343 DEBUG commons.beanutils.ConvertUtils -> Convert string 'onclick,onselect,width,height,rows,border' to class 'java.lang.Object'
2009-06-02 10:23:06,343 DEBUG digester.Digester.sax -> endElement(,,f:parameter)
2009-06-02 10:23:06,343 DEBUG commons.digester.Digester -> match='f:template/div/div/table/tbody/tr/td/div/table/f:call/f:parameter'
2009-06-02 10:23:06,343 DEBUG commons.digester.Digester -> bodyText=''
2009-06-02 10:23:06,343 DEBUG commons.digester.Digester -> Fire body() for ObjectCreateRule[className=org.ajax4jsf.renderkit.compiler.MethodParameterElement, attributeName=null]
2009-06-02 10:23:06,343 DEBUG commons.digester.Digester -> Fire body() for SetNextRule[methodName=addParameter, paramType=null]
2009-06-02 10:23:06,343 DEBUG commons.digester.Digester -> Fire body() for SetPropertiesRule[]
2009-06-02 10:23:06,343 DEBUG commons.digester.Digester -> Popping body text '
'
2009-06-02 10:23:06,343 DEBUG commons.digester.Digester -> Fire end() for SetPropertiesRule[]
2009-06-02 10:23:06,343 DEBUG commons.digester.Digester -> Fire end() for SetNextRule[methodName=addParameter, paramType=null]
2009-06-02 10:23:06,343 DEBUG commons.digester.Digester -> [SetNextRule]{f:template/div/div/table/tbody/tr/td/div/table/f:call/f:parameter} Call org.ajax4jsf.renderkit.compiler.MethodCallElement.addParameter(org.ajax4jsf.renderkit.compiler.MethodParameterElement [
]
)
2009-06-02 10:23:06,343 DEBUG commons.digester.Digester -> Fire end() for ObjectCreateRule[className=org.ajax4jsf.renderkit.compiler.MethodParameterElement, attributeName=null]
2009-06-02 10:23:06,343 DEBUG commons.digester.Digester -> [ObjectCreateRule]{f:template/div/div/table/tbody/tr/td/div/table/f:call/f:parameter} Pop org.ajax4jsf.renderkit.compiler.MethodParameterElement
2009-06-02 10:23:06,343 DEBUG digester.Digester.sax -> characters(
)
2009-06-02 10:23:06,343 DEBUG digester.Digester.sax -> endElement(,,f:call)
2009-06-02 10:23:06,343 DEBUG commons.digester.Digester -> match='f:template/div/div/table/tbody/tr/td/div/table/f:call'
2009-06-02 10:23:06,343 DEBUG commons.digester.Digester -> bodyText='
'
2009-06-02 10:23:06,343 DEBUG commons.digester.Digester -> Fire body() for ObjectCreateRule[className=org.ajax4jsf.renderkit.compiler.MethodCallElement, attributeName=null]
2009-06-02 10:23:06,343 DEBUG commons.digester.Digester -> Fire body() for SetNextRule[methodName=addChild, paramType=null]
2009-06-02 10:23:06,343 DEBUG commons.digester.Digester -> Fire body() for SetPropertiesRule[]
2009-06-02 10:23:06,359 DEBUG commons.digester.Digester -> Popping body text '
'
2009-06-02 10:23:06,359 DEBUG commons.digester.Digester -> Fire end() for SetPropertiesRule[]
2009-06-02 10:23:06,359 DEBUG commons.digester.Digester -> Fire end() for SetNextRule[methodName=addChild, paramType=null]
2009-06-02 10:23:06,359 DEBUG commons.digester.Digester -> [SetNextRule]{f:template/div/div/table/tbody/tr/td/div/table/f:call} Call org.ajax4jsf.renderkit.compiler.PlainElement.addChild(org.ajax4jsf.renderkit.compiler.MethodCallElement [
]
)
2009-06-02 10:23:06,359 DEBUG commons.digester.Digester -> Fire end() for ObjectCreateRule[className=org.ajax4jsf.renderkit.compiler.MethodCallElement, attributeName=null]
2009-06-02 10:23:06,359 DEBUG commons.digester.Digester -> [ObjectCreateRule]{f:template/div/div/table/tbody/tr/td/div/table/f:call} Pop org.ajax4jsf.renderkit.compiler.MethodCallElement
2009-06-02 10:23:06,359 DEBUG digester.Digester.sax -> characters(
)
2009-06-02 10:23:06,359 DEBUG digester.Digester.sax -> startElement(,,tbody)
2009-06-02 10:23:06,359 DEBUG commons.digester.Digester -> Pushing body text '
'
2009-06-02 10:23:06,359 DEBUG commons.digester.Digester -> New match='f:template/div/div/table/tbody/tr/td/div/table/tbody'
2009-06-02 10:23:06,359 DEBUG commons.digester.Digester -> Fire begin() for org.ajax4jsf.renderkit.compiler.PlainElementCreateRule@a0e990
2009-06-02 10:23:06,359 DEBUG commons.digester.Digester -> Fire begin() for SetNextRule[methodName=addChild, paramType=null]
2009-06-02 10:23:06,359 DEBUG digester.Digester.sax -> characters(
)
2009-06-02 10:23:06,359 DEBUG digester.Digester.sax -> endElement(,,tbody)
2009-06-02 10:23:06,359 DEBUG commons.digester.Digester -> match='f:template/div/div/table/tbody/tr/td/div/table/tbody'
2009-06-02 10:23:06,359 DEBUG commons.digester.Digester -> bodyText='
'
2009-06-02 10:23:06,359 DEBUG commons.digester.Digester -> Fire body() for org.ajax4jsf.renderkit.compiler.PlainElementCreateRule@a0e990
2009-06-02 10:23:06,359 DEBUG commons.digester.Digester -> Fire body() for SetNextRule[methodName=addChild, paramType=null]
2009-06-02 10:23:06,359 DEBUG commons.digester.Digester -> Popping body text '
'
2009-06-02 10:23:06,359 DEBUG commons.digester.Digester -> Fire end() for SetNextRule[methodName=addChild, paramType=null]
2009-06-02 10:23:06,359 DEBUG commons.digester.Digester -> [SetNextRule]{f:template/div/div/table/tbody/tr/td/div/table/tbody} Call org.ajax4jsf.renderkit.compiler.PlainElement.addChild(org.ajax4jsf.renderkit.compiler.PlainElement [
]
)
2009-06-02 10:23:06,359 DEBUG commons.digester.Digester -> Fire end() for org.ajax4jsf.renderkit.compiler.PlainElementCreateRule@a0e990
2009-06-02 10:23:06,359 DEBUG digester.Digester.sax -> characters(
)
2009-06-02 10:23:06,359 DEBUG digester.Digester.sax -> endElement(,,table)
2009-06-02 10:23:06,359 DEBUG commons.digester.Digester -> match='f:template/div/div/table/tbody/tr/td/div/table'
2009-06-02 10:23:06,359 DEBUG commons.digester.Digester -> bodyText='
'
2009-06-02 10:23:06,359 DEBUG commons.digester.Digester -> Fire body() for org.ajax4jsf.renderkit.compiler.PlainElementCreateRule@a0e990
2009-06-02 10:23:06,359 DEBUG commons.digester.Digester -> Fire body() for SetNextRule[methodName=addChild, paramType=null]
2009-06-02 10:23:06,359 DEBUG commons.digester.Digester -> Popping body text '
'
2009-06-02 10:23:06,359 DEBUG commons.digester.Digester -> Fire end() for SetNextRule[methodName=addChild, paramType=null]
2009-06-02 10:23:06,359 DEBUG commons.digester.Digester -> [SetNextRule]{f:template/div/div/table/tbody/tr/td/div/table} Call org.ajax4jsf.renderkit.compiler.PlainElement.addChild(org.ajax4jsf.renderkit.compiler.PlainElement [
org.ajax4jsf.renderkit.compiler.AttributeElement [
org.ajax4jsf.renderkit.compiler.MethodCallElement [
]
;
]
;
org.ajax4jsf.renderkit.compiler.AttributeElement [
org.ajax4jsf.renderkit.compiler.MethodCallElement [
]
;
]
;
org.ajax4jsf.renderkit.compiler.MethodCallElement [
]
;
org.ajax4jsf.renderkit.compiler.PlainElement [
]
;
]
)
2009-06-02 10:23:06,359 DEBUG commons.digester.Digester -> Fire end() for org.ajax4jsf.renderkit.compiler.PlainElementCreateRule@a0e990
2009-06-02 10:23:06,359 DEBUG digester.Digester.sax -> characters(
)
2009-06-02 10:23:06,359 DEBUG digester.Digester.sax -> endElement(,,div)
2009-06-02 10:23:06,359 DEBUG commons.digester.Digester -> match='f:template/div/div/table/tbody/tr/td/div'
2009-06-02 10:23:06,359 DEBUG commons.digester.Digester -> bodyText='
'
2009-06-02 10:23:06,359 DEBUG commons.digester.Digester -> Fire body() for org.ajax4jsf.renderkit.compiler.PlainElementCreateRule@a0e990
2009-06-02 10:23:06,359 DEBUG commons.digester.Digester -> Fire body() for SetNextRule[methodName=addChild, paramType=null]
2009-06-02 10:23:06,359 DEBUG commons.digester.Digester -> Popping body text '
'
2009-06-02 10:23:06,359 DEBUG commons.digester.Digester -> Fire end() for SetNextRule[methodName=addChild, paramType=null]
2009-06-02 10:23:06,359 DEBUG commons.digester.Digester -> [SetNextRule]{f:template/div/div/table/tbody/tr/td/div} Call org.ajax4jsf.renderkit.compiler.PlainElement.addChild(org.ajax4jsf.renderkit.compiler.PlainElement [
org.ajax4jsf.renderkit.compiler.AttributeElement [
org.ajax4jsf.renderkit.compiler.MethodCallElement [
]
;
]
;
org.ajax4jsf.renderkit.compiler.PlainElement [
org.ajax4jsf.renderkit.compiler.AttributeElement [
org.ajax4jsf.renderkit.compiler.MethodCallElement [
]
;
]
;
org.ajax4jsf.renderkit.compiler.AttributeElement [
org.ajax4jsf.renderkit.compiler.MethodCallElement [
]
;
]
;
org.ajax4jsf.renderkit.compiler.MethodCallElement [
]
;
org.ajax4jsf.renderkit.compiler.PlainElement [
]
;
]
;
]
)
2009-06-02 10:23:06,359 DEBUG commons.digester.Digester -> Fire end() for org.ajax4jsf.renderkit.compiler.PlainElementCreateRule@a0e990
2009-06-02 10:23:06,359 DEBUG digester.Digester.sax -> characters(
)
2009-06-02 10:23:06,359 DEBUG digester.Digester.sax -> endElement(,,td)
2009-06-02 10:23:06,359 DEBUG commons.digester.Digester -> match='f:template/div/div/table/tbody/tr/td'
2009-06-02 10:23:06,359 DEBUG commons.digester.Digester -> bodyText='
'
2009-06-02 10:23:06,359 DEBUG commons.digester.Digester -> Fire body() for org.ajax4jsf.renderkit.compiler.PlainElementCreateRule@a0e990
2009-06-02 10:23:06,359 DEBUG commons.digester.Digester -> Fire body() for SetNextRule[methodName=addChild, paramType=null]
2009-06-02 10:23:06,359 DEBUG commons.digester.Digester -> Popping body text '
'
2009-06-02 10:23:06,359 DEBUG commons.digester.Digester -> Fire end() for SetNextRule[methodName=addChild, paramType=null]
2009-06-02 10:23:06,359 DEBUG commons.digester.Digester -> [SetNextRule]{f:template/div/div/table/tbody/tr/td} Call org.ajax4jsf.renderkit.compiler.PlainElement.addChild(org.ajax4jsf.renderkit.compiler.PlainElement [
org.ajax4jsf.renderkit.compiler.PlainElement [
org.ajax4jsf.renderkit.compiler.AttributeElement [
org.ajax4jsf.renderkit.compiler.MethodCallElement [
]
;
]
;
org.ajax4jsf.renderkit.compiler.PlainElement [
org.ajax4jsf.renderkit.compiler.AttributeElement [
org.ajax4jsf.renderkit.compiler.MethodCallElement [
]
;
]
;
org.ajax4jsf.renderkit.compiler.AttributeElement [
org.ajax4jsf.renderkit.compiler.MethodCallElement [
]
;
]
;
org.ajax4jsf.renderkit.compiler.MethodCallElement [
]
;
org.ajax4jsf.renderkit.compiler.PlainElement [
]
;
]
;
]
;
]
)
2009-06-02 10:23:06,359 DEBUG commons.digester.Digester -> Fire end() for org.ajax4jsf.renderkit.compiler.PlainElementCreateRule@a0e990
2009-06-02 10:23:06,359 DEBUG digester.Digester.sax -> characters(
)
2009-06-02 10:23:06,359 DEBUG digester.Digester.sax -> endElement(,,tr)
2009-06-02 10:23:06,359 DEBUG commons.digester.Digester -> match='f:template/div/div/table/tbody/tr'
2009-06-02 10:23:06,359 DEBUG commons.digester.Digester -> bodyText='
'
2009-06-02 10:23:06,359 DEBUG commons.digester.Digester -> Fire body() for org.ajax4jsf.renderkit.compiler.PlainElementCreateRule@a0e990
2009-06-02 10:23:06,359 DEBUG commons.digester.Digester -> Fire body() for SetNextRule[methodName=addChild, paramType=null]
2009-06-02 10:23:06,359 DEBUG commons.digester.Digester -> Popping body text '
'
2009-06-02 10:23:06,359 DEBUG commons.digester.Digester -> Fire end() for SetNextRule[methodName=addChild, paramType=null]
2009-06-02 10:23:06,359 DEBUG commons.digester.Digester -> [SetNextRule]{f:template/div/div/table/tbody/tr} Call org.ajax4jsf.renderkit.compiler.PlainElement.addChild(org.ajax4jsf.renderkit.compiler.PlainElement [
org.ajax4jsf.renderkit.compiler.PlainElement [
org.ajax4jsf.renderkit.compiler.PlainElement [
org.ajax4jsf.renderkit.compiler.AttributeElement [
org.ajax4jsf.renderkit.compiler.MethodCallElement [
]
;
]
;
org.ajax4jsf.renderkit.compiler.PlainElement [
org.ajax4jsf.renderkit.compiler.AttributeElement [
org.ajax4jsf.renderkit.compiler.MethodCallElement [
]
;
]
;
org.ajax4jsf.renderkit.compiler.AttributeElement [
org.ajax4jsf.renderkit.compiler.MethodCallElement [
]
;
]
;
org.ajax4jsf.renderkit.compiler.MethodCallElement [
]
;
org.ajax4jsf.renderkit.compiler.PlainElement [
]
;
]
;
]
;
]
;
]
)
2009-06-02 10:23:06,359 DEBUG commons.digester.Digester -> Fire end() for org.ajax4jsf.renderkit.compiler.PlainElementCreateRule@a0e990
2009-06-02 10:23:06,359 DEBUG digester.Digester.sax -> characters(
)
2009-06-02 10:23:06,359 DEBUG digester.Digester.sax -> endElement(,,tbody)
2009-06-02 10:23:06,359 DEBUG commons.digester.Digester -> match='f:template/div/div/table/tbody'
2009-06-02 10:23:06,359 DEBUG commons.digester.Digester -> bodyText='
'
2009-06-02 10:23:06,359 DEBUG commons.digester.Digester -> Fire body() for org.ajax4jsf.renderkit.compiler.PlainElementCreateRule@a0e990
2009-06-02 10:23:06,359 DEBUG commons.digester.Digester -> Fire body() for SetNextRule[methodName=addChild, paramType=null]
2009-06-02 10:23:06,359 DEBUG commons.digester.Digester -> Popping body text '
'
2009-06-02 10:23:06,359 DEBUG commons.digester.Digester -> Fire end() for SetNextRule[methodName=addChild, paramType=null]
2009-06-02 10:23:06,359 DEBUG commons.digester.Digester -> [SetNextRule]{f:template/div/div/table/tbody} Call org.ajax4jsf.renderkit.compiler.PlainElement.addChild(org.ajax4jsf.renderkit.compiler.PlainElement [
org.ajax4jsf.renderkit.compiler.PlainElement [
org.ajax4jsf.renderkit.compiler.PlainElement [
org.ajax4jsf.renderkit.compiler.PlainElement [
org.ajax4jsf.renderkit.compiler.AttributeElement [
org.ajax4jsf.renderkit.compiler.MethodCallElement [
]
;
]
;
org.ajax4jsf.renderkit.compiler.PlainElement [
org.ajax4jsf.renderkit.compiler.AttributeElement [
org.ajax4jsf.renderkit.compiler.MethodCallElement [
]
;
]
;
org.ajax4jsf.renderkit.compiler.AttributeElement [
org.ajax4jsf.renderkit.compiler.MethodCallElement [
]
;
]
;
org.ajax4jsf.renderkit.compiler.MethodCallElement [
]
;
org.ajax4jsf.renderkit.compiler.PlainElement [
]
;
]
;
]
;
]
;
]
;
]
)
2009-06-02 10:23:06,359 DEBUG commons.digester.Digester -> Fire end() for org.ajax4jsf.renderkit.compiler.PlainElementCreateRule@a0e990
2009-06-02 10:23:06,359 DEBUG digester.Digester.sax -> characters(
)
2009-06-02 10:23:06,359 DEBUG digester.Digester.sax -> endElement(,,table)
2009-06-02 10:23:06,359 DEBUG commons.digester.Digester -> match='f:template/div/div/table'
2009-06-02 10:23:06,359 DEBUG commons.digester.Digester -> bodyText='
'
2009-06-02 10:23:06,359 DEBUG commons.digester.Digester -> Fire body() for org.ajax4jsf.renderkit.compiler.PlainElementCreateRule@a0e990
2009-06-02 10:23:06,359 DEBUG commons.digester.Digester -> Fire body() for SetNextRule[methodName=addChild, paramType=null]
2009-06-02 10:23:06,359 DEBUG commons.digester.Digester -> Popping body text '
'
2009-06-02 10:23:06,359 DEBUG commons.digester.Digester -> Fire end() for SetNextRule[methodName=addChild, paramType=null]
2009-06-02 10:23:06,359 DEBUG commons.digester.Digester -> [SetNextRule]{f:template/div/div/table} Call org.ajax4jsf.renderkit.compiler.PlainElement.addChild(org.ajax4jsf.renderkit.compiler.PlainElement [
org.ajax4jsf.renderkit.compiler.PlainElement [
org.ajax4jsf.renderkit.compiler.PlainElement [
org.ajax4jsf.renderkit.compiler.PlainElement [
org.ajax4jsf.renderkit.compiler.PlainElement [
org.ajax4jsf.renderkit.compiler.AttributeElement [
org.ajax4jsf.renderkit.compiler.MethodCallElement [
]
;
]
;
org.ajax4jsf.renderkit.compiler.PlainElement [
org.ajax4jsf.renderkit.compiler.AttributeElement [
org.ajax4jsf.renderkit.compiler.MethodCallElement [
]
;
]
;
org.ajax4jsf.renderkit.compiler.AttributeElement [
org.ajax4jsf.renderkit.compiler.MethodCallElement [
]
;
]
;
org.ajax4jsf.renderkit.compiler.MethodCallElement [
]
;
org.ajax4jsf.renderkit.compiler.PlainElement [
]
;
]
;
]
;
]
;
]
;
]
;
]
)
2009-06-02 10:23:06,359 DEBUG commons.digester.Digester -> Fire end() for org.ajax4jsf.renderkit.compiler.PlainElementCreateRule@a0e990
2009-06-02 10:23:06,359 DEBUG digester.Digester.sax -> characters(
)
2009-06-02 10:23:06,359 DEBUG digester.Digester.sax -> endElement(,,div)
2009-06-02 10:23:06,359 DEBUG commons.digester.Digester -> match='f:template/div/div'
2009-06-02 10:23:06,359 DEBUG commons.digester.Digester -> bodyText='
'
2009-06-02 10:23:06,359 DEBUG commons.digester.Digester -> Fire body() for org.ajax4jsf.renderkit.compiler.PlainElementCreateRule@a0e990
2009-06-02 10:23:06,359 DEBUG commons.digester.Digester -> Fire body() for SetNextRule[methodName=addChild, paramType=null]
2009-06-02 10:23:06,359 DEBUG commons.digester.Digester -> Popping body text '
'
2009-06-02 10:23:06,359 DEBUG commons.digester.Digester -> Fire end() for SetNextRule[methodName=addChild, paramType=null]
2009-06-02 10:23:06,359 DEBUG commons.digester.Digester -> [SetNextRule]{f:template/div/div} Call org.ajax4jsf.renderkit.compiler.PlainElement.addChild(org.ajax4jsf.renderkit.compiler.PlainElement [
org.ajax4jsf.renderkit.compiler.AttributeElement [
org.ajax4jsf.renderkit.compiler.MethodCallElement [
]
;
org.ajax4jsf.renderkit.compiler.MethodCallElement [
]
;
]
;
org.ajax4jsf.renderkit.compiler.PlainElement [
org.ajax4jsf.renderkit.compiler.PlainElement [
org.ajax4jsf.renderkit.compiler.PlainElement [
org.ajax4jsf.renderkit.compiler.PlainElement [
org.ajax4jsf.renderkit.compiler.PlainElement [
org.ajax4jsf.renderkit.compiler.AttributeElement [
org.ajax4jsf.renderkit.compiler.MethodCallElement [
]
;
]
;
org.ajax4jsf.renderkit.compiler.PlainElement [
org.ajax4jsf.renderkit.compiler.AttributeElement [
org.ajax4jsf.renderkit.compiler.MethodCallElement [
]
;
]
;
org.ajax4jsf.renderkit.compiler.AttributeElement [
org.ajax4jsf.renderkit.compiler.MethodCallElement [
]
;
]
;
org.ajax4jsf.renderkit.compiler.MethodCallElement [
]
;
org.ajax4jsf.renderkit.compiler.PlainElement [
]
;
]
;
]
;
]
;
]
;
]
;
]
;
]
)
2009-06-02 10:23:06,359 DEBUG commons.digester.Digester -> Fire end() for org.ajax4jsf.renderkit.compiler.PlainElementCreateRule@a0e990
2009-06-02 10:23:06,359 DEBUG digester.Digester.sax -> characters(
)
2009-06-02 10:23:06,359 DEBUG digester.Digester.sax -> endElement(,,div)
2009-06-02 10:23:06,359 DEBUG commons.digester.Digester -> match='f:template/div'
2009-06-02 10:23:06,359 DEBUG commons.digester.Digester -> bodyText='
'
2009-06-02 10:23:06,359 DEBUG commons.digester.Digester -> Fire body() for org.ajax4jsf.renderkit.compiler.PlainElementCreateRule@a0e990
2009-06-02 10:23:06,359 DEBUG commons.digester.Digester -> Fire body() for SetNextRule[methodName=addChild, paramType=null]
2009-06-02 10:23:06,359 DEBUG commons.digester.Digester -> Popping body text '
'
2009-06-02 10:23:06,359 DEBUG commons.digester.Digester -> Fire end() for SetNextRule[methodName=addChild, paramType=null]
2009-06-02 10:23:06,359 DEBUG commons.digester.Digester -> [SetNextRule]{f:template/div} Call org.ajax4jsf.renderkit.compiler.RootElement.addChild(org.ajax4jsf.renderkit.compiler.PlainElement [
org.ajax4jsf.renderkit.compiler.PlainElement [
org.ajax4jsf.renderkit.compiler.AttributeElement [
org.ajax4jsf.renderkit.compiler.MethodCallElement [
]
;
org.ajax4jsf.renderkit.compiler.MethodCallElement [
]
;
]
;
org.ajax4jsf.renderkit.compiler.PlainElement [
org.ajax4jsf.renderkit.compiler.PlainElement [
org.ajax4jsf.renderkit.compiler.PlainElement [
org.ajax4jsf.renderkit.compiler.PlainElement [
org.ajax4jsf.renderkit.compiler.PlainElement [
org.ajax4jsf.renderkit.compiler.AttributeElement [
org.ajax4jsf.renderkit.compiler.MethodCallElement [
]
;
]
;
org.ajax4jsf.renderkit.compiler.PlainElement [
org.ajax4jsf.renderkit.compiler.AttributeElement [
org.ajax4jsf.renderkit.compiler.MethodCallElement [
]
;
]
;
org.ajax4jsf.renderkit.compiler.AttributeElement [
org.ajax4jsf.renderkit.compiler.MethodCallElement [
]
;
]
;
org.ajax4jsf.renderkit.compiler.MethodCallElement [
]
;
org.ajax4jsf.renderkit.compiler.PlainElement [
]
;
]
;
]
;
]
;
]
;
]
;
]
;
]
;
]
)
2009-06-02 10:23:06,359 DEBUG commons.digester.Digester -> Fire end() for org.ajax4jsf.renderkit.compiler.PlainElementCreateRule@a0e990
2009-06-02 10:23:06,359 DEBUG digester.Digester.sax -> characters(
)
2009-06-02 10:23:06,359 DEBUG digester.Digester.sax -> startElement(,,div)
2009-06-02 10:23:06,359 DEBUG commons.digester.Digester -> Pushing body text '
'
2009-06-02 10:23:06,359 DEBUG commons.digester.Digester -> New match='f:template/div'
2009-06-02 10:23:06,359 DEBUG commons.digester.Digester -> Fire begin() for org.ajax4jsf.renderkit.compiler.PlainElementCreateRule@a0e990
2009-06-02 10:23:06,359 DEBUG commons.digester.Digester -> Fire begin() for SetNextRule[methodName=addChild, paramType=null]
2009-06-02 10:23:06,359 DEBUG digester.Digester.sax -> characters(
)
2009-06-02 10:23:06,359 DEBUG digester.Digester.sax -> startElement(,,f:attribute)
2009-06-02 10:23:06,359 DEBUG commons.digester.Digester -> Pushing body text '
'
2009-06-02 10:23:06,359 DEBUG commons.digester.Digester -> New match='f:template/div/f:attribute'
2009-06-02 10:23:06,359 DEBUG commons.digester.Digester -> Fire begin() for ObjectCreateRule[className=org.ajax4jsf.renderkit.compiler.AttributeElement, attributeName=null]
2009-06-02 10:23:06,359 DEBUG commons.digester.Digester -> [ObjectCreateRule]{f:template/div/f:attribute}New org.ajax4jsf.renderkit.compiler.AttributeElement
2009-06-02 10:23:06,359 DEBUG commons.digester.Digester -> Fire begin() for SetNextRule[methodName=addChild, paramType=null]
2009-06-02 10:23:06,359 DEBUG commons.digester.Digester -> Fire begin() for SetPropertiesRule[]
2009-06-02 10:23:06,359 DEBUG commons.digester.Digester -> [SetPropertiesRule]{f:template/div/f:attribute} Setting property 'name' to 'style'
2009-06-02 10:23:06,359 DEBUG commons.digester.Digester -> [SetPropertiesRule]{f:template/div/f:attribute} Set org.ajax4jsf.renderkit.compiler.AttributeElement properties
2009-06-02 10:23:06,359 DEBUG commons.beanutils.BeanUtils -> BeanUtils.populate(org.ajax4jsf.renderkit.compiler.AttributeElement [
]
, {name=style})
2009-06-02 10:23:06,359 DEBUG commons.beanutils.ConvertUtils -> Convert string 'style' to class 'java.lang.String'
2009-06-02 10:23:06,359 DEBUG digester.Digester.sax -> characters(
)
2009-06-02 10:23:06,359 DEBUG digester.Digester.sax -> startElement(,,f:call)
2009-06-02 10:23:06,359 DEBUG commons.digester.Digester -> Pushing body text '
'
2009-06-02 10:23:06,359 DEBUG commons.digester.Digester -> New match='f:template/div/f:attribute/f:call'
2009-06-02 10:23:06,359 DEBUG commons.digester.Digester -> Fire begin() for ObjectCreateRule[className=org.ajax4jsf.renderkit.compiler.MethodCallElement, attributeName=null]
2009-06-02 10:23:06,359 DEBUG commons.digester.Digester -> [ObjectCreateRule]{f:template/div/f:attribute/f:call}New org.ajax4jsf.renderkit.compiler.MethodCallElement
2009-06-02 10:23:06,359 DEBUG commons.digester.Digester -> Fire begin() for SetNextRule[methodName=addChild, paramType=null]
2009-06-02 10:23:06,359 DEBUG commons.digester.Digester -> Fire begin() for SetPropertiesRule[]
2009-06-02 10:23:06,359 DEBUG commons.digester.Digester -> [SetPropertiesRule]{f:template/div/f:attribute/f:call} Setting property 'name' to 'opacityStyle'
2009-06-02 10:23:06,359 DEBUG commons.digester.Digester -> [SetPropertiesRule]{f:template/div/f:attribute/f:call} Set org.ajax4jsf.renderkit.compiler.MethodCallElement properties
2009-06-02 10:23:06,359 DEBUG commons.beanutils.BeanUtils -> BeanUtils.populate(org.ajax4jsf.renderkit.compiler.MethodCallElement [
]
, {name=opacityStyle})
2009-06-02 10:23:06,359 DEBUG commons.beanutils.ConvertUtils -> Convert string 'opacityStyle' to class 'java.lang.String'
2009-06-02 10:23:06,359 DEBUG digester.Digester.sax -> endElement(,,f:call)
2009-06-02 10:23:06,359 DEBUG commons.digester.Digester -> match='f:template/div/f:attribute/f:call'
2009-06-02 10:23:06,359 DEBUG commons.digester.Digester -> bodyText=''
2009-06-02 10:23:06,359 DEBUG commons.digester.Digester -> Fire body() for ObjectCreateRule[className=org.ajax4jsf.renderkit.compiler.MethodCallElement, attributeName=null]
2009-06-02 10:23:06,359 DEBUG commons.digester.Digester -> Fire body() for SetNextRule[methodName=addChild, paramType=null]
2009-06-02 10:23:06,359 DEBUG commons.digester.Digester -> Fire body() for SetPropertiesRule[]
2009-06-02 10:23:06,359 DEBUG commons.digester.Digester -> Popping body text '
'
2009-06-02 10:23:06,359 DEBUG commons.digester.Digester -> Fire end() for SetPropertiesRule[]
2009-06-02 10:23:06,359 DEBUG commons.digester.Digester -> Fire end() for SetNextRule[methodName=addChild, paramType=null]
2009-06-02 10:23:06,359 DEBUG commons.digester.Digester -> [SetNextRule]{f:template/div/f:attribute/f:call} Call org.ajax4jsf.renderkit.compiler.AttributeElement.addChild(org.ajax4jsf.renderkit.compiler.MethodCallElement [
]
)
2009-06-02 10:23:06,359 DEBUG commons.digester.Digester -> Fire end() for ObjectCreateRule[className=org.ajax4jsf.renderkit.compiler.MethodCallElement, attributeName=null]
2009-06-02 10:23:06,375 DEBUG commons.digester.Digester -> [ObjectCreateRule]{f:template/div/f:attribute/f:call} Pop org.ajax4jsf.renderkit.compiler.MethodCallElement
2009-06-02 10:23:06,375 DEBUG digester.Digester.sax -> characters(
)
2009-06-02 10:23:06,375 DEBUG digester.Digester.sax -> startElement(,,f:call)
2009-06-02 10:23:06,375 DEBUG commons.digester.Digester -> Pushing body text '
'
2009-06-02 10:23:06,375 DEBUG commons.digester.Digester -> New match='f:template/div/f:attribute/f:call'
2009-06-02 10:23:06,375 DEBUG commons.digester.Digester -> Fire begin() for ObjectCreateRule[className=org.ajax4jsf.renderkit.compiler.MethodCallElement, attributeName=null]
2009-06-02 10:23:06,375 DEBUG commons.digester.Digester -> [ObjectCreateRule]{f:template/div/f:attribute/f:call}New org.ajax4jsf.renderkit.compiler.MethodCallElement
2009-06-02 10:23:06,375 DEBUG commons.digester.Digester -> Fire begin() for SetNextRule[methodName=addChild, paramType=null]
2009-06-02 10:23:06,375 DEBUG commons.digester.Digester -> Fire begin() for SetPropertiesRule[]
2009-06-02 10:23:06,375 DEBUG commons.digester.Digester -> [SetPropertiesRule]{f:template/div/f:attribute/f:call} Setting property 'name' to 'shadowDepth'
2009-06-02 10:23:06,375 DEBUG commons.digester.Digester -> [SetPropertiesRule]{f:template/div/f:attribute/f:call} Set org.ajax4jsf.renderkit.compiler.MethodCallElement properties
2009-06-02 10:23:06,375 DEBUG commons.beanutils.BeanUtils -> BeanUtils.populate(org.ajax4jsf.renderkit.compiler.MethodCallElement [
]
, {name=shadowDepth})
2009-06-02 10:23:06,375 DEBUG commons.beanutils.ConvertUtils -> Convert string 'shadowDepth' to class 'java.lang.String'
2009-06-02 10:23:06,375 DEBUG digester.Digester.sax -> endElement(,,f:call)
2009-06-02 10:23:06,375 DEBUG commons.digester.Digester -> match='f:template/div/f:attribute/f:call'
2009-06-02 10:23:06,375 DEBUG commons.digester.Digester -> bodyText=''
2009-06-02 10:23:06,375 DEBUG commons.digester.Digester -> Fire body() for ObjectCreateRule[className=org.ajax4jsf.renderkit.compiler.MethodCallElement, attributeName=null]
2009-06-02 10:23:06,375 DEBUG commons.digester.Digester -> Fire body() for SetNextRule[methodName=addChild, paramType=null]
2009-06-02 10:23:06,375 DEBUG commons.digester.Digester -> Fire body() for SetPropertiesRule[]
2009-06-02 10:23:06,375 DEBUG commons.digester.Digester -> Popping body text '
'
2009-06-02 10:23:06,375 DEBUG commons.digester.Digester -> Fire end() for SetPropertiesRule[]
2009-06-02 10:23:06,375 DEBUG commons.digester.Digester -> Fire end() for SetNextRule[methodName=addChild, paramType=null]
2009-06-02 10:23:06,375 DEBUG commons.digester.Digester -> [SetNextRule]{f:template/div/f:attribute/f:call} Call org.ajax4jsf.renderkit.compiler.AttributeElement.addChild(org.ajax4jsf.renderkit.compiler.MethodCallElement [
]
)
2009-06-02 10:23:06,375 DEBUG commons.digester.Digester -> Fire end() for ObjectCreateRule[className=org.ajax4jsf.renderkit.compiler.MethodCallElement, attributeName=null]
2009-06-02 10:23:06,375 DEBUG commons.digester.Digester -> [ObjectCreateRule]{f:template/div/f:attribute/f:call} Pop org.ajax4jsf.renderkit.compiler.MethodCallElement
2009-06-02 10:23:06,375 DEBUG digester.Digester.sax -> characters(
)
2009-06-02 10:23:06,375 DEBUG digester.Digester.sax -> endElement(,,f:attribute)
2009-06-02 10:23:06,375 DEBUG commons.digester.Digester -> match='f:template/div/f:attribute'
2009-06-02 10:23:06,375 DEBUG commons.digester.Digester -> bodyText='
'
2009-06-02 10:23:06,375 DEBUG commons.digester.Digester -> Fire body() for ObjectCreateRule[className=org.ajax4jsf.renderkit.compiler.AttributeElement, attributeName=null]
2009-06-02 10:23:06,375 DEBUG commons.digester.Digester -> Fire body() for SetNextRule[methodName=addChild, paramType=null]
2009-06-02 10:23:06,375 DEBUG commons.digester.Digester -> Fire body() for SetPropertiesRule[]
2009-06-02 10:23:06,375 DEBUG commons.digester.Digester -> Popping body text '
'
2009-06-02 10:23:06,375 DEBUG commons.digester.Digester -> Fire end() for SetPropertiesRule[]
2009-06-02 10:23:06,375 DEBUG commons.digester.Digester -> Fire end() for SetNextRule[methodName=addChild, paramType=null]
2009-06-02 10:23:06,375 DEBUG commons.digester.Digester -> [SetNextRule]{f:template/div/f:attribute} Call org.ajax4jsf.renderkit.compiler.PlainElement.addChild(org.ajax4jsf.renderkit.compiler.AttributeElement [
org.ajax4jsf.renderkit.compiler.MethodCallElement [
]
;
org.ajax4jsf.renderkit.compiler.MethodCallElement [
]
;
]
)
2009-06-02 10:23:06,375 DEBUG commons.digester.Digester -> Fire end() for ObjectCreateRule[className=org.ajax4jsf.renderkit.compiler.AttributeElement, attributeName=null]
2009-06-02 10:23:06,375 DEBUG commons.digester.Digester -> [ObjectCreateRule]{f:template/div/f:attribute} Pop org.ajax4jsf.renderkit.compiler.AttributeElement
2009-06-02 10:23:06,375 DEBUG digester.Digester.sax -> endElement(,,div)
2009-06-02 10:23:06,375 DEBUG commons.digester.Digester -> match='f:template/div'
2009-06-02 10:23:06,375 DEBUG commons.digester.Digester -> bodyText='
'
2009-06-02 10:23:06,375 DEBUG commons.digester.Digester -> Fire body() for org.ajax4jsf.renderkit.compiler.PlainElementCreateRule@a0e990
2009-06-02 10:23:06,375 DEBUG commons.digester.Digester -> Fire body() for SetNextRule[methodName=addChild, paramType=null]
2009-06-02 10:23:06,375 DEBUG commons.digester.Digester -> Popping body text '
'
2009-06-02 10:23:06,375 DEBUG commons.digester.Digester -> Fire end() for SetNextRule[methodName=addChild, paramType=null]
2009-06-02 10:23:06,375 DEBUG commons.digester.Digester -> [SetNextRule]{f:template/div} Call org.ajax4jsf.renderkit.compiler.RootElement.addChild(org.ajax4jsf.renderkit.compiler.PlainElement [
org.ajax4jsf.renderkit.compiler.AttributeElement [
org.ajax4jsf.renderkit.compiler.MethodCallElement [
]
;
org.ajax4jsf.renderkit.compiler.MethodCallElement [
]
;
]
;
]
)
2009-06-02 10:23:06,375 DEBUG commons.digester.Digester -> Fire end() for org.ajax4jsf.renderkit.compiler.PlainElementCreateRule@a0e990
2009-06-02 10:23:06,375 DEBUG digester.Digester.sax -> characters(
)
2009-06-02 10:23:06,375 DEBUG digester.Digester.sax -> endElement(,,f:template)
2009-06-02 10:23:06,375 DEBUG commons.digester.Digester -> match='f:template'
2009-06-02 10:23:06,375 DEBUG commons.digester.Digester -> bodyText='
'
2009-06-02 10:23:06,375 DEBUG commons.digester.Digester -> Fire body() for SetPropertiesRule[]
2009-06-02 10:23:06,375 DEBUG commons.digester.Digester -> Popping body text ''
2009-06-02 10:23:06,375 DEBUG commons.digester.Digester -> Fire end() for SetPropertiesRule[]
2009-06-02 10:23:06,375 DEBUG digester.Digester.sax -> endDocument()
2009-06-02 10:23:06,375 DEBUG renderkit.compiler.HtmlCompiler -> Finish compilation template from org/richfaces/renderkit/html/templates/popup.jspx
2009-06-02 10:23:06,406 DEBUG ajax4jsf.resource.InternetResourceBuilder -> Return instance of internet resource builder org.ajax4jsf.resource.ResourceBuilderImpl@15d616e
2009-06-02 10:23:06,437 DEBUG ajax4jsf.resource.InternetResourceBuilder -> Return instance of internet resource builder org.ajax4jsf.resource.ResourceBuilderImpl@15d616e
2009-06-02 10:23:06,437 DEBUG ajax4jsf.resource.InternetResourceBuilder -> Return instance of internet resource builder org.ajax4jsf.resource.ResourceBuilderImpl@15d616e
2009-06-02 10:23:06,437 DEBUG ajax4jsf.javascript.AjaxScript -> AjaxScript() - Created instance of AjaxScript resource
2009-06-02 10:23:06,437 DEBUG ajax4jsf.resource.InternetResourceBuilder -> Return instance of internet resource builder org.ajax4jsf.resource.ResourceBuilderImpl@15d616e
2009-06-02 10:23:06,453 DEBUG ajax4jsf.resource.InternetResourceBuilder -> Return instance of internet resource builder org.ajax4jsf.resource.ResourceBuilderImpl@15d616e
2009-06-02 10:23:06,453 DEBUG ajax4jsf.resource.InternetResourceBuilder -> Return instance of internet resource builder org.ajax4jsf.resource.ResourceBuilderImpl@15d616e
2009-06-02 10:23:06,468 DEBUG ajax4jsf.resource.InternetResourceBuilder -> Return instance of internet resource builder org.ajax4jsf.resource.ResourceBuilderImpl@15d616e
2009-06-02 10:23:06,468 DEBUG ajax4jsf.resource.InternetResourceBuilder -> Return instance of internet resource builder org.ajax4jsf.resource.ResourceBuilderImpl@15d616e
2009-06-02 10:23:06,468 DEBUG ajax4jsf.resource.InternetResourceBuilder -> Return instance of internet resource builder org.ajax4jsf.resource.ResourceBuilderImpl@15d616e
2009-06-02 10:23:06,468 DEBUG ajax4jsf.javascript.AjaxScript -> AjaxScript() - Created instance of AjaxScript resource
2009-06-02 10:23:06,468 DEBUG ajax4jsf.resource.InternetResourceBuilder -> Return instance of internet resource builder org.ajax4jsf.resource.ResourceBuilderImpl@15d616e
2009-06-02 10:23:06,484 DEBUG ajax4jsf.resource.InternetResourceBuilder -> Return instance of internet resource builder org.ajax4jsf.resource.ResourceBuilderImpl@15d616e
2009-06-02 10:23:06,484 DEBUG ajax4jsf.resource.InternetResourceBuilder -> Return instance of internet resource builder org.ajax4jsf.resource.ResourceBuilderImpl@15d616e
2009-06-02 10:23:06,484 DEBUG ajax4jsf.javascript.AjaxScript -> AjaxScript() - Created instance of AjaxScript resource
2009-06-02 10:23:06,484 DEBUG ajax4jsf.resource.InternetResourceBuilder -> Return instance of internet resource builder org.ajax4jsf.resource.ResourceBuilderImpl@15d616e
2009-06-02 10:23:06,484 DEBUG ajax4jsf.resource.InternetResourceBuilder -> Return instance of internet resource builder org.ajax4jsf.resource.ResourceBuilderImpl@15d616e
2009-06-02 10:23:06,484 DEBUG ajax4jsf.resource.InternetResourceBuilder -> Return instance of internet resource builder org.ajax4jsf.resource.ResourceBuilderImpl@15d616e
2009-06-02 10:23:06,484 DEBUG ajax4jsf.javascript.AjaxScript -> AjaxScript() - Created instance of AjaxScript resource
2009-06-02 10:23:06,484 DEBUG ajax4jsf.resource.InternetResourceBuilder -> Return instance of internet resource builder org.ajax4jsf.resource.ResourceBuilderImpl@15d616e
2009-06-02 10:23:06,500 DEBUG ajax4jsf.resource.InternetResourceBuilder -> Return instance of internet resource builder org.ajax4jsf.resource.ResourceBuilderImpl@15d616e
2009-06-02 10:23:06,500 DEBUG ajax4jsf.resource.InternetResourceBuilder -> Return instance of internet resource builder org.ajax4jsf.resource.ResourceBuilderImpl@15d616e
2009-06-02 10:23:06,500 DEBUG ajax4jsf.javascript.AjaxScript -> AjaxScript() - Created instance of AjaxScript resource
2009-06-02 10:23:06,500 DEBUG ajax4jsf.resource.InternetResourceBuilder -> Return instance of internet resource builder org.ajax4jsf.resource.ResourceBuilderImpl@15d616e
2009-06-02 10:23:06,515 DEBUG ajax4jsf.resource.InternetResourceBuilder -> Return instance of internet resource builder org.ajax4jsf.resource.ResourceBuilderImpl@15d616e
2009-06-02 10:23:06,515 DEBUG ajax4jsf.resource.InternetResourceBuilder -> Return instance of internet resource builder org.ajax4jsf.resource.ResourceBuilderImpl@15d616e
2009-06-02 10:23:06,515 DEBUG ajax4jsf.resource.InternetResourceBuilder -> Return instance of internet resource builder org.ajax4jsf.resource.ResourceBuilderImpl@15d616e
2009-06-02 10:23:06,515 DEBUG ajax4jsf.javascript.AjaxScript -> AjaxScript() - Created instance of AjaxScript resource
2009-06-02 10:23:06,531 DEBUG ajax4jsf.resource.InternetResourceBuilder -> Return instance of internet resource builder org.ajax4jsf.resource.ResourceBuilderImpl@15d616e
2009-06-02 10:23:06,531 DEBUG ajax4jsf.resource.InternetResourceBuilder -> Return instance of internet resource builder org.ajax4jsf.resource.ResourceBuilderImpl@15d616e
2009-06-02 10:23:06,531 DEBUG ajax4jsf.resource.InternetResourceBuilder -> Return instance of internet resource builder org.ajax4jsf.resource.ResourceBuilderImpl@15d616e
2009-06-02 10:23:06,531 DEBUG ajax4jsf.javascript.AjaxScript -> AjaxScript() - Created instance of AjaxScript resource
2009-06-02 10:23:06,562 DEBUG ajax4jsf.resource.InternetResourceBuilder -> Return instance of internet resource builder org.ajax4jsf.resource.ResourceBuilderImpl@15d616e
2009-06-02 10:23:06,562 DEBUG ajax4jsf.resource.InternetResourceBuilder -> Return instance of internet resource builder org.ajax4jsf.resource.ResourceBuilderImpl@15d616e
2009-06-02 10:23:06,562 DEBUG ajax4jsf.javascript.AjaxScript -> AjaxScript() - Created instance of AjaxScript resource
2009-06-02 10:23:06,562 DEBUG ajax4jsf.resource.InternetResourceBuilder -> Return instance of internet resource builder org.ajax4jsf.resource.ResourceBuilderImpl@15d616e
2009-06-02 10:23:06,562 DEBUG ajax4jsf.resource.InternetResourceBuilder -> Return instance of internet resource builder org.ajax4jsf.resource.ResourceBuilderImpl@15d616e
2009-06-02 10:23:06,562 DEBUG ajax4jsf.resource.ResourceBuilderImpl -> build new resource for path /org/richfaces/renderkit/html/css/msg.css
2009-06-02 10:23:06,562 DEBUG ajax4jsf.resource.ResourceBuilderImpl -> build new resource for path /org/richfaces/renderkit/html/css/msgs.css
2009-06-02 10:23:06,578 DEBUG ajax4jsf.resource.InternetResourceBuilder -> Return instance of internet resource builder org.ajax4jsf.resource.ResourceBuilderImpl@15d616e
2009-06-02 10:23:06,625 DEBUG ajax4jsf.resource.InternetResourceBuilder -> Return instance of internet resource builder org.ajax4jsf.resource.ResourceBuilderImpl@15d616e
2009-06-02 10:23:06,625 DEBUG ajax4jsf.resource.InternetResourceBuilder -> Return instance of internet resource builder org.ajax4jsf.resource.ResourceBuilderImpl@15d616e
2009-06-02 10:23:06,625 DEBUG ajax4jsf.resource.InternetResourceBuilder -> Return instance of internet resource builder org.ajax4jsf.resource.ResourceBuilderImpl@15d616e
2009-06-02 10:23:06,625 DEBUG ajax4jsf.javascript.AjaxScript -> AjaxScript() - Created instance of AjaxScript resource
2009-06-02 10:23:06,640 DEBUG ajax4jsf.resource.InternetResourceBuilder -> Return instance of internet resource builder org.ajax4jsf.resource.ResourceBuilderImpl@15d616e
2009-06-02 10:23:06,640 DEBUG ajax4jsf.resource.InternetResourceBuilder -> Return instance of internet resource builder org.ajax4jsf.resource.ResourceBuilderImpl@15d616e
2009-06-02 10:23:06,640 DEBUG ajax4jsf.resource.InternetResourceBuilder -> Return instance of internet resource builder org.ajax4jsf.resource.ResourceBuilderImpl@15d616e
2009-06-02 10:23:06,640 DEBUG ajax4jsf.javascript.AjaxScript -> AjaxScript() - Created instance of AjaxScript resource
2009-06-02 10:23:06,640 DEBUG ajax4jsf.resource.InternetResourceBuilder -> Return instance of internet resource builder org.ajax4jsf.resource.ResourceBuilderImpl@15d616e
02/06/2009 10:23:06 org.apache.coyote.http11.Http11Protocol start
INFO: Starting Coyote HTTP/1.1 on http-8080
2009-06-02 10:23:06,687 DEBUG ajax4jsf.resource.InternetResourceBuilder -> Return instance of internet resource builder org.ajax4jsf.resource.ResourceBuilderImpl@15d616e
2009-06-02 10:23:06,687 DEBUG ajax4jsf.resource.InternetResourceBuilder -> Return instance of internet resource builder org.ajax4jsf.resource.ResourceBuilderImpl@15d616e
2009-06-02 10:23:06,718 DEBUG ajax4jsf.resource.InternetResourceBuilder -> Return instance of internet resource builder org.ajax4jsf.resource.ResourceBuilderImpl@15d616e
2009-06-02 10:23:06,718 DEBUG ajax4jsf.resource.InternetResourceBuilder -> Return instance of internet resource builder org.ajax4jsf.resource.ResourceBuilderImpl@15d616e
2009-06-02 10:23:06,734 DEBUG ajax4jsf.resource.InternetResourceBuilder -> Return instance of internet resource builder org.ajax4jsf.resource.ResourceBuilderImpl@15d616e
2009-06-02 10:23:06,734 DEBUG ajax4jsf.resource.InternetResourceBuilder -> Return instance of internet resource builder org.ajax4jsf.resource.ResourceBuilderImpl@15d616e
2009-06-02 10:23:06,734 DEBUG ajax4jsf.javascript.AjaxScript -> AjaxScript() - Created instance of AjaxScript resource
2009-06-02 10:23:06,734 DEBUG ajax4jsf.resource.InternetResourceBuilder -> Return instance of internet resource builder org.ajax4jsf.resource.ResourceBuilderImpl@15d616e
2009-06-02 10:23:06,734 DEBUG ajax4jsf.resource.InternetResourceBuilder -> Return instance of internet resource builder org.ajax4jsf.resource.ResourceBuilderImpl@15d616e
2009-06-02 10:23:06,734 DEBUG ajax4jsf.resource.InternetResourceBuilder -> Return instance of internet resource builder org.ajax4jsf.resource.ResourceBuilderImpl@15d616e
2009-06-02 10:23:06,734 DEBUG ajax4jsf.resource.InternetResourceBuilder -> Return instance of internet resource builder org.ajax4jsf.resource.ResourceBuilderImpl@15d616e
2009-06-02 10:23:06,734 DEBUG ajax4jsf.javascript.AjaxScript -> AjaxScript() - Created instance of AjaxScript resource
2009-06-02 10:23:06,750 DEBUG ajax4jsf.resource.InternetResourceBuilder -> Return instance of internet resource builder org.ajax4jsf.resource.ResourceBuilderImpl@15d616e
2009-06-02 10:23:06,750 DEBUG ajax4jsf.resource.InternetResourceBuilder -> Return instance of internet resource builder org.ajax4jsf.resource.ResourceBuilderImpl@15d616e
2009-06-02 10:23:06,765 DEBUG ajax4jsf.resource.InternetResourceBuilder -> Return instance of internet resource builder org.ajax4jsf.resource.ResourceBuilderImpl@15d616e
2009-06-02 10:23:06,765 DEBUG ajax4jsf.resource.InternetResourceBuilder -> Return instance of internet resource builder org.ajax4jsf.resource.ResourceBuilderImpl@15d616e
2009-06-02 10:23:06,796 DEBUG ajax4jsf.resource.InternetResourceBuilder -> Return instance of internet resource builder org.ajax4jsf.resource.ResourceBuilderImpl@15d616e
2009-06-02 10:23:06,796 DEBUG ajax4jsf.resource.InternetResourceBuilder -> Return instance of internet resource builder org.ajax4jsf.resource.ResourceBuilderImpl@15d616e
2009-06-02 10:23:06,796 DEBUG ajax4jsf.resource.InternetResourceBuilder -> Return instance of internet resource builder org.ajax4jsf.resource.ResourceBuilderImpl@15d616e
2009-06-02 10:23:06,796 DEBUG ajax4jsf.javascript.AjaxScript -> AjaxScript() - Created instance of AjaxScript resource
2009-06-02 10:23:06,812 DEBUG ajax4jsf.resource.InternetResourceBuilder -> Return instance of internet resource builder org.ajax4jsf.resource.ResourceBuilderImpl@15d616e
2009-06-02 10:23:06,812 DEBUG ajax4jsf.resource.InternetResourceBuilder -> Return instance of internet resource builder org.ajax4jsf.resource.ResourceBuilderImpl@15d616e
2009-06-02 10:23:06,812 DEBUG ajax4jsf.resource.InternetResourceBuilder -> Return instance of internet resource builder org.ajax4jsf.resource.ResourceBuilderImpl@15d616e
2009-06-02 10:23:06,812 DEBUG ajax4jsf.javascript.AjaxScript -> AjaxScript() - Created instance of AjaxScript resource
2009-06-02 10:23:06,812 DEBUG ajax4jsf.resource.InternetResourceBuilder -> Return instance of internet resource builder org.ajax4jsf.resource.ResourceBuilderImpl@15d616e
2009-06-02 10:23:06,812 DEBUG ajax4jsf.resource.InternetResourceBuilder -> Return instance of internet resource builder org.ajax4jsf.resource.ResourceBuilderImpl@15d616e
2009-06-02 10:23:06,828 DEBUG ajax4jsf.resource.InternetResourceBuilder -> Return instance of internet resource builder org.ajax4jsf.resource.ResourceBuilderImpl@15d616e
2009-06-02 10:23:06,828 DEBUG ajax4jsf.resource.InternetResourceBuilder -> Return instance of internet resource builder org.ajax4jsf.resource.ResourceBuilderImpl@15d616e
2009-06-02 10:23:06,828 DEBUG ajax4jsf.resource.InternetResourceBuilder -> Return instance of internet resource builder org.ajax4jsf.resource.ResourceBuilderImpl@15d616e
2009-06-02 10:23:06,890 DEBUG ajax4jsf.resource.InternetResourceBuilder -> Return instance of internet resource builder org.ajax4jsf.resource.ResourceBuilderImpl@15d616e
2009-06-02 10:23:06,890 DEBUG ajax4jsf.resource.InternetResourceBuilder -> Return instance of internet resource builder org.ajax4jsf.resource.ResourceBuilderImpl@15d616e
2009-06-02 10:23:06,890 DEBUG ajax4jsf.javascript.AjaxScript -> AjaxScript() - Created instance of AjaxScript resource
2009-06-02 10:23:06,890 DEBUG ajax4jsf.resource.InternetResourceBuilder -> Return instance of internet resource builder org.ajax4jsf.resource.ResourceBuilderImpl@15d616e
2009-06-02 10:23:06,890 DEBUG ajax4jsf.resource.InternetResourceBuilder -> Return instance of internet resource builder org.ajax4jsf.resource.ResourceBuilderImpl@15d616e
02/06/2009 10:23:07 org.apache.jk.common.ChannelSocket init
INFO: JK: ajp13 listening on /0.0.0.0:8009
02/06/2009 10:23:07 org.apache.jk.server.JkMain start
INFO: Jk running ID=0 time=0/156 config=null
02/06/2009 10:23:07 org.apache.catalina.startup.Catalina start
INFO: Server startup in 13352 ms
2009-06-02 10:23:08,000 DEBUG ajax4jsf.event.AjaxPhaseListener -> Process before phase RESTORE_VIEW 1
2009-06-02 10:23:08,000 DEBUG ajax4jsf.event.InitPhaseListener -> Perform additional framework initialization on first request
2009-06-02 10:23:08,000 DEBUG ajax4jsf.event.InitPhaseListener -> Set AjaxViewHandler on top of chain
2009-06-02 10:23:08,000 DEBUG ajax4jsf.application.AjaxViewHandler -> Create instance of Ajax ViewHandler
2009-06-02 10:23:08,156 DEBUG ajax4jsf.event.InitPhaseListener -> Remove init phase listener from factories
2009-06-02 10:23:08,156 DEBUG ajax4jsf.event.AjaxPhaseListener -> Process after phase RESTORE_VIEW 1
2009-06-02 10:23:08,187 DEBUG ajax4jsf.event.AjaxPhaseListener -> Process before phase RENDER_RESPONSE 6
2009-06-02 10:23:08,187 DEBUG ajax4jsf.event.AjaxPhaseListener -> PhaseListener enter Before RenderView Phase with ViewId /index.jsp and RenderKitId HTML_BASIC
2009-06-02 10:23:08,203 DEBUG richfaces.skin.SkinFactoryImpl -> Create new Skin instance for name DEFAULT
2009-06-02 10:23:08,703 DEBUG ajax4jsf.renderkit.RendererBase -> Start encoding of component j_id_jsp_48643365_0 with class org.ajax4jsf.component.AjaxViewRoot
2009-06-02 10:23:08,750 DEBUG ajax4jsf.renderkit.RendererBase -> Finish encoding of component j_id_jsp_48643365_0 with class org.ajax4jsf.component.AjaxViewRoot
2009-06-02 10:23:08,765 DEBUG ajax4jsf.renderkit.RendererBase -> Finish encoding of component j_id_jsp_48643365_0 with class org.ajax4jsf.component.AjaxViewRoot
2009-06-02 10:23:08,765 DEBUG ajax4jsf.component.AjaxRegionBrige -> Save State of UIAjaxComponent with Id j_id_jsp_48643365_0
2009-06-02 10:23:08,890 DEBUG ajax4jsf.application.AjaxStateManager -> Write view state to the response
2009-06-02 10:23:08,890 DEBUG ajax4jsf.event.AjaxPhaseListener -> Process after phase RENDER_RESPONSE 6
2009-06-02 10:23:11,671 DEBUG ajax4jsf.event.AjaxPhaseListener -> Process before phase RESTORE_VIEW 1
2009-06-02 10:23:11,718 DEBUG ajax4jsf.component.AjaxRegionBrige -> Restore State of UIAjaxComponent with Id j_id_jsp_48643365_0
2009-06-02 10:23:11,718 DEBUG ajax4jsf.event.AjaxPhaseListener -> Process after phase RESTORE_VIEW 1
2009-06-02 10:23:11,718 DEBUG ajax4jsf.event.AjaxPhaseListener -> Process before phase APPLY_REQUEST_VALUES 2
2009-06-02 10:23:11,718 DEBUG ajax4jsf.renderkit.RendererBase -> Start decoding of component j_id_jsp_48643365_0 with class org.ajax4jsf.component.AjaxViewRoot
2009-06-02 10:23:11,718 DEBUG ajax4jsf.renderkit.AjaxContainerRenderer -> Decode ajax request status for j_id_jsp_48643365_0
2009-06-02 10:23:11,718 DEBUG ajax4jsf.event.AjaxPhaseListener -> Process after phase APPLY_REQUEST_VALUES 2
2009-06-02 10:23:11,718 DEBUG ajax4jsf.event.AjaxPhaseListener -> Process before phase PROCESS_VALIDATIONS 3
2009-06-02 10:23:11,718 DEBUG ajax4jsf.event.AjaxPhaseListener -> Process after phase PROCESS_VALIDATIONS 3
2009-06-02 10:23:11,718 DEBUG ajax4jsf.event.AjaxPhaseListener -> Process before phase UPDATE_MODEL_VALUES 4
2009-06-02 10:23:11,718 DEBUG ajax4jsf.event.AjaxPhaseListener -> Process after phase UPDATE_MODEL_VALUES 4
2009-06-02 10:23:11,718 DEBUG ajax4jsf.event.AjaxPhaseListener -> Process before phase INVOKE_APPLICATION 5
2009-06-02 10:23:11,718 DEBUG ajax4jsf.event.AjaxPhaseListener -> Process after phase INVOKE_APPLICATION 5
2009-06-02 10:23:11,718 DEBUG ajax4jsf.event.AjaxPhaseListener -> Process before phase RENDER_RESPONSE 6
2009-06-02 10:23:11,718 DEBUG ajax4jsf.event.AjaxPhaseListener -> PhaseListener enter Before RenderView Phase with ViewId /pages/cadastrocliente.jsp and RenderKitId HTML_BASIC
2009-06-02 10:23:11,750 DEBUG ajax4jsf.renderkit.RendererBase -> Start encoding of component j_id_jsp_807762510_0 with class org.ajax4jsf.component.AjaxViewRoot
2009-06-02 10:23:11,781 DEBUG ajax4jsf.renderkit.RendererBase -> Finish encoding of component j_id_jsp_807762510_0 with class org.ajax4jsf.component.AjaxViewRoot
2009-06-02 10:23:11,781 DEBUG ajax4jsf.renderkit.RendererBase -> Finish encoding of component j_id_jsp_807762510_0 with class org.ajax4jsf.component.AjaxViewRoot
2009-06-02 10:23:11,781 DEBUG ajax4jsf.component.AjaxRegionBrige -> Save State of UIAjaxComponent with Id j_id_jsp_807762510_0
2009-06-02 10:23:11,796 DEBUG ajax4jsf.application.AjaxStateManager -> Write view state to the response
2009-06-02 10:23:11,796 DEBUG ajax4jsf.event.AjaxPhaseListener -> Process after phase RENDER_RESPONSE 6
2009-06-02 10:23:17,812 DEBUG ajax4jsf.event.AjaxPhaseListener -> Process before phase RESTORE_VIEW 1
2009-06-02 10:23:17,812 DEBUG ajax4jsf.component.AjaxRegionBrige -> Restore State of UIAjaxComponent with Id j_id_jsp_807762510_0
2009-06-02 10:23:17,812 DEBUG ajax4jsf.event.AjaxPhaseListener -> Process after phase RESTORE_VIEW 1
2009-06-02 10:23:17,812 DEBUG ajax4jsf.event.AjaxPhaseListener -> Process before phase APPLY_REQUEST_VALUES 2
2009-06-02 10:23:17,812 DEBUG ajax4jsf.renderkit.RendererBase -> Start decoding of component j_id_jsp_807762510_0 with class org.ajax4jsf.component.AjaxViewRoot
2009-06-02 10:23:17,828 DEBUG ajax4jsf.renderkit.AjaxContainerRenderer -> Decode ajax request status for j_id_jsp_807762510_0
2009-06-02 10:23:17,828 DEBUG ajax4jsf.event.AjaxPhaseListener -> Process after phase APPLY_REQUEST_VALUES 2
2009-06-02 10:23:17,828 DEBUG ajax4jsf.event.AjaxPhaseListener -> Process before phase PROCESS_VALIDATIONS 3
2009-06-02 10:23:17,828 DEBUG ajax4jsf.event.AjaxPhaseListener -> Process after phase PROCESS_VALIDATIONS 3
2009-06-02 10:23:17,828 DEBUG ajax4jsf.event.AjaxPhaseListener -> Process before phase UPDATE_MODEL_VALUES 4
2009-06-02 10:23:17,828 DEBUG ajax4jsf.event.AjaxPhaseListener -> Process after phase UPDATE_MODEL_VALUES 4
2009-06-02 10:23:17,828 DEBUG ajax4jsf.event.AjaxPhaseListener -> Process before phase INVOKE_APPLICATION 5
2009-06-02 10:23:17,921 INFO cfg.annotations.Version -> Hibernate Annotations 3.4.0.CR1
2009-06-02 10:23:17,968 INFO hibernate.cfg.Environment -> Hibernate 3.3.0.CR1
2009-06-02 10:23:17,968 INFO hibernate.cfg.Environment -> hibernate.properties not found
2009-06-02 10:23:18,000 INFO hibernate.cfg.Environment -> Bytecode provider name : cglib
2009-06-02 10:23:18,015 INFO hibernate.cfg.Environment -> using JDK 1.4 java.sql.Timestamp handling
2009-06-02 10:23:18,203 INFO annotations.common.Version -> Hibernate Commons Annotations 3.1.0.CR1
2009-06-02 10:23:18,218 INFO hibernate.cfg.Configuration -> configuring from resource: /hibernate.cfg.xml
2009-06-02 10:23:18,218 INFO hibernate.cfg.Configuration -> Configuration resource: /hibernate.cfg.xml
2009-06-02 10:23:18,312 DEBUG hibernate.util.DTDEntityResolver -> trying to resolve system-id [http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd]
2009-06-02 10:23:18,312 DEBUG hibernate.util.DTDEntityResolver -> recognized hibernate namespace; attempting to resolve on classpath under org/hibernate/
2009-06-02 10:23:18,312 DEBUG hibernate.util.DTDEntityResolver -> located [http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd] in classpath
2009-06-02 10:23:18,406 DEBUG hibernate.cfg.Configuration -> hibernate.hbm2ddl.auto=none
2009-06-02 10:23:18,406 DEBUG hibernate.cfg.Configuration -> hibernate.format_sql=true
2009-06-02 10:23:18,406 DEBUG hibernate.cfg.Configuration -> connection.driver_class=org.postgresql.Driver
2009-06-02 10:23:18,406 DEBUG hibernate.cfg.Configuration -> connection.url=jdbc:postgresql://localhost/Shift
2009-06-02 10:23:18,406 DEBUG hibernate.cfg.Configuration -> connection.username=postgres
2009-06-02 10:23:18,406 DEBUG hibernate.cfg.Configuration -> connection.password=postgres
2009-06-02 10:23:18,406 DEBUG hibernate.cfg.Configuration -> connection.pool_size=1
2009-06-02 10:23:18,406 DEBUG hibernate.cfg.Configuration -> dialect=org.hibernate.dialect.PostgreSQLDialect
2009-06-02 10:23:18,406 DEBUG hibernate.cfg.Configuration -> current_session_context_class=thread
2009-06-02 10:23:18,406 DEBUG hibernate.cfg.Configuration -> cache.provider_class=org.hibernate.cache.NoCacheProvider
2009-06-02 10:23:18,406 DEBUG hibernate.cfg.Configuration -> show_sql=true
2009-06-02 10:23:18,406 DEBUG hibernate.cfg.AnnotationConfiguration -> null <- org.dom4j.tree.DefaultAttribute@1eb0cd0 [Attribute: name class value "br.com.shift.persistencia.ClasseAbstrata"]
02/06/2009 10:23:18 com.sun.faces.application.ActionListenerImpl processAction
SEVERE: java.lang.ExceptionInInitializerError
javax.faces.el.EvaluationException: java.lang.ExceptionInInitializerError
at javax.faces.component.MethodBindingMethodExpressionAdapter.invoke(MethodBindingMethodExpressionAdapter.java:102)
at com.sun.faces.application.ActionListenerImpl.processAction(ActionListenerImpl.java:102)
at javax.faces.component.UICommand.broadcast(UICommand.java:387)
at org.ajax4jsf.component.AjaxViewRoot.processEvents(AjaxViewRoot.java:321)
at org.ajax4jsf.component.AjaxViewRoot.broadcastEvents(AjaxViewRoot.java:296)
at org.ajax4jsf.component.AjaxViewRoot.processPhase(AjaxViewRoot.java:253)
at org.ajax4jsf.component.AjaxViewRoot.processApplication(AjaxViewRoot.java:466)
at com.sun.faces.lifecycle.InvokeApplicationPhase.execute(InvokeApplicationPhase.java:82)
at com.sun.faces.lifecycle.Phase.doPhase(Phase.java:100)
at com.sun.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:118)
at javax.faces.webapp.FacesServlet.service(FacesServlet.java:265)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233)
at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:128)
at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:286)
at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:845)
at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:583)
at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:447)
at java.lang.Thread.run(Thread.java:619)
Caused by: java.lang.ExceptionInInitializerError
at br.org.shift.managerbean.ManagerBeanCliente.addCliente(ManagerBeanCliente.java:19)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:597)
at org.apache.el.parser.AstValue.invoke(AstValue.java:172)
at org.apache.el.MethodExpressionImpl.invoke(MethodExpressionImpl.java:276)
at org.apache.jasper.el.JspMethodExpression.invoke(JspMethodExpression.java:68)
at javax.faces.component.MethodBindingMethodExpressionAdapter.invoke(MethodBindingMethodExpressionAdapter.java:88)
... 22 more
Caused by: org.hibernate.MappingException: Unable to load class declared as <mapping class="br.com.shift.persistencia.ClasseAbstrata"/> in the configuration:
at org.hibernate.cfg.AnnotationConfiguration.parseMappingElement(AnnotationConfiguration.java:633)
at org.hibernate.cfg.Configuration.parseSessionFactory(Configuration.java:1566)
at org.hibernate.cfg.Configuration.doConfigure(Configuration.java:1545)
at org.hibernate.cfg.AnnotationConfiguration.doConfigure(AnnotationConfiguration.java:997)
at org.hibernate.cfg.AnnotationConfiguration.doConfigure(AnnotationConfiguration.java:64)
at org.hibernate.cfg.Configuration.doConfigure(Configuration.java:1519)
at org.hibernate.cfg.AnnotationConfiguration.doConfigure(AnnotationConfiguration.java:985)
at org.hibernate.cfg.AnnotationConfiguration.doConfigure(AnnotationConfiguration.java:64)
at org.hibernate.cfg.Configuration.configure(Configuration.java:1439)
at org.hibernate.cfg.AnnotationConfiguration.configure(AnnotationConfiguration.java:967)
at org.hibernate.cfg.AnnotationConfiguration.configure(AnnotationConfiguration.java:64)
at org.hibernate.cfg.Configuration.configure(Configuration.java:1425)
at org.hibernate.cfg.AnnotationConfiguration.configure(AnnotationConfiguration.java:961)
at br.org.shift.hibernate.HibernateUtil.<clinit>(HibernateUtil.java:26)
... 31 more
Caused by: java.lang.ClassNotFoundException: br.com.shift.persistencia.ClasseAbstrata
at org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1387)
at org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1233)
at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:320)
at java.lang.Class.forName0(Native Method)
at java.lang.Class.forName(Class.java:169)
at org.hibernate.util.ReflectHelper.classForName(ReflectHelper.java:100)
at org.hibernate.cfg.AnnotationConfiguration.parseMappingElement(AnnotationConfiguration.java:630)
... 44 more
02/06/2009 10:23:18 com.sun.faces.lifecycle.InvokeApplicationPhase execute
WARNING: #{managerBeanCliente.addCliente}: java.lang.ExceptionInInitializerError
javax.faces.FacesException: #{managerBeanCliente.addCliente}: java.lang.ExceptionInInitializerError
at com.sun.faces.application.ActionListenerImpl.processAction(ActionListenerImpl.java:118)
at javax.faces.component.UICommand.broadcast(UICommand.java:387)
at org.ajax4jsf.component.AjaxViewRoot.processEvents(AjaxViewRoot.java:321)
at org.ajax4jsf.component.AjaxViewRoot.broadcastEvents(AjaxViewRoot.java:296)
at org.ajax4jsf.component.AjaxViewRoot.processPhase(AjaxViewRoot.java:253)
at org.ajax4jsf.component.AjaxViewRoot.processApplication(AjaxViewRoot.java:466)
at com.sun.faces.lifecycle.InvokeApplicationPhase.execute(InvokeApplicationPhase.java:82)
at com.sun.faces.lifecycle.Phase.doPhase(Phase.java:100)
at com.sun.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:118)
at javax.faces.webapp.FacesServlet.service(FacesServlet.java:265)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233)
at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:128)
at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:286)
at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:845)
at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:583)
at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:447)
at java.lang.Thread.run(Thread.java:619)
Caused by: javax.faces.el.EvaluationException: java.lang.ExceptionInInitializerError
at javax.faces.component.MethodBindingMethodExpressionAdapter.invoke(MethodBindingMethodExpressionAdapter.java:102)
at com.sun.faces.application.ActionListenerImpl.processAction(ActionListenerImpl.java:102)
... 21 more
Caused by: java.lang.ExceptionInInitializerError
at br.org.shift.managerbean.ManagerBeanCliente.addCliente(ManagerBeanCliente.java:19)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:597)
at org.apache.el.parser.AstValue.invoke(AstValue.java:172)
at org.apache.el.MethodExpressionImpl.invoke(MethodExpressionImpl.java:276)
at org.apache.jasper.el.JspMethodExpression.invoke(JspMethodExpression.java:68)
at javax.faces.component.MethodBindingMethodExpressionAdapter.invoke(MethodBindingMethodExpressionAdapter.java:88)
... 22 more
Caused by: org.hibernate.MappingException: Unable to load class declared as <mapping class="br.com.shift.persistencia.ClasseAbstrata"/> in the configuration:
at org.hibernate.cfg.AnnotationConfiguration.parseMappingElement(AnnotationConfiguration.java:633)
at org.hibernate.cfg.Configuration.parseSessionFactory(Configuration.java:1566)
at org.hibernate.cfg.Configuration.doConfigure(Configuration.java:1545)
at org.hibernate.cfg.AnnotationConfiguration.doConfigure(AnnotationConfiguration.java:997)
at org.hibernate.cfg.AnnotationConfiguration.doConfigure(AnnotationConfiguration.java:64)
at org.hibernate.cfg.Configuration.doConfigure(Configuration.java:1519)
at org.hibernate.cfg.AnnotationConfiguration.doConfigure(AnnotationConfiguration.java:985)
at org.hibernate.cfg.AnnotationConfiguration.doConfigure(AnnotationConfiguration.java:64)
at org.hibernate.cfg.Configuration.configure(Configuration.java:1439)
at org.hibernate.cfg.AnnotationConfiguration.configure(AnnotationConfiguration.java:967)
at org.hibernate.cfg.AnnotationConfiguration.configure(AnnotationConfiguration.java:64)
at org.hibernate.cfg.Configuration.configure(Configuration.java:1425)
at org.hibernate.cfg.AnnotationConfiguration.configure(AnnotationConfiguration.java:961)
at br.org.shift.hibernate.HibernateUtil.<clinit>(HibernateUtil.java:26)
... 31 more
Caused by: java.lang.ClassNotFoundException: br.com.shift.persistencia.ClasseAbstrata
at org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1387)
at org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1233)
at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:320)
at java.lang.Class.forName0(Native Method)
at java.lang.Class.forName(Class.java:169)
at org.hibernate.util.ReflectHelper.classForName(ReflectHelper.java:100)
at org.hibernate.cfg.AnnotationConfiguration.parseMappingElement(AnnotationConfiguration.java:630)
... 44 more
02/06/2009 10:23:18 com.sun.faces.lifecycle.Phase doPhase
SEVERE: JSF1054: (Phase ID: INVOKE_APPLICATION 5, View ID: /pages/cadastrocliente.jsp) Exception thrown during phase execution: javax.faces.event.PhaseEvent[source=com.sun.faces.lifecycle.LifecycleImpl@54570a]
02/06/2009 10:23:18 org.apache.catalina.core.StandardWrapperValve invoke
SEVERE: Servlet.service() for servlet Faces Servlet threw exception
java.lang.ClassNotFoundException: br.com.shift.persistencia.ClasseAbstrata
at org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1387)
at org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1233)
at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:320)
at java.lang.Class.forName0(Native Method)
at java.lang.Class.forName(Class.java:169)
at org.hibernate.util.ReflectHelper.classForName(ReflectHelper.java:100)
at org.hibernate.cfg.AnnotationConfiguration.parseMappingElement(AnnotationConfiguration.java:630)
at org.hibernate.cfg.Configuration.parseSessionFactory(Configuration.java:1566)
at org.hibernate.cfg.Configuration.doConfigure(Configuration.java:1545)
at org.hibernate.cfg.AnnotationConfiguration.doConfigure(AnnotationConfiguration.java:997)
at org.hibernate.cfg.AnnotationConfiguration.doConfigure(AnnotationConfiguration.java:64)
at org.hibernate.cfg.Configuration.doConfigure(Configuration.java:1519)
at org.hibernate.cfg.AnnotationConfiguration.doConfigure(AnnotationConfiguration.java:985)
at org.hibernate.cfg.AnnotationConfiguration.doConfigure(AnnotationConfiguration.java:64)
at org.hibernate.cfg.Configuration.configure(Configuration.java:1439)
at org.hibernate.cfg.AnnotationConfiguration.configure(AnnotationConfiguration.java:967)
at org.hibernate.cfg.AnnotationConfiguration.configure(AnnotationConfiguration.java:64)
at org.hibernate.cfg.Configuration.configure(Configuration.java:1425)
at org.hibernate.cfg.AnnotationConfiguration.configure(AnnotationConfiguration.java:961)
at br.org.shift.hibernate.HibernateUtil.<clinit>(HibernateUtil.java:26)
at br.org.shift.managerbean.ManagerBeanCliente.addCliente(ManagerBeanCliente.java:19)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:597)
at org.apache.el.parser.AstValue.invoke(AstValue.java:172)
at org.apache.el.MethodExpressionImpl.invoke(MethodExpressionImpl.java:276)
at org.apache.jasper.el.JspMethodExpression.invoke(JspMethodExpression.java:68)
at javax.faces.component.MethodBindingMethodExpressionAdapter.invoke(MethodBindingMethodExpressionAdapter.java:88)
at com.sun.faces.application.ActionListenerImpl.processAction(ActionListenerImpl.java:102)
at javax.faces.component.UICommand.broadcast(UICommand.java:387)
at org.ajax4jsf.component.AjaxViewRoot.processEvents(AjaxViewRoot.java:321)
at org.ajax4jsf.component.AjaxViewRoot.broadcastEvents(AjaxViewRoot.java:296)
at org.ajax4jsf.component.AjaxViewRoot.processPhase(AjaxViewRoot.java:253)
at org.ajax4jsf.component.AjaxViewRoot.processApplication(AjaxViewRoot.java:466)
at com.sun.faces.lifecycle.InvokeApplicationPhase.execute(InvokeApplicationPhase.java:82)
at com.sun.faces.lifecycle.Phase.doPhase(Phase.java:100)
at com.sun.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:118)
at javax.faces.webapp.FacesServlet.service(FacesServlet.java:265)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233)
at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:128)
at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:286)
at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:845)
at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:583)
at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:447)
at java.lang.Thread.run(Thread.java:619)
2009-06-02 10:23:18,437 DEBUG ajax4jsf.event.AjaxPhaseListener -> Process after phase INVOKE_APPLICATION 5
Cristian Mietlicki
02/06/2009
Apache Tomcat/6.0.18 - Error reporttype Exception report message description The server encountered an internal error () that prevented it from fulfilling this request. exception javax.servlet.ServletException: #{managerBeanCliente.addCliente}: java.lang.ExceptionInInitializerError javax.faces.webapp.FacesServlet.service(FacesServlet.java:277) root cause javax.faces.FacesException: #{managerBeanCliente.addCliente}: java.lang.ExceptionInInitializerError com.sun.faces.application.ActionListenerImpl.processAction(ActionListenerImpl.java:118) javax.faces.component.UICommand.broadcast(UICommand.java:387) org.ajax4jsf.component.AjaxViewRoot.processEvents(AjaxViewRoot.java:321) org.ajax4jsf.component.AjaxViewRoot.broadcastEvents(AjaxViewRoot.java:296) org.ajax4jsf.component.AjaxViewRoot.processPhase(AjaxViewRoot.java:253) org.ajax4jsf.component.AjaxViewRoot.processApplication(AjaxViewRoot.java:466) com.sun.faces.lifecycle.InvokeApplicationPhase.execute(InvokeApplicationPhase.java:82) com.sun.faces.lifecycle.Phase.doPhase(Phase.java:100) com.sun.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:118) javax.faces.webapp.FacesServlet.service(FacesServlet.java:265) root cause javax.faces.el.EvaluationException: java.lang.ExceptionInInitializerError javax.faces.component.MethodBindingMethodExpressionAdapter.invoke(MethodBindingMethodExpressionAdapter.java:102) com.sun.faces.application.ActionListenerImpl.processAction(ActionListenerImpl.java:102) javax.faces.component.UICommand.broadcast(UICommand.java:387) org.ajax4jsf.component.AjaxViewRoot.processEvents(AjaxViewRoot.java:321) org.ajax4jsf.component.AjaxViewRoot.broadcastEvents(AjaxViewRoot.java:296) org.ajax4jsf.component.AjaxViewRoot.processPhase(AjaxViewRoot.java:253) org.ajax4jsf.component.AjaxViewRoot.processApplication(AjaxViewRoot.java:466) com.sun.faces.lifecycle.InvokeApplicationPhase.execute(InvokeApplicationPhase.java:82) com.sun.faces.lifecycle.Phase.doPhase(Phase.java:100) com.sun.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:118) javax.faces.webapp.FacesServlet.service(FacesServlet.java:265) root cause java.lang.ExceptionInInitializerError br.org.shift.managerbean.ManagerBeanCliente.addCliente(ManagerBeanCliente.java:19) sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) java.lang.reflect.Method.invoke(Method.java:597) org.apache.el.parser.AstValue.invoke(AstValue.java:172) org.apache.el.MethodExpressionImpl.invoke(MethodExpressionImpl.java:276) org.apache.jasper.el.JspMethodExpression.invoke(JspMethodExpression.java:68) javax.faces.component.MethodBindingMethodExpressionAdapter.invoke(MethodBindingMethodExpressionAdapter.java:88) com.sun.faces.application.ActionListenerImpl.processAction(ActionListenerImpl.java:102) javax.faces.component.UICommand.broadcast(UICommand.java:387) org.ajax4jsf.component.AjaxViewRoot.processEvents(AjaxViewRoot.java:321) org.ajax4jsf.component.AjaxViewRoot.broadcastEvents(AjaxViewRoot.java:296) org.ajax4jsf.component.AjaxViewRoot.processPhase(AjaxViewRoot.java:253) org.ajax4jsf.component.AjaxViewRoot.processApplication(AjaxViewRoot.java:466) com.sun.faces.lifecycle.InvokeApplicationPhase.execute(InvokeApplicationPhase.java:82) com.sun.faces.lifecycle.Phase.doPhase(Phase.java:100) com.sun.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:118) javax.faces.webapp.FacesServlet.service(FacesServlet.java:265) root cause org.hibernate.MappingException: Unable to load class declared as <mapping class="br.com.shift.persistencia.ClasseAbstrata"/> in the configuration: org.hibernate.cfg.AnnotationConfiguration.parseMappingElement(AnnotationConfiguration.java:633) org.hibernate.cfg.Configuration.parseSessionFactory(Configuration.java:1566) org.hibernate.cfg.Configuration.doConfigure(Configuration.java:1545) org.hibernate.cfg.AnnotationConfiguration.doConfigure(AnnotationConfiguration.java:997) org.hibernate.cfg.AnnotationConfiguration.doConfigure(AnnotationConfiguration.java:64) org.hibernate.cfg.Configuration.doConfigure(Configuration.java:1519) org.hibernate.cfg.AnnotationConfiguration.doConfigure(AnnotationConfiguration.java:985) org.hibernate.cfg.AnnotationConfiguration.doConfigure(AnnotationConfiguration.java:64) org.hibernate.cfg.Configuration.configure(Configuration.java:1439) org.hibernate.cfg.AnnotationConfiguration.configure(AnnotationConfiguration.java:967) org.hibernate.cfg.AnnotationConfiguration.configure(AnnotationConfiguration.java:64) org.hibernate.cfg.Configuration.configure(Configuration.java:1425) org.hibernate.cfg.AnnotationConfiguration.configure(AnnotationConfiguration.java:961) br.org.shift.hibernate.HibernateUtil.<clinit>(HibernateUtil.java:26) br.org.shift.managerbean.ManagerBeanCliente.addCliente(ManagerBeanCliente.java:19) sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) java.lang.reflect.Method.invoke(Method.java:597) org.apache.el.parser.AstValue.invoke(AstValue.java:172) org.apache.el.MethodExpressionImpl.invoke(MethodExpressionImpl.java:276) org.apache.jasper.el.JspMethodExpression.invoke(JspMethodExpression.java:68) javax.faces.component.MethodBindingMethodExpressionAdapter.invoke(MethodBindingMethodExpressionAdapter.java:88) com.sun.faces.application.ActionListenerImpl.processAction(ActionListenerImpl.java:102) javax.faces.component.UICommand.broadcast(UICommand.java:387) org.ajax4jsf.component.AjaxViewRoot.processEvents(AjaxViewRoot.java:321) org.ajax4jsf.component.AjaxViewRoot.broadcastEvents(AjaxViewRoot.java:296) org.ajax4jsf.component.AjaxViewRoot.processPhase(AjaxViewRoot.java:253) org.ajax4jsf.component.AjaxViewRoot.processApplication(AjaxViewRoot.java:466) com.sun.faces.lifecycle.InvokeApplicationPhase.execute(InvokeApplicationPhase.java:82) com.sun.faces.lifecycle.Phase.doPhase(Phase.java:100) com.sun.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:118) javax.faces.webapp.FacesServlet.service(FacesServlet.java:265) root cause java.lang.ClassNotFoundException: br.com.shift.persistencia.ClasseAbstrata org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1387) org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1233) java.lang.ClassLoader.loadClassInternal(ClassLoader.java:320) java.lang.Class.forName0(Native Method) java.lang.Class.forName(Class.java:169) org.hibernate.util.ReflectHelper.classForName(ReflectHelper.java:100) org.hibernate.cfg.AnnotationConfiguration.parseMappingElement(AnnotationConfiguration.java:630) org.hibernate.cfg.Configuration.parseSessionFactory(Configuration.java:1566) org.hibernate.cfg.Configuration.doConfigure(Configuration.java:1545) org.hibernate.cfg.AnnotationConfiguration.doConfigure(AnnotationConfiguration.java:997) org.hibernate.cfg.AnnotationConfiguration.doConfigure(AnnotationConfiguration.java:64) org.hibernate.cfg.Configuration.doConfigure(Configuration.java:1519) org.hibernate.cfg.AnnotationConfiguration.doConfigure(AnnotationConfiguration.java:985) org.hibernate.cfg.AnnotationConfiguration.doConfigure(AnnotationConfiguration.java:64) org.hibernate.cfg.Configuration.configure(Configuration.java:1439) org.hibernate.cfg.AnnotationConfiguration.configure(AnnotationConfiguration.java:967) org.hibernate.cfg.AnnotationConfiguration.configure(AnnotationConfiguration.java:64) org.hibernate.cfg.Configuration.configure(Configuration.java:1425) org.hibernate.cfg.AnnotationConfiguration.configure(AnnotationConfiguration.java:961) br.org.shift.hibernate.HibernateUtil.<clinit>(HibernateUtil.java:26) br.org.shift.managerbean.ManagerBeanCliente.addCliente(ManagerBeanCliente.java:19) sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) java.lang.reflect.Method.invoke(Method.java:597) org.apache.el.parser.AstValue.invoke(AstValue.java:172) org.apache.el.MethodExpressionImpl.invoke(MethodExpressionImpl.java:276) org.apache.jasper.el.JspMethodExpression.invoke(JspMethodExpression.java:68) javax.faces.component.MethodBindingMethodExpressionAdapter.invoke(MethodBindingMethodExpressionAdapter.java:88) com.sun.faces.application.ActionListenerImpl.processAction(ActionListenerImpl.java:102) javax.faces.component.UICommand.broadcast(UICommand.java:387) org.ajax4jsf.component.AjaxViewRoot.processEvents(AjaxViewRoot.java:321) org.ajax4jsf.component.AjaxViewRoot.broadcastEvents(AjaxViewRoot.java:296) org.ajax4jsf.component.AjaxViewRoot.processPhase(AjaxViewRoot.java:253) org.ajax4jsf.component.AjaxViewRoot.processApplication(AjaxViewRoot.java:466) com.sun.faces.lifecycle.InvokeApplicationPhase.execute(InvokeApplicationPhase.java:82) com.sun.faces.lifecycle.Phase.doPhase(Phase.java:100) com.sun.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:118) javax.faces.webapp.FacesServlet.service(FacesServlet.java:265) note The full stack trace of the root cause is available in the Apache Tomcat/6.0.18 logs.
Dyego Carmo
02/06/2009
O Hibernate esta reclamando que a classe br.com.shift.persistencia.ClasseAbstrata não existe !!!
Na configuracao voce esta dizendo para ele usar ela... mas a classe nao existe !
Cristian Mietlicki
02/06/2009
public class ClasseAbstrata {
}
Dyego Carmo
02/06/2009
Caso nao tenha... faça rebuild total de seu projeto e tente novamente...
Dyego Carmo
02/06/2009
Se ela existe apenas como marcação entao voce não precisa dela...
Implemente a interface Serializable... e aceite no seu save() Serializable no lugar desta classe...
Cristian Mietlicki
02/06/2009
<?xml version='1.0' encoding='utf-8'?>
<!DOCTYPE hibernate-configuration PUBLIC "-//Hibernate/Hibernate Configuration DTD 3.0//EN"
"http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">
<hibernate-configuration>
<session-factory>
<property name="hibernate.hbm2ddl.auto">none</property>
<property name="hibernate.format_sql">true</property>
<property name="connection.driver_class">org.postgresql.Driver</property>
<property name="connection.url">jdbc:postgresql://localhost/Shift</property>
<property name="connection.username">postgres</property>
<property name="connection.password">postgres</property>
<!-- JDBC connection pool (use the built-in) -->
<property name="connection.pool_size">1</property>
<!-- SQL dialect -->
<property name="dialect">org.hibernate.dialect.PostgreSQLDialect</property>
<!-- Enable Hibernate's automatic session context management -->
<property name="current_session_context_class">thread</property>
<!-- Disable the second-level cache -->
<property name="cache.provider_class">org.hibernate.cache.NoCacheProvider</property>
<!-- Echo all executed SQL to stdout -->
<property name="show_sql">true</property>
<mapping class="br.com.shift.persistencia.Cliente" />
<mapping class="br.com.shift.persistencia.Contato" />
<mapping class="br.com.shift.persistencia.ContatoProjeto" />
<mapping class="br.com.shift.persistencia.DatasSuporte" />
<mapping class="br.com.shift.persistencia.Funcionario" />
<mapping class="br.com.shift.persistencia.Parceiro" />
<mapping class="br.com.shift.persistencia.ParceiroProjeto" />
<mapping class="br.com.shift.persistencia.ParceiroTecnologia" />
<mapping class="br.com.shift.persistencia.Suporte" />
<mapping class="br.com.shift.persistencia.SuporteTecnologia" />
<mapping class="br.com.shift.persistencia.Tecnologia" />
<mapping class="br.com.shift.persistencia.TelefoneContato" />
<mapping class="br.com.shift.persistencia.TelefoneFuncionario" />
</session-factory>
</hibernate-configuration>
Cristian Mietlicki
02/06/2009
vc poderia fazer um breve exemplo? Obrigado.
Dyego Carmo
02/06/2009
Cristian Mietlicki
02/06/2009
mas mesmo assim vou remover pra ver se o erro continua.
Dyego Carmo
02/06/2009
Troque tudo para java.io.Serializable
Na sua classe POJO... voce coloca a classe implementando o java.io.Serializable
ex:
public class MeuPojo implements java.io.Serializable {
}
Nunca utilize classes concretas para este tipo de servico... para tal voce costuma utilizar interfaces.
Cristian Mietlicki
02/06/2009
2009-06-02 11:12:24,687 DEBUG commons.digester.Digester -> [SetPropertiesRule]{f:template/div/div/table/tbody/tr/td/div/table/f:attribute/f:call} Setting property 'name' to 'getBorder'
2009-06-02 11:12:24,687 DEBUG commons.digester.Digester -> [SetPropertiesRule]{f:template/div/div/table/tbody/tr/td/div/table/f:attribute/f:call} Set org.ajax4jsf.renderkit.compiler.MethodCallElement properties
2009-06-02 11:12:24,687 DEBUG commons.beanutils.BeanUtils -> BeanUtils.populate(org.ajax4jsf.renderkit.compiler.MethodCallElement [
]
, {name=getBorder})
2009-06-02 11:12:24,687 DEBUG commons.beanutils.ConvertUtils -> Convert string 'getBorder' to class 'java.lang.String'
2009-06-02 11:12:24,687 DEBUG digester.Digester.sax -> endElement(,,f:call)
2009-06-02 11:12:24,687 DEBUG commons.digester.Digester -> match='f:template/div/div/table/tbody/tr/td/div/table/f:attribute/f:call'
2009-06-02 11:12:24,687 DEBUG commons.digester.Digester -> bodyText=''
2009-06-02 11:12:24,687 DEBUG commons.digester.Digester -> Fire body() for ObjectCreateRule[className=org.ajax4jsf.renderkit.compiler.MethodCallElement, attributeName=null]
2009-06-02 11:12:24,687 DEBUG commons.digester.Digester -> Fire body() for SetNextRule[methodName=addChild, paramType=null]
2009-06-02 11:12:24,687 DEBUG commons.digester.Digester -> Fire body() for SetPropertiesRule[]
2009-06-02 11:12:24,687 DEBUG commons.digester.Digester -> Popping body text '
'
2009-06-02 11:12:24,687 DEBUG commons.digester.Digester -> Fire end() for SetPropertiesRule[]
2009-06-02 11:12:24,687 DEBUG commons.digester.Digester -> Fire end() for SetNextRule[methodName=addChild, paramType=null]
2009-06-02 11:12:24,687 DEBUG commons.digester.Digester -> [SetNextRule]{f:template/div/div/table/tbody/tr/td/div/table/f:attribute/f:call} Call org.ajax4jsf.renderkit.compiler.AttributeElement.addChild(org.ajax4jsf.renderkit.compiler.MethodCallElement [
]
)
2009-06-02 11:12:24,687 DEBUG commons.digester.Digester -> Fire end() for ObjectCreateRule[className=org.ajax4jsf.renderkit.compiler.MethodCallElement, attributeName=null]
2009-06-02 11:12:24,687 DEBUG commons.digester.Digester -> [ObjectCreateRule]{f:template/div/div/table/tbody/tr/td/div/table/f:attribute/f:call} Pop org.ajax4jsf.renderkit.compiler.MethodCallElement
2009-06-02 11:12:24,687 DEBUG digester.Digester.sax -> characters(
)
2009-06-02 11:12:24,687 DEBUG digester.Digester.sax -> endElement(,,f:attribute)
2009-06-02 11:12:24,687 DEBUG commons.digester.Digester -> match='f:template/div/div/table/tbody/tr/td/div/table/f:attribute'
2009-06-02 11:12:24,687 DEBUG commons.digester.Digester -> bodyText='
'
2009-06-02 11:12:24,687 DEBUG commons.digester.Digester -> Fire body() for ObjectCreateRule[className=org.ajax4jsf.renderkit.compiler.AttributeElement, attributeName=null]
2009-06-02 11:12:24,687 DEBUG commons.digester.Digester -> Fire body() for SetNextRule[methodName=addChild, paramType=null]
2009-06-02 11:12:24,687 DEBUG commons.digester.Digester -> Fire body() for SetPropertiesRule[]
2009-06-02 11:12:24,687 DEBUG commons.digester.Digester -> Popping body text '
'
2009-06-02 11:12:24,687 DEBUG commons.digester.Digester -> Fire end() for SetPropertiesRule[]
2009-06-02 11:12:24,687 DEBUG commons.digester.Digester -> Fire end() for SetNextRule[methodName=addChild, paramType=null]
2009-06-02 11:12:24,687 DEBUG commons.digester.Digester -> [SetNextRule]{f:template/div/div/table/tbody/tr/td/div/table/f:attribute} Call org.ajax4jsf.renderkit.compiler.PlainElement.addChild(org.ajax4jsf.renderkit.compiler.AttributeElement [
org.ajax4jsf.renderkit.compiler.MethodCallElement [
]
;
]
)
2009-06-02 11:12:24,687 DEBUG commons.digester.Digester -> Fire end() for ObjectCreateRule[className=org.ajax4jsf.renderkit.compiler.AttributeElement, attributeName=null]
2009-06-02 11:12:24,687 DEBUG commons.digester.Digester -> [ObjectCreateRule]{f:template/div/div/table/tbody/tr/td/div/table/f:attribute} Pop org.ajax4jsf.renderkit.compiler.AttributeElement
2009-06-02 11:12:24,687 DEBUG digester.Digester.sax -> characters(
)
2009-06-02 11:12:24,687 DEBUG digester.Digester.sax -> startElement(,,f:call)
2009-06-02 11:12:24,687 DEBUG commons.digester.Digester -> Pushing body text '
'
2009-06-02 11:12:24,687 DEBUG commons.digester.Digester -> New match='f:template/div/div/table/tbody/tr/td/div/table/f:call'
2009-06-02 11:12:24,687 DEBUG commons.digester.Digester -> Fire begin() for ObjectCreateRule[className=org.ajax4jsf.renderkit.compiler.MethodCallElement, attributeName=null]
2009-06-02 11:12:24,687 DEBUG commons.digester.Digester -> [ObjectCreateRule]{f:template/div/div/table/tbody/tr/td/div/table/f:call}New org.ajax4jsf.renderkit.compiler.MethodCallElement
2009-06-02 11:12:24,687 DEBUG commons.digester.Digester -> Fire begin() for SetNextRule[methodName=addChild, paramType=null]
2009-06-02 11:12:24,687 DEBUG commons.digester.Digester -> Fire begin() for SetPropertiesRule[]
2009-06-02 11:12:24,687 DEBUG commons.digester.Digester -> [SetPropertiesRule]{f:template/div/div/table/tbody/tr/td/div/table/f:call} Setting property 'name' to 'utils.encodePassThruWithExclusions'
2009-06-02 11:12:24,687 DEBUG commons.digester.Digester -> [SetPropertiesRule]{f:template/div/div/table/tbody/tr/td/div/table/f:call} Set org.ajax4jsf.renderkit.compiler.MethodCallElement properties
2009-06-02 11:12:24,687 DEBUG commons.beanutils.BeanUtils -> BeanUtils.populate(org.ajax4jsf.renderkit.compiler.MethodCallElement [
]
, {name=utils.encodePassThruWithExclusions})
2009-06-02 11:12:24,687 DEBUG commons.beanutils.ConvertUtils -> Convert string 'utils.encodePassThruWithExclusions' to class 'java.lang.String'
2009-06-02 11:12:24,687 DEBUG digester.Digester.sax -> characters(
)
2009-06-02 11:12:24,687 DEBUG digester.Digester.sax -> startElement(,,f:parameter)
2009-06-02 11:12:24,703 DEBUG commons.digester.Digester -> Pushing body text '
'
2009-06-02 11:12:24,703 DEBUG commons.digester.Digester -> New match='f:template/div/div/table/tbody/tr/td/div/table/f:call/f:parameter'
2009-06-02 11:12:24,703 DEBUG commons.digester.Digester -> Fire begin() for ObjectCreateRule[className=org.ajax4jsf.renderkit.compiler.MethodParameterElement, attributeName=null]
2009-06-02 11:12:24,703 DEBUG commons.digester.Digester -> [ObjectCreateRule]{f:template/div/div/table/tbody/tr/td/div/table/f:call/f:parameter}New org.ajax4jsf.renderkit.compiler.MethodParameterElement
2009-06-02 11:12:24,703 DEBUG commons.digester.Digester -> Fire begin() for SetNextRule[methodName=addParameter, paramType=null]
2009-06-02 11:12:24,703 DEBUG commons.digester.Digester -> Fire begin() for SetPropertiesRule[]
2009-06-02 11:12:24,703 DEBUG commons.digester.Digester -> [SetPropertiesRule]{f:template/div/div/table/tbody/tr/td/div/table/f:call/f:parameter} Setting property 'value' to 'onclick,onselect,width,height,rows,border'
2009-06-02 11:12:24,703 DEBUG commons.digester.Digester -> [SetPropertiesRule]{f:template/div/div/table/tbody/tr/td/div/table/f:call/f:parameter} Set org.ajax4jsf.renderkit.compiler.MethodParameterElement properties
2009-06-02 11:12:24,703 DEBUG commons.beanutils.BeanUtils -> BeanUtils.populate(org.ajax4jsf.renderkit.compiler.MethodParameterElement [
]
, {value=onclick,onselect,width,height,rows,border})
2009-06-02 11:12:24,703 DEBUG commons.beanutils.ConvertUtils -> Convert string 'onclick,onselect,width,height,rows,border' to class 'java.lang.Object'
2009-06-02 11:12:24,703 DEBUG digester.Digester.sax -> endElement(,,f:parameter)
2009-06-02 11:12:24,703 DEBUG commons.digester.Digester -> match='f:template/div/div/table/tbody/tr/td/div/table/f:call/f:parameter'
2009-06-02 11:12:24,703 DEBUG commons.digester.Digester -> bodyText=''
2009-06-02 11:12:24,703 DEBUG commons.digester.Digester -> Fire body() for ObjectCreateRule[className=org.ajax4jsf.renderkit.compiler.MethodParameterElement, attributeName=null]
2009-06-02 11:12:24,703 DEBUG commons.digester.Digester -> Fire body() for SetNextRule[methodName=addParameter, paramType=null]
2009-06-02 11:12:24,703 DEBUG commons.digester.Digester -> Fire body() for SetPropertiesRule[]
2009-06-02 11:12:24,703 DEBUG commons.digester.Digester -> Popping body text '
'
2009-06-02 11:12:24,703 DEBUG commons.digester.Digester -> Fire end() for SetPropertiesRule[]
2009-06-02 11:12:24,703 DEBUG commons.digester.Digester -> Fire end() for SetNextRule[methodName=addParameter, paramType=null]
2009-06-02 11:12:24,703 DEBUG commons.digester.Digester -> [SetNextRule]{f:template/div/div/table/tbody/tr/td/div/table/f:call/f:parameter} Call org.ajax4jsf.renderkit.compiler.MethodCallElement.addParameter(org.ajax4jsf.renderkit.compiler.MethodParameterElement [
]
)
2009-06-02 11:12:24,703 DEBUG commons.digester.Digester -> Fire end() for ObjectCreateRule[className=org.ajax4jsf.renderkit.compiler.MethodParameterElement, attributeName=null]
2009-06-02 11:12:24,703 DEBUG commons.digester.Digester -> [ObjectCreateRule]{f:template/div/div/table/tbody/tr/td/div/table/f:call/f:parameter} Pop org.ajax4jsf.renderkit.compiler.MethodParameterElement
2009-06-02 11:12:24,703 DEBUG digester.Digester.sax -> characters(
)
2009-06-02 11:12:24,703 DEBUG digester.Digester.sax -> endElement(,,f:call)
2009-06-02 11:12:24,703 DEBUG commons.digester.Digester -> match='f:template/div/div/table/tbody/tr/td/div/table/f:call'
2009-06-02 11:12:24,703 DEBUG commons.digester.Digester -> bodyText='
'
2009-06-02 11:12:24,703 DEBUG commons.digester.Digester -> Fire body() for ObjectCreateRule[className=org.ajax4jsf.renderkit.compiler.MethodCallElement, attributeName=null]
2009-06-02 11:12:24,703 DEBUG commons.digester.Digester -> Fire body() for SetNextRule[methodName=addChild, paramType=null]
2009-06-02 11:12:24,703 DEBUG commons.digester.Digester -> Fire body() for SetPropertiesRule[]
2009-06-02 11:12:24,703 DEBUG commons.digester.Digester -> Popping body text '
'
2009-06-02 11:12:24,703 DEBUG commons.digester.Digester -> Fire end() for SetPropertiesRule[]
2009-06-02 11:12:24,703 DEBUG commons.digester.Digester -> Fire end() for SetNextRule[methodName=addChild, paramType=null]
2009-06-02 11:12:24,703 DEBUG commons.digester.Digester -> [SetNextRule]{f:template/div/div/table/tbody/tr/td/div/table/f:call} Call org.ajax4jsf.renderkit.compiler.PlainElement.addChild(org.ajax4jsf.renderkit.compiler.MethodCallElement [
]
)
2009-06-02 11:12:24,703 DEBUG commons.digester.Digester -> Fire end() for ObjectCreateRule[className=org.ajax4jsf.renderkit.compiler.MethodCallElement, attributeName=null]
2009-06-02 11:12:24,703 DEBUG commons.digester.Digester -> [ObjectCreateRule]{f:template/div/div/table/tbody/tr/td/div/table/f:call} Pop org.ajax4jsf.renderkit.compiler.MethodCallElement
2009-06-02 11:12:24,703 DEBUG digester.Digester.sax -> characters(
)
2009-06-02 11:12:24,703 DEBUG digester.Digester.sax -> startElement(,,tbody)
2009-06-02 11:12:24,703 DEBUG commons.digester.Digester -> Pushing body text '
'
2009-06-02 11:12:24,703 DEBUG commons.digester.Digester -> New match='f:template/div/div/table/tbody/tr/td/div/table/tbody'
2009-06-02 11:12:24,703 DEBUG commons.digester.Digester -> Fire begin() for org.ajax4jsf.renderkit.compiler.PlainElementCreateRule@7f3b8a
2009-06-02 11:12:24,703 DEBUG commons.digester.Digester -> Fire begin() for SetNextRule[methodName=addChild, paramType=null]
2009-06-02 11:12:24,703 DEBUG digester.Digester.sax -> characters(
)
2009-06-02 11:12:24,703 DEBUG digester.Digester.sax -> endElement(,,tbody)
2009-06-02 11:12:24,703 DEBUG commons.digester.Digester -> match='f:template/div/div/table/tbody/tr/td/div/table/tbody'
2009-06-02 11:12:24,703 DEBUG commons.digester.Digester -> bodyText='
'
2009-06-02 11:12:24,703 DEBUG commons.digester.Digester -> Fire body() for org.ajax4jsf.renderkit.compiler.PlainElementCreateRule@7f3b8a
2009-06-02 11:12:24,703 DEBUG commons.digester.Digester -> Fire body() for SetNextRule[methodName=addChild, paramType=null]
2009-06-02 11:12:24,703 DEBUG commons.digester.Digester -> Popping body text '
'
2009-06-02 11:12:24,703 DEBUG commons.digester.Digester -> Fire end() for SetNextRule[methodName=addChild, paramType=null]
2009-06-02 11:12:24,703 DEBUG commons.digester.Digester -> [SetNextRule]{f:template/div/div/table/tbody/tr/td/div/table/tbody} Call org.ajax4jsf.renderkit.compiler.PlainElement.addChild(org.ajax4jsf.renderkit.compiler.PlainElement [
]
)
2009-06-02 11:12:24,703 DEBUG commons.digester.Digester -> Fire end() for org.ajax4jsf.renderkit.compiler.PlainElementCreateRule@7f3b8a
2009-06-02 11:12:24,703 DEBUG digester.Digester.sax -> characters(
)
2009-06-02 11:12:24,703 DEBUG digester.Digester.sax -> endElement(,,table)
2009-06-02 11:12:24,703 DEBUG commons.digester.Digester -> match='f:template/div/div/table/tbody/tr/td/div/table'
2009-06-02 11:12:24,703 DEBUG commons.digester.Digester -> bodyText='
'
2009-06-02 11:12:24,703 DEBUG commons.digester.Digester -> Fire body() for org.ajax4jsf.renderkit.compiler.PlainElementCreateRule@7f3b8a
2009-06-02 11:12:24,703 DEBUG commons.digester.Digester -> Fire body() for SetNextRule[methodName=addChild, paramType=null]
2009-06-02 11:12:24,703 DEBUG commons.digester.Digester -> Popping body text '
'
2009-06-02 11:12:24,703 DEBUG commons.digester.Digester -> Fire end() for SetNextRule[methodName=addChild, paramType=null]
2009-06-02 11:12:24,703 DEBUG commons.digester.Digester -> [SetNextRule]{f:template/div/div/table/tbody/tr/td/div/table} Call org.ajax4jsf.renderkit.compiler.PlainElement.addChild(org.ajax4jsf.renderkit.compiler.PlainElement [
org.ajax4jsf.renderkit.compiler.AttributeElement [
org.ajax4jsf.renderkit.compiler.MethodCallElement [
]
;
]
;
org.ajax4jsf.renderkit.compiler.AttributeElement [
org.ajax4jsf.renderkit.compiler.MethodCallElement [
]
;
]
;
org.ajax4jsf.renderkit.compiler.MethodCallElement [
]
;
org.ajax4jsf.renderkit.compiler.PlainElement [
]
;
]
)
2009-06-02 11:12:24,703 DEBUG commons.digester.Digester -> Fire end() for org.ajax4jsf.renderkit.compiler.PlainElementCreateRule@7f3b8a
2009-06-02 11:12:24,703 DEBUG digester.Digester.sax -> characters(
)
2009-06-02 11:12:24,703 DEBUG digester.Digester.sax -> endElement(,,div)
2009-06-02 11:12:24,703 DEBUG commons.digester.Digester -> match='f:template/div/div/table/tbody/tr/td/div'
2009-06-02 11:12:24,703 DEBUG commons.digester.Digester -> bodyText='
'
2009-06-02 11:12:24,703 DEBUG commons.digester.Digester -> Fire body() for org.ajax4jsf.renderkit.compiler.PlainElementCreateRule@7f3b8a
2009-06-02 11:12:24,703 DEBUG commons.digester.Digester -> Fire body() for SetNextRule[methodName=addChild, paramType=null]
2009-06-02 11:12:24,703 DEBUG commons.digester.Digester -> Popping body text '
'
2009-06-02 11:12:24,703 DEBUG commons.digester.Digester -> Fire end() for SetNextRule[methodName=addChild, paramType=null]
2009-06-02 11:12:24,703 DEBUG commons.digester.Digester -> [SetNextRule]{f:template/div/div/table/tbody/tr/td/div} Call org.ajax4jsf.renderkit.compiler.PlainElement.addChild(org.ajax4jsf.renderkit.compiler.PlainElement [
org.ajax4jsf.renderkit.compiler.AttributeElement [
org.ajax4jsf.renderkit.compiler.MethodCallElement [
]
;
]
;
org.ajax4jsf.renderkit.compiler.PlainElement [
org.ajax4jsf.renderkit.compiler.AttributeElement [
org.ajax4jsf.renderkit.compiler.MethodCallElement [
]
;
]
;
org.ajax4jsf.renderkit.compiler.AttributeElement [
org.ajax4jsf.renderkit.compiler.MethodCallElement [
]
;
]
;
org.ajax4jsf.renderkit.compiler.MethodCallElement [
]
;
org.ajax4jsf.renderkit.compiler.PlainElement [
]
;
]
;
]
)
2009-06-02 11:12:24,703 DEBUG commons.digester.Digester -> Fire end() for org.ajax4jsf.renderkit.compiler.PlainElementCreateRule@7f3b8a
2009-06-02 11:12:24,703 DEBUG digester.Digester.sax -> characters(
)
2009-06-02 11:12:24,703 DEBUG digester.Digester.sax -> endElement(,,td)
2009-06-02 11:12:24,703 DEBUG commons.digester.Digester -> match='f:template/div/div/table/tbody/tr/td'
2009-06-02 11:12:24,703 DEBUG commons.digester.Digester -> bodyText='
'
2009-06-02 11:12:24,703 DEBUG commons.digester.Digester -> Fire body() for org.ajax4jsf.renderkit.compiler.PlainElementCreateRule@7f3b8a
2009-06-02 11:12:24,703 DEBUG commons.digester.Digester -> Fire body() for SetNextRule[methodName=addChild, paramType=null]
2009-06-02 11:12:24,703 DEBUG commons.digester.Digester -> Popping body text '
'
2009-06-02 11:12:24,703 DEBUG commons.digester.Digester -> Fire end() for SetNextRule[methodName=addChild, paramType=null]
2009-06-02 11:12:24,703 DEBUG commons.digester.Digester -> [SetNextRule]{f:template/div/div/table/tbody/tr/td} Call org.ajax4jsf.renderkit.compiler.PlainElement.addChild(org.ajax4jsf.renderkit.compiler.PlainElement [
org.ajax4jsf.renderkit.compiler.PlainElement [
org.ajax4jsf.renderkit.compiler.AttributeElement [
org.ajax4jsf.renderkit.compiler.MethodCallElement [
]
;
]
;
org.ajax4jsf.renderkit.compiler.PlainElement [
org.ajax4jsf.renderkit.compiler.AttributeElement [
org.ajax4jsf.renderkit.compiler.MethodCallElement [
]
;
]
;
org.ajax4jsf.renderkit.compiler.AttributeElement [
org.ajax4jsf.renderkit.compiler.MethodCallElement [
]
;
]
;
org.ajax4jsf.renderkit.compiler.MethodCallElement [
]
;
org.ajax4jsf.renderkit.compiler.PlainElement [
]
;
]
;
]
;
]
)
2009-06-02 11:12:24,703 DEBUG commons.digester.Digester -> Fire end() for org.ajax4jsf.renderkit.compiler.PlainElementCreateRule@7f3b8a
2009-06-02 11:12:24,703 DEBUG digester.Digester.sax -> characters(
)
2009-06-02 11:12:24,703 DEBUG digester.Digester.sax -> endElement(,,tr)
2009-06-02 11:12:24,703 DEBUG commons.digester.Digester -> match='f:template/div/div/table/tbody/tr'
2009-06-02 11:12:24,703 DEBUG commons.digester.Digester -> bodyText='
'
2009-06-02 11:12:24,703 DEBUG commons.digester.Digester -> Fire body() for org.ajax4jsf.renderkit.compiler.PlainElementCreateRule@7f3b8a
2009-06-02 11:12:24,703 DEBUG commons.digester.Digester -> Fire body() for SetNextRule[methodName=addChild, paramType=null]
2009-06-02 11:12:24,703 DEBUG commons.digester.Digester -> Popping body text '
'
2009-06-02 11:12:24,703 DEBUG commons.digester.Digester -> Fire end() for SetNextRule[methodName=addChild, paramType=null]
2009-06-02 11:12:24,703 DEBUG commons.digester.Digester -> [SetNextRule]{f:template/div/div/table/tbody/tr} Call org.ajax4jsf.renderkit.compiler.PlainElement.addChild(org.ajax4jsf.renderkit.compiler.PlainElement [
org.ajax4jsf.renderkit.compiler.PlainElement [
org.ajax4jsf.renderkit.compiler.PlainElement [
org.ajax4jsf.renderkit.compiler.AttributeElement [
org.ajax4jsf.renderkit.compiler.MethodCallElement [
]
;
]
;
org.ajax4jsf.renderkit.compiler.PlainElement [
org.ajax4jsf.renderkit.compiler.AttributeElement [
org.ajax4jsf.renderkit.compiler.MethodCallElement [
]
;
]
;
org.ajax4jsf.renderkit.compiler.AttributeElement [
org.ajax4jsf.renderkit.compiler.MethodCallElement [
]
;
]
;
org.ajax4jsf.renderkit.compiler.MethodCallElement [
]
;
org.ajax4jsf.renderkit.compiler.PlainElement [
]
;
]
;
]
;
]
;
]
)
2009-06-02 11:12:24,703 DEBUG commons.digester.Digester -> Fire end() for org.ajax4jsf.renderkit.compiler.PlainElementCreateRule@7f3b8a
2009-06-02 11:12:24,703 DEBUG digester.Digester.sax -> characters(
)
2009-06-02 11:12:24,703 DEBUG digester.Digester.sax -> endElement(,,tbody)
2009-06-02 11:12:24,703 DEBUG commons.digester.Digester -> match='f:template/div/div/table/tbody'
2009-06-02 11:12:24,703 DEBUG commons.digester.Digester -> bodyText='
'
2009-06-02 11:12:24,703 DEBUG commons.digester.Digester -> Fire body() for org.ajax4jsf.renderkit.compiler.PlainElementCreateRule@7f3b8a
2009-06-02 11:12:24,703 DEBUG commons.digester.Digester -> Fire body() for SetNextRule[methodName=addChild, paramType=null]
2009-06-02 11:12:24,703 DEBUG commons.digester.Digester -> Popping body text '
'
2009-06-02 11:12:24,703 DEBUG commons.digester.Digester -> Fire end() for SetNextRule[methodName=addChild, paramType=null]
2009-06-02 11:12:24,703 DEBUG commons.digester.Digester -> [SetNextRule]{f:template/div/div/table/tbody} Call org.ajax4jsf.renderkit.compiler.PlainElement.addChild(org.ajax4jsf.renderkit.compiler.PlainElement [
org.ajax4jsf.renderkit.compiler.PlainElement [
org.ajax4jsf.renderkit.compiler.PlainElement [
org.ajax4jsf.renderkit.compiler.PlainElement [
org.ajax4jsf.renderkit.compiler.AttributeElement [
org.ajax4jsf.renderkit.compiler.MethodCallElement [
]
;
]
;
org.ajax4jsf.renderkit.compiler.PlainElement [
org.ajax4jsf.renderkit.compiler.AttributeElement [
org.ajax4jsf.renderkit.compiler.MethodCallElement [
]
;
]
;
org.ajax4jsf.renderkit.compiler.AttributeElement [
org.ajax4jsf.renderkit.compiler.MethodCallElement [
]
;
]
;
org.ajax4jsf.renderkit.compiler.MethodCallElement [
]
;
org.ajax4jsf.renderkit.compiler.PlainElement [
]
;
]
;
]
;
]
;
]
;
]
)
2009-06-02 11:12:24,718 DEBUG commons.digester.Digester -> Fire end() for org.ajax4jsf.renderkit.compiler.PlainElementCreateRule@7f3b8a
2009-06-02 11:12:24,718 DEBUG digester.Digester.sax -> characters(
)
2009-06-02 11:12:24,718 DEBUG digester.Digester.sax -> endElement(,,table)
2009-06-02 11:12:24,718 DEBUG commons.digester.Digester -> match='f:template/div/div/table'
2009-06-02 11:12:24,718 DEBUG commons.digester.Digester -> bodyText='
'
2009-06-02 11:12:24,718 DEBUG commons.digester.Digester -> Fire body() for org.ajax4jsf.renderkit.compiler.PlainElementCreateRule@7f3b8a
2009-06-02 11:12:24,718 DEBUG commons.digester.Digester -> Fire body() for SetNextRule[methodName=addChild, paramType=null]
2009-06-02 11:12:24,718 DEBUG commons.digester.Digester -> Popping body text '
'
2009-06-02 11:12:24,718 DEBUG commons.digester.Digester -> Fire end() for SetNextRule[methodName=addChild, paramType=null]
2009-06-02 11:12:24,718 DEBUG commons.digester.Digester -> [SetNextRule]{f:template/div/div/table} Call org.ajax4jsf.renderkit.compiler.PlainElement.addChild(org.ajax4jsf.renderkit.compiler.PlainElement [
org.ajax4jsf.renderkit.compiler.PlainElement [
org.ajax4jsf.renderkit.compiler.PlainElement [
org.ajax4jsf.renderkit.compiler.PlainElement [
org.ajax4jsf.renderkit.compiler.PlainElement [
org.ajax4jsf.renderkit.compiler.AttributeElement [
org.ajax4jsf.renderkit.compiler.MethodCallElement [
]
;
]
;
org.ajax4jsf.renderkit.compiler.PlainElement [
org.ajax4jsf.renderkit.compiler.AttributeElement [
org.ajax4jsf.renderkit.compiler.MethodCallElement [
]
;
]
;
org.ajax4jsf.renderkit.compiler.AttributeElement [
org.ajax4jsf.renderkit.compiler.MethodCallElement [
]
;
]
;
org.ajax4jsf.renderkit.compiler.MethodCallElement [
]
;
org.ajax4jsf.renderkit.compiler.PlainElement [
]
;
]
;
]
;
]
;
]
;
]
;
]
)
2009-06-02 11:12:24,718 DEBUG commons.digester.Digester -> Fire end() for org.ajax4jsf.renderkit.compiler.PlainElementCreateRule@7f3b8a
2009-06-02 11:12:24,718 DEBUG digester.Digester.sax -> characters(
)
2009-06-02 11:12:24,718 DEBUG digester.Digester.sax -> endElement(,,div)
2009-06-02 11:12:24,718 DEBUG commons.digester.Digester -> match='f:template/div/div'
2009-06-02 11:12:24,718 DEBUG commons.digester.Digester -> bodyText='
'
2009-06-02 11:12:24,718 DEBUG commons.digester.Digester -> Fire body() for org.ajax4jsf.renderkit.compiler.PlainElementCreateRule@7f3b8a
2009-06-02 11:12:24,718 DEBUG commons.digester.Digester -> Fire body() for SetNextRule[methodName=addChild, paramType=null]
2009-06-02 11:12:24,718 DEBUG commons.digester.Digester -> Popping body text '
'
2009-06-02 11:12:24,718 DEBUG commons.digester.Digester -> Fire end() for SetNextRule[methodName=addChild, paramType=null]
2009-06-02 11:12:24,718 DEBUG commons.digester.Digester -> [SetNextRule]{f:template/div/div} Call org.ajax4jsf.renderkit.compiler.PlainElement.addChild(org.ajax4jsf.renderkit.compiler.PlainElement [
org.ajax4jsf.renderkit.compiler.AttributeElement [
org.ajax4jsf.renderkit.compiler.MethodCallElement [
]
;
org.ajax4jsf.renderkit.compiler.MethodCallElement [
]
;
]
;
org.ajax4jsf.renderkit.compiler.PlainElement [
org.ajax4jsf.renderkit.compiler.PlainElement [
org.ajax4jsf.renderkit.compiler.PlainElement [
org.ajax4jsf.renderkit.compiler.PlainElement [
org.ajax4jsf.renderkit.compiler.PlainElement [
org.ajax4jsf.renderkit.compiler.AttributeElement [
org.ajax4jsf.renderkit.compiler.MethodCallElement [
]
;
]
;
org.ajax4jsf.renderkit.compiler.PlainElement [
org.ajax4jsf.renderkit.compiler.AttributeElement [
org.ajax4jsf.renderkit.compiler.MethodCallElement [
]
;
]
;
org.ajax4jsf.renderkit.compiler.AttributeElement [
org.ajax4jsf.renderkit.compiler.MethodCallElement [
]
;
]
;
org.ajax4jsf.renderkit.compiler.MethodCallElement [
]
;
org.ajax4jsf.renderkit.compiler.PlainElement [
]
;
]
;
]
;
]
;
]
;
]
;
]
;
]
)
2009-06-02 11:12:24,718 DEBUG commons.digester.Digester -> Fire end() for org.ajax4jsf.renderkit.compiler.PlainElementCreateRule@7f3b8a
2009-06-02 11:12:24,718 DEBUG digester.Digester.sax -> characters(
)
2009-06-02 11:12:24,718 DEBUG digester.Digester.sax -> endElement(,,div)
2009-06-02 11:12:24,718 DEBUG commons.digester.Digester -> match='f:template/div'
2009-06-02 11:12:24,718 DEBUG commons.digester.Digester -> bodyText='
'
2009-06-02 11:12:24,718 DEBUG commons.digester.Digester -> Fire body() for org.ajax4jsf.renderkit.compiler.PlainElementCreateRule@7f3b8a
2009-06-02 11:12:24,718 DEBUG commons.digester.Digester -> Fire body() for SetNextRule[methodName=addChild, paramType=null]
2009-06-02 11:12:24,718 DEBUG commons.digester.Digester -> Popping body text '
'
2009-06-02 11:12:24,718 DEBUG commons.digester.Digester -> Fire end() for SetNextRule[methodName=addChild, paramType=null]
2009-06-02 11:12:24,718 DEBUG commons.digester.Digester -> [SetNextRule]{f:template/div} Call org.ajax4jsf.renderkit.compiler.RootElement.addChild(org.ajax4jsf.renderkit.compiler.PlainElement [
org.ajax4jsf.renderkit.compiler.PlainElement [
org.ajax4jsf.renderkit.compiler.AttributeElement [
org.ajax4jsf.renderkit.compiler.MethodCallElement [
]
;
org.ajax4jsf.renderkit.compiler.MethodCallElement [
]
;
]
;
org.ajax4jsf.renderkit.compiler.PlainElement [
org.ajax4jsf.renderkit.compiler.PlainElement [
org.ajax4jsf.renderkit.compiler.PlainElement [
org.ajax4jsf.renderkit.compiler.PlainElement [
org.ajax4jsf.renderkit.compiler.PlainElement [
org.ajax4jsf.renderkit.compiler.AttributeElement [
org.ajax4jsf.renderkit.compiler.MethodCallElement [
]
;
]
;
org.ajax4jsf.renderkit.compiler.PlainElement [
org.ajax4jsf.renderkit.compiler.AttributeElement [
org.ajax4jsf.renderkit.compiler.MethodCallElement [
]
;
]
;
org.ajax4jsf.renderkit.compiler.AttributeElement [
org.ajax4jsf.renderkit.compiler.MethodCallElement [
]
;
]
;
org.ajax4jsf.renderkit.compiler.MethodCallElement [
]
;
org.ajax4jsf.renderkit.compiler.PlainElement [
]
;
]
;
]
;
]
;
]
;
]
;
]
;
]
;
]
)
2009-06-02 11:12:24,718 DEBUG commons.digester.Digester -> Fire end() for org.ajax4jsf.renderkit.compiler.PlainElementCreateRule@7f3b8a
2009-06-02 11:12:24,718 DEBUG digester.Digester.sax -> characters(
)
2009-06-02 11:12:24,718 DEBUG digester.Digester.sax -> startElement(,,div)
2009-06-02 11:12:24,718 DEBUG commons.digester.Digester -> Pushing body text '
'
2009-06-02 11:12:24,718 DEBUG commons.digester.Digester -> New match='f:template/div'
2009-06-02 11:12:24,718 DEBUG commons.digester.Digester -> Fire begin() for org.ajax4jsf.renderkit.compiler.PlainElementCreateRule@7f3b8a
2009-06-02 11:12:24,718 DEBUG commons.digester.Digester -> Fire begin() for SetNextRule[methodName=addChild, paramType=null]
2009-06-02 11:12:24,718 DEBUG digester.Digester.sax -> characters(
)
2009-06-02 11:12:24,718 DEBUG digester.Digester.sax -> startElement(,,f:attribute)
2009-06-02 11:12:24,718 DEBUG commons.digester.Digester -> Pushing body text '
'
2009-06-02 11:12:24,718 DEBUG commons.digester.Digester -> New match='f:template/div/f:attribute'
2009-06-02 11:12:24,718 DEBUG commons.digester.Digester -> Fire begin() for ObjectCreateRule[className=org.ajax4jsf.renderkit.compiler.AttributeElement, attributeName=null]
2009-06-02 11:12:24,718 DEBUG commons.digester.Digester -> [ObjectCreateRule]{f:template/div/f:attribute}New org.ajax4jsf.renderkit.compiler.AttributeElement
2009-06-02 11:12:24,718 DEBUG commons.digester.Digester -> Fire begin() for SetNextRule[methodName=addChild, paramType=null]
2009-06-02 11:12:24,718 DEBUG commons.digester.Digester -> Fire begin() for SetPropertiesRule[]
2009-06-02 11:12:24,718 DEBUG commons.digester.Digester -> [SetPropertiesRule]{f:template/div/f:attribute} Setting property 'name' to 'style'
2009-06-02 11:12:24,718 DEBUG commons.digester.Digester -> [SetPropertiesRule]{f:template/div/f:attribute} Set org.ajax4jsf.renderkit.compiler.AttributeElement properties
2009-06-02 11:12:24,718 DEBUG commons.beanutils.BeanUtils -> BeanUtils.populate(org.ajax4jsf.renderkit.compiler.AttributeElement [
]
, {name=style})
2009-06-02 11:12:24,718 DEBUG commons.beanutils.ConvertUtils -> Convert string 'style' to class 'java.lang.String'
2009-06-02 11:12:24,718 DEBUG digester.Digester.sax -> characters(
)
2009-06-02 11:12:24,718 DEBUG digester.Digester.sax -> startElement(,,f:call)
2009-06-02 11:12:24,718 DEBUG commons.digester.Digester -> Pushing body text '
'
2009-06-02 11:12:24,718 DEBUG commons.digester.Digester -> New match='f:template/div/f:attribute/f:call'
2009-06-02 11:12:24,718 DEBUG commons.digester.Digester -> Fire begin() for ObjectCreateRule[className=org.ajax4jsf.renderkit.compiler.MethodCallElement, attributeName=null]
2009-06-02 11:12:24,718 DEBUG commons.digester.Digester -> [ObjectCreateRule]{f:template/div/f:attribute/f:call}New org.ajax4jsf.renderkit.compiler.MethodCallElement
2009-06-02 11:12:24,718 DEBUG commons.digester.Digester -> Fire begin() for SetNextRule[methodName=addChild, paramType=null]
2009-06-02 11:12:24,718 DEBUG commons.digester.Digester -> Fire begin() for SetPropertiesRule[]
2009-06-02 11:12:24,718 DEBUG commons.digester.Digester -> [SetPropertiesRule]{f:template/div/f:attribute/f:call} Setting property 'name' to 'opacityStyle'
2009-06-02 11:12:24,718 DEBUG commons.digester.Digester -> [SetPropertiesRule]{f:template/div/f:attribute/f:call} Set org.ajax4jsf.renderkit.compiler.MethodCallElement properties
2009-06-02 11:12:24,718 DEBUG commons.beanutils.BeanUtils -> BeanUtils.populate(org.ajax4jsf.renderkit.compiler.MethodCallElement [
]
, {name=opacityStyle})
2009-06-02 11:12:24,718 DEBUG commons.beanutils.ConvertUtils -> Convert string 'opacityStyle' to class 'java.lang.String'
2009-06-02 11:12:24,718 DEBUG digester.Digester.sax -> endElement(,,f:call)
2009-06-02 11:12:24,718 DEBUG commons.digester.Digester -> match='f:template/div/f:attribute/f:call'
2009-06-02 11:12:24,718 DEBUG commons.digester.Digester -> bodyText=''
2009-06-02 11:12:24,718 DEBUG commons.digester.Digester -> Fire body() for ObjectCreateRule[className=org.ajax4jsf.renderkit.compiler.MethodCallElement, attributeName=null]
2009-06-02 11:12:24,718 DEBUG commons.digester.Digester -> Fire body() for SetNextRule[methodName=addChild, paramType=null]
2009-06-02 11:12:24,718 DEBUG commons.digester.Digester -> Fire body() for SetPropertiesRule[]
2009-06-02 11:12:24,718 DEBUG commons.digester.Digester -> Popping body text '
'
2009-06-02 11:12:24,718 DEBUG commons.digester.Digester -> Fire end() for SetPropertiesRule[]
2009-06-02 11:12:24,718 DEBUG commons.digester.Digester -> Fire end() for SetNextRule[methodName=addChild, paramType=null]
2009-06-02 11:12:24,718 DEBUG commons.digester.Digester -> [SetNextRule]{f:template/div/f:attribute/f:call} Call org.ajax4jsf.renderkit.compiler.AttributeElement.addChild(org.ajax4jsf.renderkit.compiler.MethodCallElement [
]
)
2009-06-02 11:12:24,718 DEBUG commons.digester.Digester -> Fire end() for ObjectCreateRule[className=org.ajax4jsf.renderkit.compiler.MethodCallElement, attributeName=null]
2009-06-02 11:12:24,718 DEBUG commons.digester.Digester -> [ObjectCreateRule]{f:template/div/f:attribute/f:call} Pop org.ajax4jsf.renderkit.compiler.MethodCallElement
2009-06-02 11:12:24,718 DEBUG digester.Digester.sax -> characters(
)
2009-06-02 11:12:24,718 DEBUG digester.Digester.sax -> startElement(,,f:call)
2009-06-02 11:12:24,718 DEBUG commons.digester.Digester -> Pushing body text '
'
2009-06-02 11:12:24,718 DEBUG commons.digester.Digester -> New match='f:template/div/f:attribute/f:call'
2009-06-02 11:12:24,718 DEBUG commons.digester.Digester -> Fire begin() for ObjectCreateRule[className=org.ajax4jsf.renderkit.compiler.MethodCallElement, attributeName=null]
2009-06-02 11:12:24,718 DEBUG commons.digester.Digester -> [ObjectCreateRule]{f:template/div/f:attribute/f:call}New org.ajax4jsf.renderkit.compiler.MethodCallElement
2009-06-02 11:12:24,718 DEBUG commons.digester.Digester -> Fire begin() for SetNextRule[methodName=addChild, paramType=null]
2009-06-02 11:12:24,718 DEBUG commons.digester.Digester -> Fire begin() for SetPropertiesRule[]
2009-06-02 11:12:24,718 DEBUG commons.digester.Digester -> [SetPropertiesRule]{f:template/div/f:attribute/f:call} Setting property 'name' to 'shadowDepth'
2009-06-02 11:12:24,718 DEBUG commons.digester.Digester -> [SetPropertiesRule]{f:template/div/f:attribute/f:call} Set org.ajax4jsf.renderkit.compiler.MethodCallElement properties
2009-06-02 11:12:24,718 DEBUG commons.beanutils.BeanUtils -> BeanUtils.populate(org.ajax4jsf.renderkit.compiler.MethodCallElement [
]
, {name=shadowDepth})
2009-06-02 11:12:24,718 DEBUG commons.beanutils.ConvertUtils -> Convert string 'shadowDepth' to class 'java.lang.String'
2009-06-02 11:12:24,718 DEBUG digester.Digester.sax -> endElement(,,f:call)
2009-06-02 11:12:24,718 DEBUG commons.digester.Digester -> match='f:template/div/f:attribute/f:call'
2009-06-02 11:12:24,718 DEBUG commons.digester.Digester -> bodyText=''
2009-06-02 11:12:24,718 DEBUG commons.digester.Digester -> Fire body() for ObjectCreateRule[className=org.ajax4jsf.renderkit.compiler.MethodCallElement, attributeName=null]
2009-06-02 11:12:24,718 DEBUG commons.digester.Digester -> Fire body() for SetNextRule[methodName=addChild, paramType=null]
2009-06-02 11:12:24,718 DEBUG commons.digester.Digester -> Fire body() for SetPropertiesRule[]
2009-06-02 11:12:24,718 DEBUG commons.digester.Digester -> Popping body text '
'
2009-06-02 11:12:24,718 DEBUG commons.digester.Digester -> Fire end() for SetPropertiesRule[]
2009-06-02 11:12:24,718 DEBUG commons.digester.Digester -> Fire end() for SetNextRule[methodName=addChild, paramType=null]
2009-06-02 11:12:24,718 DEBUG commons.digester.Digester -> [SetNextRule]{f:template/div/f:attribute/f:call} Call org.ajax4jsf.renderkit.compiler.AttributeElement.addChild(org.ajax4jsf.renderkit.compiler.MethodCallElement [
]
)
2009-06-02 11:12:24,718 DEBUG commons.digester.Digester -> Fire end() for ObjectCreateRule[className=org.ajax4jsf.renderkit.compiler.MethodCallElement, attributeName=null]
2009-06-02 11:12:24,718 DEBUG commons.digester.Digester -> [ObjectCreateRule]{f:template/div/f:attribute/f:call} Pop org.ajax4jsf.renderkit.compiler.MethodCallElement
2009-06-02 11:12:24,718 DEBUG digester.Digester.sax -> characters(
)
2009-06-02 11:12:24,718 DEBUG digester.Digester.sax -> endElement(,,f:attribute)
2009-06-02 11:12:24,734 DEBUG commons.digester.Digester -> match='f:template/div/f:attribute'
2009-06-02 11:12:24,734 DEBUG commons.digester.Digester -> bodyText='
'
2009-06-02 11:12:24,734 DEBUG commons.digester.Digester -> Fire body() for ObjectCreateRule[className=org.ajax4jsf.renderkit.compiler.AttributeElement, attributeName=null]
2009-06-02 11:12:24,734 DEBUG commons.digester.Digester -> Fire body() for SetNextRule[methodName=addChild, paramType=null]
2009-06-02 11:12:24,734 DEBUG commons.digester.Digester -> Fire body() for SetPropertiesRule[]
2009-06-02 11:12:24,734 DEBUG commons.digester.Digester -> Popping body text '
'
2009-06-02 11:12:24,734 DEBUG commons.digester.Digester -> Fire end() for SetPropertiesRule[]
2009-06-02 11:12:24,734 DEBUG commons.digester.Digester -> Fire end() for SetNextRule[methodName=addChild, paramType=null]
2009-06-02 11:12:24,734 DEBUG commons.digester.Digester -> [SetNextRule]{f:template/div/f:attribute} Call org.ajax4jsf.renderkit.compiler.PlainElement.addChild(org.ajax4jsf.renderkit.compiler.AttributeElement [
org.ajax4jsf.renderkit.compiler.MethodCallElement [
]
;
org.ajax4jsf.renderkit.compiler.MethodCallElement [
]
;
]
)
2009-06-02 11:12:24,734 DEBUG commons.digester.Digester -> Fire end() for ObjectCreateRule[className=org.ajax4jsf.renderkit.compiler.AttributeElement, attributeName=null]
2009-06-02 11:12:24,734 DEBUG commons.digester.Digester -> [ObjectCreateRule]{f:template/div/f:attribute} Pop org.ajax4jsf.renderkit.compiler.AttributeElement
2009-06-02 11:12:24,734 DEBUG digester.Digester.sax -> endElement(,,div)
2009-06-02 11:12:24,734 DEBUG commons.digester.Digester -> match='f:template/div'
2009-06-02 11:12:24,734 DEBUG commons.digester.Digester -> bodyText='
'
2009-06-02 11:12:24,734 DEBUG commons.digester.Digester -> Fire body() for org.ajax4jsf.renderkit.compiler.PlainElementCreateRule@7f3b8a
2009-06-02 11:12:24,734 DEBUG commons.digester.Digester -> Fire body() for SetNextRule[methodName=addChild, paramType=null]
2009-06-02 11:12:24,734 DEBUG commons.digester.Digester -> Popping body text '
'
2009-06-02 11:12:24,734 DEBUG commons.digester.Digester -> Fire end() for SetNextRule[methodName=addChild, paramType=null]
2009-06-02 11:12:24,734 DEBUG commons.digester.Digester -> [SetNextRule]{f:template/div} Call org.ajax4jsf.renderkit.compiler.RootElement.addChild(org.ajax4jsf.renderkit.compiler.PlainElement [
org.ajax4jsf.renderkit.compiler.AttributeElement [
org.ajax4jsf.renderkit.compiler.MethodCallElement [
]
;
org.ajax4jsf.renderkit.compiler.MethodCallElement [
]
;
]
;
]
)
2009-06-02 11:12:24,734 DEBUG commons.digester.Digester -> Fire end() for org.ajax4jsf.renderkit.compiler.PlainElementCreateRule@7f3b8a
2009-06-02 11:12:24,734 DEBUG digester.Digester.sax -> characters(
)
2009-06-02 11:12:24,734 DEBUG digester.Digester.sax -> endElement(,,f:template)
2009-06-02 11:12:24,734 DEBUG commons.digester.Digester -> match='f:template'
2009-06-02 11:12:24,734 DEBUG commons.digester.Digester -> bodyText='
'
2009-06-02 11:12:24,734 DEBUG commons.digester.Digester -> Fire body() for SetPropertiesRule[]
2009-06-02 11:12:24,734 DEBUG commons.digester.Digester -> Popping body text ''
2009-06-02 11:12:24,734 DEBUG commons.digester.Digester -> Fire end() for SetPropertiesRule[]
2009-06-02 11:12:24,734 DEBUG digester.Digester.sax -> endDocument()
2009-06-02 11:12:24,734 DEBUG renderkit.compiler.HtmlCompiler -> Finish compilation template from org/richfaces/renderkit/html/templates/popup.jspx
2009-06-02 11:12:24,765 DEBUG ajax4jsf.resource.InternetResourceBuilder -> Return instance of internet resource builder org.ajax4jsf.resource.ResourceBuilderImpl@1546dbc
2009-06-02 11:12:24,796 DEBUG ajax4jsf.resource.InternetResourceBuilder -> Return instance of internet resource builder org.ajax4jsf.resource.ResourceBuilderImpl@1546dbc
2009-06-02 11:12:24,796 DEBUG ajax4jsf.resource.InternetResourceBuilder -> Return instance of internet resource builder org.ajax4jsf.resource.ResourceBuilderImpl@1546dbc
2009-06-02 11:12:24,796 DEBUG ajax4jsf.javascript.AjaxScript -> AjaxScript() - Created instance of AjaxScript resource
2009-06-02 11:12:24,796 DEBUG ajax4jsf.resource.InternetResourceBuilder -> Return instance of internet resource builder org.ajax4jsf.resource.ResourceBuilderImpl@1546dbc
2009-06-02 11:12:24,796 DEBUG ajax4jsf.resource.InternetResourceBuilder -> Return instance of internet resource builder org.ajax4jsf.resource.ResourceBuilderImpl@1546dbc
2009-06-02 11:12:24,796 DEBUG ajax4jsf.resource.InternetResourceBuilder -> Return instance of internet resource builder org.ajax4jsf.resource.ResourceBuilderImpl@1546dbc
2009-06-02 11:12:24,812 DEBUG ajax4jsf.resource.InternetResourceBuilder -> Return instance of internet resource builder org.ajax4jsf.resource.ResourceBuilderImpl@1546dbc
2009-06-02 11:12:24,812 DEBUG ajax4jsf.resource.InternetResourceBuilder -> Return instance of internet resource builder org.ajax4jsf.resource.ResourceBuilderImpl@1546dbc
2009-06-02 11:12:24,812 DEBUG ajax4jsf.resource.InternetResourceBuilder -> Return instance of internet resource builder org.ajax4jsf.resource.ResourceBuilderImpl@1546dbc
2009-06-02 11:12:24,812 DEBUG ajax4jsf.javascript.AjaxScript -> AjaxScript() - Created instance of AjaxScript resource
2009-06-02 11:12:24,828 DEBUG ajax4jsf.resource.InternetResourceBuilder -> Return instance of internet resource builder org.ajax4jsf.resource.ResourceBuilderImpl@1546dbc
2009-06-02 11:12:24,828 DEBUG ajax4jsf.resource.InternetResourceBuilder -> Return instance of internet resource builder org.ajax4jsf.resource.ResourceBuilderImpl@1546dbc
2009-06-02 11:12:24,828 DEBUG ajax4jsf.resource.InternetResourceBuilder -> Return instance of internet resource builder org.ajax4jsf.resource.ResourceBuilderImpl@1546dbc
2009-06-02 11:12:24,828 DEBUG ajax4jsf.javascript.AjaxScript -> AjaxScript() - Created instance of AjaxScript resource
2009-06-02 11:12:24,843 DEBUG ajax4jsf.resource.InternetResourceBuilder -> Return instance of internet resource builder org.ajax4jsf.resource.ResourceBuilderImpl@1546dbc
2009-06-02 11:12:24,843 DEBUG ajax4jsf.resource.InternetResourceBuilder -> Return instance of internet resource builder org.ajax4jsf.resource.ResourceBuilderImpl@1546dbc
2009-06-02 11:12:24,843 DEBUG ajax4jsf.resource.InternetResourceBuilder -> Return instance of internet resource builder org.ajax4jsf.resource.ResourceBuilderImpl@1546dbc
2009-06-02 11:12:24,843 DEBUG ajax4jsf.javascript.AjaxScript -> AjaxScript() - Created instance of AjaxScript resource
2009-06-02 11:12:24,843 DEBUG ajax4jsf.resource.InternetResourceBuilder -> Return instance of internet resource builder org.ajax4jsf.resource.ResourceBuilderImpl@1546dbc
2009-06-02 11:12:24,859 DEBUG ajax4jsf.resource.InternetResourceBuilder -> Return instance of internet resource builder org.ajax4jsf.resource.ResourceBuilderImpl@1546dbc
2009-06-02 11:12:24,859 DEBUG ajax4jsf.resource.InternetResourceBuilder -> Return instance of internet resource builder org.ajax4jsf.resource.ResourceBuilderImpl@1546dbc
2009-06-02 11:12:24,859 DEBUG ajax4jsf.javascript.AjaxScript -> AjaxScript() - Created instance of AjaxScript resource
2009-06-02 11:12:24,859 DEBUG ajax4jsf.resource.InternetResourceBuilder -> Return instance of internet resource builder org.ajax4jsf.resource.ResourceBuilderImpl@1546dbc
2009-06-02 11:12:24,859 DEBUG ajax4jsf.resource.InternetResourceBuilder -> Return instance of internet resource builder org.ajax4jsf.resource.ResourceBuilderImpl@1546dbc
2009-06-02 11:12:24,859 DEBUG ajax4jsf.resource.InternetResourceBuilder -> Return instance of internet resource builder org.ajax4jsf.resource.ResourceBuilderImpl@1546dbc
2009-06-02 11:12:24,859 DEBUG ajax4jsf.resource.InternetResourceBuilder -> Return instance of internet resource builder org.ajax4jsf.resource.ResourceBuilderImpl@1546dbc
2009-06-02 11:12:24,875 DEBUG ajax4jsf.javascript.AjaxScript -> AjaxScript() - Created instance of AjaxScript resource
2009-06-02 11:12:24,890 DEBUG ajax4jsf.resource.InternetResourceBuilder -> Return instance of internet resource builder org.ajax4jsf.resource.ResourceBuilderImpl@1546dbc
2009-06-02 11:12:24,890 DEBUG ajax4jsf.resource.InternetResourceBuilder -> Return instance of internet resource builder org.ajax4jsf.resource.ResourceBuilderImpl@1546dbc
2009-06-02 11:12:24,890 DEBUG ajax4jsf.resource.InternetResourceBuilder -> Return instance of internet resource builder org.ajax4jsf.resource.ResourceBuilderImpl@1546dbc
2009-06-02 11:12:24,890 DEBUG ajax4jsf.javascript.AjaxScript -> AjaxScript() - Created instance of AjaxScript resource
2009-06-02 11:12:24,921 DEBUG ajax4jsf.resource.InternetResourceBuilder -> Return instance of internet resource builder org.ajax4jsf.resource.ResourceBuilderImpl@1546dbc
2009-06-02 11:12:24,921 DEBUG ajax4jsf.resource.InternetResourceBuilder -> Return instance of internet resource builder org.ajax4jsf.resource.ResourceBuilderImpl@1546dbc
2009-06-02 11:12:24,921 DEBUG ajax4jsf.javascript.AjaxScript -> AjaxScript() - Created instance of AjaxScript resource
2009-06-02 11:12:24,921 DEBUG ajax4jsf.resource.InternetResourceBuilder -> Return instance of internet resource builder org.ajax4jsf.resource.ResourceBuilderImpl@1546dbc
2009-06-02 11:12:24,937 DEBUG ajax4jsf.resource.InternetResourceBuilder -> Return instance of internet resource builder org.ajax4jsf.resource.ResourceBuilderImpl@1546dbc
2009-06-02 11:12:24,937 DEBUG ajax4jsf.resource.ResourceBuilderImpl -> build new resource for path /org/richfaces/renderkit/html/css/msg.css
2009-06-02 11:12:24,937 DEBUG ajax4jsf.resource.ResourceBuilderImpl -> build new resource for path /org/richfaces/renderkit/html/css/msgs.css
2009-06-02 11:12:24,953 DEBUG ajax4jsf.resource.InternetResourceBuilder -> Return instance of internet resource builder org.ajax4jsf.resource.ResourceBuilderImpl@1546dbc
2009-06-02 11:12:25,015 DEBUG ajax4jsf.resource.InternetResourceBuilder -> Return instance of internet resource builder org.ajax4jsf.resource.ResourceBuilderImpl@1546dbc
2009-06-02 11:12:25,015 DEBUG ajax4jsf.resource.InternetResourceBuilder -> Return instance of internet resource builder org.ajax4jsf.resource.ResourceBuilderImpl@1546dbc
2009-06-02 11:12:25,015 DEBUG ajax4jsf.resource.InternetResourceBuilder -> Return instance of internet resource builder org.ajax4jsf.resource.ResourceBuilderImpl@1546dbc
2009-06-02 11:12:25,015 DEBUG ajax4jsf.javascript.AjaxScript -> AjaxScript() - Created instance of AjaxScript resource
2009-06-02 11:12:25,031 DEBUG ajax4jsf.resource.InternetResourceBuilder -> Return instance of internet resource builder org.ajax4jsf.resource.ResourceBuilderImpl@1546dbc
2009-06-02 11:12:25,031 DEBUG ajax4jsf.resource.InternetResourceBuilder -> Return instance of internet resource builder org.ajax4jsf.resource.ResourceBuilderImpl@1546dbc
2009-06-02 11:12:25,031 DEBUG ajax4jsf.resource.InternetResourceBuilder -> Return instance of internet resource builder org.ajax4jsf.resource.ResourceBuilderImpl@1546dbc
2009-06-02 11:12:25,031 DEBUG ajax4jsf.javascript.AjaxScript -> AjaxScript() - Created instance of AjaxScript resource
2009-06-02 11:12:25,031 DEBUG ajax4jsf.resource.InternetResourceBuilder -> Return instance of internet resource builder org.ajax4jsf.resource.ResourceBuilderImpl@1546dbc
2009-06-02 11:12:25,078 DEBUG ajax4jsf.resource.InternetResourceBuilder -> Return instance of internet resource builder org.ajax4jsf.resource.ResourceBuilderImpl@1546dbc
2009-06-02 11:12:25,078 DEBUG ajax4jsf.resource.InternetResourceBuilder -> Return instance of internet resource builder org.ajax4jsf.resource.ResourceBuilderImpl@1546dbc
2009-06-02 11:12:25,109 DEBUG ajax4jsf.resource.InternetResourceBuilder -> Return instance of internet resource builder org.ajax4jsf.resource.ResourceBuilderImpl@1546dbc
2009-06-02 11:12:25,109 DEBUG ajax4jsf.resource.InternetResourceBuilder -> Return instance of internet resource builder org.ajax4jsf.resource.ResourceBuilderImpl@1546dbc
2009-06-02 11:12:25,109 DEBUG ajax4jsf.resource.InternetResourceBuilder -> Return instance of internet resource builder org.ajax4jsf.resource.ResourceBuilderImpl@1546dbc
2009-06-02 11:12:25,109 DEBUG ajax4jsf.resource.InternetResourceBuilder -> Return instance of internet resource builder org.ajax4jsf.resource.ResourceBuilderImpl@1546dbc
2009-06-02 11:12:25,109 DEBUG ajax4jsf.javascript.AjaxScript -> AjaxScript() - Created instance of AjaxScript resource
2009-06-02 11:12:25,109 DEBUG ajax4jsf.resource.InternetResourceBuilder -> Return instance of internet resource builder org.ajax4jsf.resource.ResourceBuilderImpl@1546dbc
2009-06-02 11:12:25,109 DEBUG ajax4jsf.resource.InternetResourceBuilder -> Return instance of internet resource builder org.ajax4jsf.resource.ResourceBuilderImpl@1546dbc
2009-06-02 11:12:25,109 DEBUG ajax4jsf.resource.InternetResourceBuilder -> Return instance of internet resource builder org.ajax4jsf.resource.ResourceBuilderImpl@1546dbc
2009-06-02 11:12:25,109 DEBUG ajax4jsf.resource.InternetResourceBuilder -> Return instance of internet resource builder org.ajax4jsf.resource.ResourceBuilderImpl@1546dbc
2009-06-02 11:12:25,109 DEBUG ajax4jsf.javascript.AjaxScript -> AjaxScript() - Created instance of AjaxScript resource
2009-06-02 11:12:25,125 DEBUG ajax4jsf.resource.InternetResourceBuilder -> Return instance of internet resource builder org.ajax4jsf.resource.ResourceBuilderImpl@1546dbc
2009-06-02 11:12:25,125 DEBUG ajax4jsf.resource.InternetResourceBuilder -> Return instance of internet resource builder org.ajax4jsf.resource.ResourceBuilderImpl@1546dbc
2009-06-02 11:12:25,156 DEBUG ajax4jsf.resource.InternetResourceBuilder -> Return instance of internet resource builder org.ajax4jsf.resource.ResourceBuilderImpl@1546dbc
2009-06-02 11:12:25,156 DEBUG ajax4jsf.resource.InternetResourceBuilder -> Return instance of internet resource builder org.ajax4jsf.resource.ResourceBuilderImpl@1546dbc
2009-06-02 11:12:25,171 DEBUG ajax4jsf.resource.InternetResourceBuilder -> Return instance of internet resource builder org.ajax4jsf.resource.ResourceBuilderImpl@1546dbc
2009-06-02 11:12:25,171 DEBUG ajax4jsf.resource.InternetResourceBuilder -> Return instance of internet resource builder org.ajax4jsf.resource.ResourceBuilderImpl@1546dbc
2009-06-02 11:12:25,171 DEBUG ajax4jsf.resource.InternetResourceBuilder -> Return instance of internet resource builder org.ajax4jsf.resource.ResourceBuilderImpl@1546dbc
2009-06-02 11:12:25,171 DEBUG ajax4jsf.javascript.AjaxScript -> AjaxScript() - Created instance of AjaxScript resource
2009-06-02 11:12:25,187 DEBUG ajax4jsf.resource.InternetResourceBuilder -> Return instance of internet resource builder org.ajax4jsf.resource.ResourceBuilderImpl@1546dbc
2009-06-02 11:12:25,187 DEBUG ajax4jsf.resource.InternetResourceBuilder -> Return instance of internet resource builder org.ajax4jsf.resource.ResourceBuilderImpl@1546dbc
2009-06-02 11:12:25,187 DEBUG ajax4jsf.resource.InternetResourceBuilder -> Return instance of internet resource builder org.ajax4jsf.resource.ResourceBuilderImpl@1546dbc
2009-06-02 11:12:25,187 DEBUG ajax4jsf.jav02/06/2009 11:12:25 org.apache.coyote.http11.Http11Protocol start
INFO: Starting Coyote HTTP/1.1 on http-8080
ascript.AjaxScript -> AjaxScript() - Created instance of AjaxScript resource
2009-06-02 11:12:25,203 DEBUG ajax4jsf.resource.InternetResourceBuilder -> Return instance of internet resource builder org.ajax4jsf.resource.ResourceBuilderImpl@1546dbc
2009-06-02 11:12:25,203 DEBUG ajax4jsf.resource.InternetResourceBuilder -> Return instance of internet resource builder org.ajax4jsf.resource.ResourceBuilderImpl@1546dbc
2009-06-02 11:12:25,203 DEBUG ajax4jsf.resource.InternetResourceBuilder -> Return instance of internet resource builder org.ajax4jsf.resource.ResourceBuilderImpl@1546dbc
2009-06-02 11:12:25,203 DEBUG ajax4jsf.resource.InternetResourceBuilder -> Return instance of internet resource builder org.ajax4jsf.resource.ResourceBuilderImpl@1546dbc
2009-06-02 11:12:25,218 DEBUG ajax4jsf.resource.InternetResourceBuilder -> Return instance of internet resource builder org.ajax4jsf.resource.ResourceBuilderImpl@1546dbc
2009-06-02 11:12:25,281 DEBUG ajax4jsf.resource.InternetResourceBuilder -> Return instance of internet resource builder org.ajax4jsf.resource.ResourceBuilderImpl@1546dbc
2009-06-02 11:12:25,281 DEBUG ajax4jsf.resource.InternetResourceBuilder -> Return instance of internet resource builder org.ajax4jsf.resource.ResourceBuilderImpl@1546dbc
2009-06-02 11:12:25,281 DEBUG ajax4jsf.javascript.AjaxScript -> AjaxScript() - Created instance of AjaxScript resource
2009-06-02 11:12:25,281 DEBUG ajax4jsf.resource.InternetResourceBuilder -> Return instance of internet resource builder org.ajax4jsf.resource.ResourceBuilderImpl@1546dbc
2009-06-02 11:12:25,281 DEBUG ajax4jsf.resource.InternetResourceBuilder -> Return instance of internet resource builder org.ajax4jsf.resource.ResourceBuilderImpl@1546dbc
02/06/2009 11:12:25 org.apache.jk.common.ChannelSocket init
INFO: JK: ajp13 listening on /0.0.0.0:8009
02/06/2009 11:12:25 org.apache.jk.server.JkMain start
INFO: Jk running ID=0 time=0/78 config=null
02/06/2009 11:12:25 org.apache.catalina.startup.Catalina start
INFO: Server startup in 11120 ms
2009-06-02 11:12:26,343 DEBUG ajax4jsf.event.AjaxPhaseListener -> Process before phase RESTORE_VIEW 1
2009-06-02 11:12:26,343 DEBUG ajax4jsf.event.InitPhaseListener -> Perform additional framework initialization on first request
2009-06-02 11:12:26,343 DEBUG ajax4jsf.event.InitPhaseListener -> Set AjaxViewHandler on top of chain
2009-06-02 11:12:26,359 DEBUG ajax4jsf.application.AjaxViewHandler -> Create instance of Ajax ViewHandler
2009-06-02 11:12:26,468 DEBUG ajax4jsf.event.InitPhaseListener -> Remove init phase listener from factories
2009-06-02 11:12:26,468 DEBUG ajax4jsf.event.AjaxPhaseListener -> Process after phase RESTORE_VIEW 1
2009-06-02 11:12:26,468 DEBUG ajax4jsf.event.AjaxPhaseListener -> Process before phase RENDER_RESPONSE 6
2009-06-02 11:12:26,468 DEBUG ajax4jsf.event.AjaxPhaseListener -> PhaseListener enter Before RenderView Phase with ViewId /index.jsp and RenderKitId HTML_BASIC
2009-06-02 11:12:26,484 DEBUG richfaces.skin.SkinFactoryImpl -> Create new Skin instance for name DEFAULT
2009-06-02 11:12:27,281 DEBUG ajax4jsf.renderkit.RendererBase -> Start encoding of component j_id_jsp_48643365_0 with class org.ajax4jsf.component.AjaxViewRoot
2009-06-02 11:12:27,437 DEBUG ajax4jsf.renderkit.RendererBase -> Finish encoding of component j_id_jsp_48643365_0 with class org.ajax4jsf.component.AjaxViewRoot
2009-06-02 11:12:27,437 DEBUG ajax4jsf.renderkit.RendererBase -> Finish encoding of component j_id_jsp_48643365_0 with class org.ajax4jsf.component.AjaxViewRoot
2009-06-02 11:12:27,453 DEBUG ajax4jsf.component.AjaxRegionBrige -> Save State of UIAjaxComponent with Id j_id_jsp_48643365_0
2009-06-02 11:12:27,500 DEBUG ajax4jsf.application.AjaxStateManager -> Write view state to the response
2009-06-02 11:12:27,500 DEBUG ajax4jsf.event.AjaxPhaseListener -> Process after phase RENDER_RESPONSE 6
2009-06-02 11:12:35,078 DEBUG ajax4jsf.event.AjaxPhaseListener -> Process before phase RESTORE_VIEW 1
2009-06-02 11:12:35,109 DEBUG ajax4jsf.component.AjaxRegionBrige -> Restore State of UIAjaxComponent with Id j_id_jsp_48643365_0
2009-06-02 11:12:35,125 DEBUG ajax4jsf.event.AjaxPhaseListener -> Process after phase RESTORE_VIEW 1
2009-06-02 11:12:35,125 DEBUG ajax4jsf.event.AjaxPhaseListener -> Process before phase APPLY_REQUEST_VALUES 2
2009-06-02 11:12:35,125 DEBUG ajax4jsf.renderkit.RendererBase -> Start decoding of component j_id_jsp_48643365_0 with class org.ajax4jsf.component.AjaxViewRoot
2009-06-02 11:12:35,125 DEBUG ajax4jsf.renderkit.AjaxContainerRenderer -> Decode ajax request status for j_id_jsp_48643365_0
2009-06-02 11:12:35,125 DEBUG ajax4jsf.event.AjaxPhaseListener -> Process after phase APPLY_REQUEST_VALUES 2
2009-06-02 11:12:35,125 DEBUG ajax4jsf.event.AjaxPhaseListener -> Process before phase PROCESS_VALIDATIONS 3
2009-06-02 11:12:35,125 DEBUG ajax4jsf.event.AjaxPhaseListener -> Process after phase PROCESS_VALIDATIONS 3
2009-06-02 11:12:35,125 DEBUG ajax4jsf.event.AjaxPhaseListener -> Process before phase UPDATE_MODEL_VALUES 4
2009-06-02 11:12:35,125 DEBUG ajax4jsf.event.AjaxPhaseListener -> Process after phase UPDATE_MODEL_VALUES 4
2009-06-02 11:12:35,125 DEBUG ajax4jsf.event.AjaxPhaseListener -> Process before phase INVOKE_APPLICATION 5
2009-06-02 11:12:35,125 DEBUG ajax4jsf.event.AjaxPhaseListener -> Process after phase INVOKE_APPLICATION 5
2009-06-02 11:12:35,125 DEBUG ajax4jsf.event.AjaxPhaseListener -> Process before phase RENDER_RESPONSE 6
2009-06-02 11:12:35,125 DEBUG ajax4jsf.event.AjaxPhaseListener -> PhaseListener enter Before RenderView Phase with ViewId /pages/cadastrocliente.jsp and RenderKitId HTML_BASIC
2009-06-02 11:12:38,515 DEBUG ajax4jsf.renderkit.RendererBase -> Start encoding of component j_id_jsp_807762510_0 with class org.ajax4jsf.component.AjaxViewRoot
2009-06-02 11:12:38,609 DEBUG ajax4jsf.renderkit.RendererBase -> Finish encoding of component j_id_jsp_807762510_0 with class org.ajax4jsf.component.AjaxViewRoot
2009-06-02 11:12:38,609 DEBUG ajax4jsf.renderkit.RendererBase -> Finish encoding of component j_id_jsp_807762510_0 with class org.ajax4jsf.component.AjaxViewRoot
2009-06-02 11:12:38,609 DEBUG ajax4jsf.component.AjaxRegionBrige -> Save State of UIAjaxComponent with Id j_id_jsp_807762510_0
2009-06-02 11:12:38,625 DEBUG ajax4jsf.application.AjaxStateManager -> Write view state to the response
2009-06-02 11:12:38,640 DEBUG ajax4jsf.event.AjaxPhaseListener -> Process after phase RENDER_RESPONSE 6
2009-06-02 11:12:43,015 DEBUG ajax4jsf.event.AjaxPhaseListener -> Process before phase RESTORE_VIEW 1
2009-06-02 11:12:43,031 DEBUG ajax4jsf.component.AjaxRegionBrige -> Restore State of UIAjaxComponent with Id j_id_jsp_807762510_0
2009-06-02 11:12:43,031 DEBUG ajax4jsf.event.AjaxPhaseListener -> Process after phase RESTORE_VIEW 1
2009-06-02 11:12:43,031 DEBUG ajax4jsf.event.AjaxPhaseListener -> Process before phase APPLY_REQUEST_VALUES 2
2009-06-02 11:12:43,031 DEBUG ajax4jsf.renderkit.RendererBase -> Start decoding of component j_id_jsp_807762510_0 with class org.ajax4jsf.component.AjaxViewRoot
2009-06-02 11:12:43,046 DEBUG ajax4jsf.renderkit.AjaxContainerRenderer -> Decode ajax request status for j_id_jsp_807762510_0
2009-06-02 11:12:43,046 DEBUG ajax4jsf.event.AjaxPhaseListener -> Process after phase APPLY_REQUEST_VALUES 2
2009-06-02 11:12:43,046 DEBUG ajax4jsf.event.AjaxPhaseListener -> Process before phase PROCESS_VALIDATIONS 3
2009-06-02 11:12:43,062 DEBUG ajax4jsf.event.AjaxPhaseListener -> Process after phase PROCESS_VALIDATIONS 3
2009-06-02 11:12:43,062 DEBUG ajax4jsf.event.AjaxPhaseListener -> Process before phase UPDATE_MODEL_VALUES 4
2009-06-02 11:12:43,062 DEBUG ajax4jsf.event.AjaxPhaseListener -> Process after phase UPDATE_MODEL_VALUES 4
2009-06-02 11:12:43,062 DEBUG ajax4jsf.event.AjaxPhaseListener -> Process before phase INVOKE_APPLICATION 5
2009-06-02 11:12:43,359 INFO cfg.annotations.Version -> Hibernate Annotations 3.4.0.CR1
2009-06-02 11:12:43,468 INFO hibernate.cfg.Environment -> Hibernate 3.3.0.CR1
2009-06-02 11:12:43,484 INFO hibernate.cfg.Environment -> hibernate.properties not found
2009-06-02 11:12:43,500 INFO hibernate.cfg.Environment -> Bytecode provider name : cglib
2009-06-02 11:12:43,562 INFO hibernate.cfg.Environment -> using JDK 1.4 java.sql.Timestamp handling
2009-06-02 11:12:43,890 INFO annotations.common.Version -> Hibernate Commons Annotations 3.1.0.CR1
2009-06-02 11:12:43,890 INFO hibernate.cfg.Configuration -> configuring from resource: /hibernate.cfg.xml
2009-06-02 11:12:43,890 INFO hibernate.cfg.Configuration -> Configuration resource: /hibernate.cfg.xml
2009-06-02 11:12:44,359 DEBUG hibernate.util.DTDEntityResolver -> trying to resolve system-id [http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd]
2009-06-02 11:12:44,359 DEBUG hibernate.util.DTDEntityResolver -> recognized hibernate namespace; attempting to resolve on classpath under org/hibernate/
2009-06-02 11:12:44,359 DEBUG hibernate.util.DTDEntityResolver -> located [http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd] in classpath
2009-06-02 11:12:44,578 DEBUG hibernate.cfg.Configuration -> hibernate.hbm2ddl.auto=none
2009-06-02 11:12:44,578 DEBUG hibernate.cfg.Configuration -> hibernate.format_sql=true
2009-06-02 11:12:44,578 DEBUG hibernate.cfg.Configuration -> connection.driver_class=org.postgresql.Driver
2009-06-02 11:12:44,578 DEBUG hibernate.cfg.Configuration -> connection.url=jdbc:postgresql://localhost/Shift
2009-06-02 11:12:44,578 DEBUG hibernate.cfg.Configuration -> connection.username=postgres
2009-06-02 11:12:44,578 DEBUG hibernate.cfg.Configuration -> connection.password=postgres
2009-06-02 11:12:44,578 DEBUG hibernate.cfg.Configuration -> connection.pool_size=1
2009-06-02 11:12:44,578 DEBUG hibernate.cfg.Configuration -> dialect=org.hibernate.dialect.PostgreSQLDialect
2009-06-02 11:12:44,578 DEBUG hibernate.cfg.Configuration -> current_session_context_class=thread
2009-06-02 11:12:44,578 DEBUG hibernate.cfg.Configuration -> cache.provider_class=org.hibernate.cache.NoCacheProvider
2009-06-02 11:12:44,578 DEBUG hibernate.cfg.Configuration -> show_sql=true
2009-06-02 11:12:44,578 DEBUG hibernate.cfg.AnnotationConfiguration -> null <- org.dom4j.tree.DefaultAttribute@1f327e [Attribute: name class value "br.com.shift.persistencia.Cliente"]
02/06/2009 11:12:44 com.sun.faces.application.ActionListenerImpl processAction
SEVERE: java.lang.ExceptionInInitializerError
javax.faces.el.EvaluationException: java.lang.ExceptionInInitializerError
at javax.faces.component.MethodBindingMethodExpressionAdapter.invoke(MethodBindingMethodExpressionAdapter.java:102)
at com.sun.faces.application.ActionListenerImpl.processAction(ActionListenerImpl.java:102)
at javax.faces.component.UICommand.broadcast(UICommand.java:387)
at org.ajax4jsf.component.AjaxViewRoot.processEvents(AjaxViewRoot.java:321)
at org.ajax4jsf.component.AjaxViewRoot.broadcastEvents(AjaxViewRoot.java:296)
at org.ajax4jsf.component.AjaxViewRoot.processPhase(AjaxViewRoot.java:253)
at org.ajax4jsf.component.AjaxViewRoot.processApplication(AjaxViewRoot.java:466)
at com.sun.faces.lifecycle.InvokeApplicationPhase.execute(InvokeApplicationPhase.java:82)
at com.sun.faces.lifecycle.Phase.doPhase(Phase.java:100)
at com.sun.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:118)
at javax.faces.webapp.FacesServlet.service(FacesServlet.java:265)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233)
at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:128)
at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:286)
at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:845)
at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:583)
at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:447)
at java.lang.Thread.run(Thread.java:619)
Caused by: java.lang.ExceptionInInitializerError
at br.org.shift.managerbean.ManagerBeanCliente.addCliente(ManagerBeanCliente.java:19)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:597)
at org.apache.el.parser.AstValue.invoke(AstValue.java:172)
at org.apache.el.MethodExpressionImpl.invoke(MethodExpressionImpl.java:276)
at org.apache.jasper.el.JspMethodExpression.invoke(JspMethodExpression.java:68)
at javax.faces.component.MethodBindingMethodExpressionAdapter.invoke(MethodBindingMethodExpressionAdapter.java:88)
... 22 more
Caused by: org.hibernate.MappingException: Unable to load class declared as <mapping class="br.com.shift.persistencia.Cliente"/> in the configuration:
at org.hibernate.cfg.AnnotationConfiguration.parseMappingElement(AnnotationConfiguration.java:633)
at org.hibernate.cfg.Configuration.parseSessionFactory(Configuration.java:1566)
at org.hibernate.cfg.Configuration.doConfigure(Configuration.java:1545)
at org.hibernate.cfg.AnnotationConfiguration.doConfigure(AnnotationConfiguration.java:997)
at org.hibernate.cfg.AnnotationConfiguration.doConfigure(AnnotationConfiguration.java:64)
at org.hibernate.cfg.Configuration.doConfigure(Configuration.java:1519)
at org.hibernate.cfg.AnnotationConfiguration.doConfigure(AnnotationConfiguration.java:985)
at org.hibernate.cfg.AnnotationConfiguration.doConfigure(AnnotationConfiguration.java:64)
at org.hibernate.cfg.Configuration.configure(Configuration.java:1439)
at org.hibernate.cfg.AnnotationConfiguration.configure(AnnotationConfiguration.java:967)
at org.hibernate.cfg.AnnotationConfiguration.configure(AnnotationConfiguration.java:64)
at org.hibernate.cfg.Configuration.configure(Configuration.java:1425)
at org.hibernate.cfg.AnnotationConfiguration.configure(AnnotationConfiguration.java:961)
at br.org.shift.hibernate.HibernateUtil.<clinit>(HibernateUtil.java:25)
... 31 more
Caused by: java.lang.ClassNotFoundException: br.com.shift.persistencia.Cliente
at org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1387)
at org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1233)
at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:320)
at java.lang.Class.forName0(Native Method)
at java.lang.Class.forName(Class.java:169)
at org.hibernate.util.ReflectHelper.classForName(ReflectHelper.java:100)
at org.hibernate.cfg.AnnotationConfiguration.parseMappingElement(AnnotationConfiguration.java:630)
... 44 more
02/06/2009 11:12:44 com.sun.faces.lifecycle.InvokeApplicationPhase execute
WARNING: #{managerBeanCliente.addCliente}: java.lang.ExceptionInInitializerError
javax.faces.FacesException: #{managerBeanCliente.addCliente}: java.lang.ExceptionInInitializerError
at com.sun.faces.application.ActionListenerImpl.processAction(ActionListenerImpl.java:118)
at javax.faces.component.UICommand.broadcast(UICommand.java:387)
at org.ajax4jsf.component.AjaxViewRoot.processEvents(AjaxViewRoot.java:321)
at org.ajax4jsf.component.AjaxViewRoot.broadcastEvents(AjaxViewRoot.java:296)
at org.ajax4jsf.component.AjaxViewRoot.processPhase(AjaxViewRoot.java:253)
at org.ajax4jsf.component.AjaxViewRoot.processApplication(AjaxViewRoot.java:466)
at com.sun.faces.lifecycle.InvokeApplicationPhase.execute(InvokeApplicationPhase.java:82)
at com.sun.faces.lifecycle.Phase.doPhase(Phase.java:100)
at com.sun.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:118)
at javax.faces.webapp.FacesServlet.service(FacesServlet.java:265)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233)
at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:128)
at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:286)
at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:845)
at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:583)
at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:447)
at java.lang.Thread.run(Thread.java:619)
Caused by: javax.faces.el.EvaluationException: java.lang.ExceptionInInitializerError
at javax.faces.component.MethodBindingMethodExpressionAdapter.invoke(MethodBindingMethodExpressionAdapter.java:102)
at com.sun.faces.application.ActionListenerImpl.processAction(ActionListenerImpl.java:102)
... 21 more
Caused by: java.lang.ExceptionInInitializerError
at br.org.shift.managerbean.ManagerBeanCliente.addCliente(ManagerBeanCliente.java:19)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:597)
at org.apache.el.parser.AstValue.invoke(AstValue.java:172)
at org.apache.el.MethodExpressionImpl.invoke(MethodExpressionImpl.java:276)
at org.apache.jasper.el.JspMethodExpression.invoke(JspMethodExpression.java:68)
at javax.faces.component.MethodBindingMethodExpressionAdapter.invoke(MethodBindingMethodExpressionAdapter.java:88)
... 22 more
Caused by: org.hibernate.MappingException: Unable to load class declared as <mapping class="br.com.shift.persistencia.Cliente"/> in the configuration:
at org.hibernate.cfg.AnnotationConfiguration.parseMappingElement(AnnotationConfiguration.java:633)
at org.hibernate.cfg.Configuration.parseSessionFactory(Configuration.java:1566)
at org.hibernate.cfg.Configuration.doConfigure(Configuration.java:1545)
at org.hibernate.cfg.AnnotationConfiguration.doConfigure(AnnotationConfiguration.java:997)
at org.hibernate.cfg.AnnotationConfiguration.doConfigure(AnnotationConfiguration.java:64)
at org.hibernate.cfg.Configuration.doConfigure(Configuration.java:1519)
at org.hibernate.cfg.AnnotationConfiguration.doConfigure(AnnotationConfiguration.java:985)
at org.hibernate.cfg.AnnotationConfiguration.doConfigure(AnnotationConfiguration.java:64)
at org.hibernate.cfg.Configuration.configure(Configuration.java:1439)
at org.hibernate.cfg.AnnotationConfiguration.configure(AnnotationConfiguration.java:967)
at org.hibernate.cfg.AnnotationConfiguration.configure(AnnotationConfiguration.java:64)
at org.hibernate.cfg.Configuration.configure(Configuration.java:1425)
at org.hibernate.cfg.AnnotationConfiguration.configure(AnnotationConfiguration.java:961)
at br.org.shift.hibernate.HibernateUtil.<clinit>(HibernateUtil.java:25)
... 31 more
Caused by: java.lang.ClassNotFoundException: br.com.shift.persistencia.Cliente
at org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1387)
at org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1233)
at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:320)
at java.lang.Class.forName0(Native Method)
at java.lang.Class.forName(Class.java:169)
at org.hibernate.util.ReflectHelper.classForName(ReflectHelper.java:100)
at org.hibernate.cfg.AnnotationConfiguration.parseMappingElement(AnnotationConfiguration.java:630)
... 44 more
02/06/2009 11:12:44 com.sun.faces.lifecycle.Phase doPhase
SEVERE: JSF1054: (Phase ID: INVOKE_APPLICATION 5, View ID: /pages/cadastrocliente.jsp) Exception thrown during phase execution: javax.faces.event.PhaseEvent[source=com.sun.faces.lifecycle.LifecycleImpl@170119f]
2009-06-02 11:12:44,656 DEBUG ajax4jsf.event.AjaxPhaseListener -> Process after phase INVOKE_APPLICATION 5
02/06/2009 11:12:44 org.apache.catalina.core.StandardWrapperValve invoke
SEVERE: Servlet.service() for servlet Faces Servlet threw exception
java.lang.ClassNotFoundException: br.com.shift.persistencia.Cliente
at org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1387)
at org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1233)
at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:320)
at java.lang.Class.forName0(Native Method)
at java.lang.Class.forName(Class.java:169)
at org.hibernate.util.ReflectHelper.classForName(ReflectHelper.java:100)
at org.hibernate.cfg.AnnotationConfiguration.parseMappingElement(AnnotationConfiguration.java:630)
at org.hibernate.cfg.Configuration.parseSessionFactory(Configuration.java:1566)
at org.hibernate.cfg.Configuration.doConfigure(Configuration.java:1545)
at org.hibernate.cfg.AnnotationConfiguration.doConfigure(AnnotationConfiguration.java:997)
at org.hibernate.cfg.AnnotationConfiguration.doConfigure(AnnotationConfiguration.java:64)
at org.hibernate.cfg.Configuration.doConfigure(Configuration.java:1519)
at org.hibernate.cfg.AnnotationConfiguration.doConfigure(AnnotationConfiguration.java:985)
at org.hibernate.cfg.AnnotationConfiguration.doConfigure(AnnotationConfiguration.java:64)
at org.hibernate.cfg.Configuration.configure(Configuration.java:1439)
at org.hibernate.cfg.AnnotationConfiguration.configure(AnnotationConfiguration.java:967)
at org.hibernate.cfg.AnnotationConfiguration.configure(AnnotationConfiguration.java:64)
at org.hibernate.cfg.Configuration.configure(Configuration.java:1425)
at org.hibernate.cfg.AnnotationConfiguration.configure(AnnotationConfiguration.java:961)
at br.org.shift.hibernate.HibernateUtil.<clinit>(HibernateUtil.java:25)
at br.org.shift.managerbean.ManagerBeanCliente.addCliente(ManagerBeanCliente.java:19)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:597)
at org.apache.el.parser.AstValue.invoke(AstValue.java:172)
at org.apache.el.MethodExpressionImpl.invoke(MethodExpressionImpl.java:276)
at org.apache.jasper.el.JspMethodExpression.invoke(JspMethodExpression.java:68)
at javax.faces.component.MethodBindingMethodExpressionAdapter.invoke(MethodBindingMethodExpressionAdapter.java:88)
at com.sun.faces.application.ActionListenerImpl.processAction(ActionListenerImpl.java:102)
at javax.faces.component.UICommand.broadcast(UICommand.java:387)
at org.ajax4jsf.component.AjaxViewRoot.processEvents(AjaxViewRoot.java:321)
at org.ajax4jsf.component.AjaxViewRoot.broadcastEvents(AjaxViewRoot.java:296)
at org.ajax4jsf.component.AjaxViewRoot.processPhase(AjaxViewRoot.java:253)
at org.ajax4jsf.component.AjaxViewRoot.processApplication(AjaxViewRoot.java:466)
at com.sun.faces.lifecycle.InvokeApplicationPhase.execute(InvokeApplicationPhase.java:82)
at com.sun.faces.lifecycle.Phase.doPhase(Phase.java:100)
at com.sun.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:118)
at javax.faces.webapp.FacesServlet.service(FacesServlet.java:265)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233)
at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:128)
at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:286)
at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:845)
at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:583)
at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:447)
at java.lang.Thread.run(Thread.java:619)
Cristian Mietlicki
02/06/2009
Cristian Mietlicki
02/06/2009
Dyego Carmo
02/06/2009
dyego.leal@gmail.com
Cristian Mietlicki
02/06/2009
Dyego Carmo
02/06/2009
No seu HibernateUtil..
invez de criar diretamente lendo do .cfg.xml do hibernate... crie na classe a fabrica
retire o :
private static SessionFactory SESSION_FACTORY = new AnnotationConfiguration().configure().buildSessionFactory();
deixe apenas:
private static SessionFactory SESSION_FACTORY;
e no construtor da classe voce coloca o codigo assim:
sessionFactory = new AnnotationConfiguration()
.setProperty("hibernate.dialect", "org.hibernate.dialect.DerbyDialect")
.setProperty("hibernate.connection.driver_class", "org.apache.derby.jdbc.ClientDriver")
.setProperty("hibernate.connection.url", "jdbc:derby://localhost:1527/hibernateCompleteApp")
.setProperty("hibernate.connection.username", "hibernate")
.setProperty("hibernate.connection.password", "hibernate")
.setProperty("hibernate.hbm2ddl.auto", "none")
.setProperty("hibernate.show_sql", "true")
.setProperty("hibernate.format_sql", "true")
.setProperty("hibernate.c3p0.acquire_increment", "1")
.setProperty("hibernate.c3p0.idle_test_period", "100")
.setProperty("hibernate.c3p0.max_size", "10")
.setProperty("hibernate.c3p0.max_statements", "0")
.setProperty("hibernate.c3p0.min_size", "5")
.setProperty("hibernate.c3p0.timeout", "100")
.addAnnotatedClass(User.class)
.addAnnotatedClass(Product.class)
.addAnnotatedClass(Sale.class)
.buildSessionFactory();
Claro... substituindo as variaveis de acordo com o seu hibernate.cfg.xml...
no addAnnotatedClass voce coloca todas suas classes...
e configura o resto ali...
E teste.
Cristian Mietlicki
02/06/2009
Syntax error on token "sessionFactory", VariableDeclaratorId expected after this token HibernateUtil.java Shift/src/br/org/shift/hibernate line 47 Java Problem tá dando esse erro
package br.org.shift.hibernate;
import java.io.Serializable;
import java.util.List;
import org.hibernate.HibernateException;
import org.hibernate.Query;
import org.hibernate.SessionFactory;
import org.hibernate.Transaction;
import org.hibernate.classic.Session;
import br.org.shift.persistencia.Cliente;
/**
* Classe utilitaria do Hibernate
* @author Cristian
* @version 1.0
*/
public class HibernateUtil {
private static SessionFactory sessionFactory;
/**
*
*/
private static SessionFactory SESSION_FACTORY;
/**
*
*/
private static final ThreadLocal<Session> THREAD_SESSION = new ThreadLocal<Session>();
/**
*
*/
private static final ThreadLocal<Transaction> THREAD_TRANSACTION = new ThreadLocal<Transaction>();
/**
*
* @return
*/
protected SessionFactory getSESSION_FACTORY() {
return SESSION_FACTORY;
}
sessionFactory = new AnnotationConfiguration() é aqui o erro
.setProperty("hibernate.dialect", "org.hibernate.dialect.DerbyDialect")
.setProperty("hibernate.connection.driver_class", "org.apache.derby.jdbc.ClientDriver")
.setProperty("hibernate.connection.url", "jdbc:derby://localhost:1527/hibernateCompleteApp")
.setProperty("hibernate.connection.username", "hibernate")
.setProperty("hibernate.connection.password", "hibernate")
.setProperty("hibernate.hbm2ddl.auto", "none")
.setProperty("hibernate.show_sql", "true")
.setProperty("hibernate.format_sql", "true")
.setProperty("hibernate.c3p0.acquire_increment", "1")
.setProperty("hibernate.c3p0.idle_test_period", "100")
.setProperty("hibernate.c3p0.max_size", "10")
.setProperty("hibernate.c3p0.max_statements", "0")
.setProperty("hibernate.c3p0.min_size", "5")
.setProperty("hibernate.c3p0.timeout", "100")
.addAnnotatedClass(User.class)
.addAnnotatedClass(Product.class)
.addAnnotatedClass(Sale.class)
.buildSessionFactory();
/**
*
* @return
* @throws Exception
*/
@SuppressWarnings("unchecked")
protected static Session getSession() throws Exception {
Session s = (Session) THREAD_SESSION.get();
try {
if (s == null || !s.isOpen()) {
s = SESSION_FACTORY.openSession();
THREAD_SESSION.set(s);
}
} catch (HibernateException ex) {
throw new Exception(ex);
}
return s;
}
/**
*
* @throws Exception
*/
@SuppressWarnings("unchecked")
protected static void closeSession() throws Exception {
try {
Session s = (Session) THREAD_SESSION.get();
//Session s = (Session) getSESSION_FACTORY();
THREAD_SESSION.set(null);
if (s != null && s.isOpen())
s.close();
} catch (HibernateException ex) {
throw new Exception(ex);
}
}
/**
*
* @throws Exception
*/
@SuppressWarnings("unchecked")
protected static void beginTransaction() throws Exception {
Transaction tx = (Transaction) THREAD_TRANSACTION.get();
try {
if (tx == null) {
tx = getSession().beginTransaction();
THREAD_TRANSACTION.set(tx);
}
} catch (HibernateException ex) {
closeSession();
throw new Exception(ex);
}
}
/**
*
* @throws Exception
*/
@SuppressWarnings("unchecked")
protected static void commitTransaction() throws Exception {
Transaction tx = (Transaction) THREAD_TRANSACTION.get();
try {
if (tx != null && !tx.wasCommitted() && !tx.wasRolledBack())
tx.commit();
THREAD_TRANSACTION.set(null);
} catch (HibernateException ex) {
rollbackTransaction();
throw new Exception(ex);
}
}
/**
*
* @throws Exception
*/
@SuppressWarnings("unchecked")
protected static void rollbackTransaction() throws Exception {
Transaction tx = (Transaction) THREAD_TRANSACTION.get();
try {
THREAD_TRANSACTION.set(null);
if (tx != null && !tx.wasCommitted() && !tx.wasRolledBack())
tx.rollback();
} catch (HibernateException ex) {
throw new Exception(ex);
}
}
/**
*
* @param bean
* @throws Exception
*/
public static void save(Cliente bean) throws Exception {
try {
beginTransaction();
getSession().save(bean);
getSession().flush();
commitTransaction();
} catch (HibernateException e) {
rollbackTransaction();
//throw new Exception("Falha ao salvar o objeto: " + bean.toString() + "(" + e.getMessage() + ")",e.getCause());
e.printStackTrace();
}
}
/**
*
* @param bean
* @throws Exception
*/
public static void delete(Cliente bean) throws Exception {
try {
beginTransaction();
getSession().clear();
getSession().delete(bean);
getSession().flush();
commitTransaction();
} catch (HibernateException e) {
rollbackTransaction();
throw new Exception("Falha ao deletar o objeto: " + bean.toString() + "(" + e.getMessage() + ")",e.getCause());
}
}
/**
*
* @param bean
* @throws Exception
*/
public static void update(Cliente bean) throws Exception {
try {
beginTransaction();
getSession().clear();
getSession().update(bean);
getSession().flush();
commitTransaction();
} catch (HibernateException e) {
rollbackTransaction();
throw new Exception("Falha ao atualizar o objeto: " + bean.toString() + "(" + e.getMessage() + ")",e.getCause());
}
}
/**
*
* @param bean
* @throws Exception
*/
public static void saveOrUpdate(Cliente bean) throws Exception {
try {
beginTransaction();
getSession().clear();
getSession().saveOrUpdate(bean);
getSession().flush();
commitTransaction();
} catch (HibernateException e) {
rollbackTransaction();
throw new Exception("Falha ao atualizar o objeto: " + bean.toString() + "(" + e.getMessage() + ")",e.getCause());
}
}
/**
*
* @param query
* @return
* @throws Exception
*/
@SuppressWarnings("unchecked")
public static List find(String query) throws Exception {
try {
beginTransaction();
getSession().clear();
Query executeQuery = getSession().createQuery(query);
List ListaObjetos = executeQuery.list();
return ListaObjetos;
} catch(Exception e) {
if((e.getCause() != null) && (e.getCause().getMessage()!=null)) {
rollbackTransaction();
throw new Exception(e.getCause().getMessage());
}
rollbackTransaction();
throw new Exception(e);
}
}
/**
* Metodo responsavel por trazer um objeto da classe passada como parametro
* @param refClass
* @param key
* @return
* @throws Exception
*/
@SuppressWarnings("unchecked")
public static Object load(Class refClass,Serializable key) throws Exception {
getSession().clear();
return getSession().get(refClass, key);
}
/**
*
* @param query
* @param session
* @return
* @throws Exception
*/
@SuppressWarnings("unchecked")
public static List createNativeQueryList(String query, Session session) throws Exception {
List list = null;
try {
beginTransaction();
list = session.createSQLQuery(query).list();
commitTransaction();
return list;
} catch (Exception e) {
if ((e.getCause() != null) && (e.getCause().getMessage() != null))
throw new Exception(e.getCause().getMessage());
throw new Exception(e);
}
}
/**
*
* @param query
* @return
* @throws Exception
*/
@SuppressWarnings("unchecked")
public static List createNativeQueryList(String query) throws Exception {
try {
return createNativeQueryList(query, getSession());
} catch (Exception e) {
if ((e.getCause() != null) && (e.getCause().getMessage() != null))
throw new Exception(e.getCause().getMessage());
throw new Exception(e);
}
}
@SuppressWarnings("unchecked")
public static List find(Cliente bean) throws Exception {
try {
beginTransaction();
List listAll = getSession().createCriteria(bean.getClass()).list();
commitTransaction();
return listAll;
} catch(Exception e) {
if((e.getCause() != null) && (e.getCause().getMessage()!=null)) {
rollbackTransaction();
throw new Exception(e.getCause().getMessage());
}
rollbackTransaction();
throw new Exception(e);
}
}
}
Dyego Carmo
02/06/2009
Cristian Mietlicki
02/06/2009
Dyego Carmo
02/06/2009
troque seu metodo getSession por este:
protected static Session getSession() throws Exception {
if (SESSION_FACTORY == null) {
SESSION_FACTORY = new AnnotationConfiguration() é aqui o erro
.setProperty("hibernate.dialect", "org.hibernate.dialect.DerbyDialect")
.setProperty("hibernate.connection.driver_class", "org.apache.derby.jdbc.ClientDriver")
.setProperty("hibernate.connection.url", "jdbc:derby://localhost:1527/hibernateCompleteApp")
.setProperty("hibernate.connection.username", "hibernate")
.setProperty("hibernate.connection.password", "hibernate")
.setProperty("hibernate.hbm2ddl.auto", "none")
.setProperty("hibernate.show_sql", "true")
.setProperty("hibernate.format_sql", "true")
.setProperty("hibernate.c3p0.acquire_increment", "1")
.setProperty("hibernate.c3p0.idle_test_period", "100")
.setProperty("hibernate.c3p0.max_size", "10")
.setProperty("hibernate.c3p0.max_statements", "0")
.setProperty("hibernate.c3p0.min_size", "5")
.setProperty("hibernate.c3p0.timeout", "100")
.addAnnotatedClass(User.class)
.addAnnotatedClass(Product.class)
.addAnnotatedClass(Sale.class)
.buildSessionFactory();
}
Session s = (Session) THREAD_SESSION.get();
try {
if (s == null || !s.isOpen()) {
s = SESSION_FACTORY.openSession();
THREAD_SESSION.set(s);
}
} catch (HibernateException ex) {
throw new Exception(ex);
}
return s;
}
Cristian Mietlicki
02/06/2009
02/06/2009 13:32:00 com.sun.faces.application.ActionListenerImpl processAction
SEVERE: java.lang.Exception: org.hibernate.AnnotationException: mappedBy reference an unknown target entity property: br.org.shift.persistencia.Contato.Cliente in br.org.shift.persistencia.Cliente.contato
javax.faces.el.EvaluationException: java.lang.Exception: org.hibernate.AnnotationException: mappedBy reference an unknown target entity property: br.org.shift.persistencia.Contato.Cliente in br.org.shift.persistencia.Cliente.contato
at javax.faces.component.MethodBindingMethodExpressionAdapter.invoke(MethodBindingMethodExpressionAdapter.java:102)
at com.sun.faces.application.ActionListenerImpl.processAction(ActionListenerImpl.java:102)
at javax.faces.component.UICommand.broadcast(UICommand.java:387)
at org.ajax4jsf.component.AjaxViewRoot.processEvents(AjaxViewRoot.java:321)
at org.ajax4jsf.component.AjaxViewRoot.broadcastEvents(AjaxViewRoot.java:296)
at org.ajax4jsf.component.AjaxViewRoot.processPhase(AjaxViewRoot.java:253)
at org.ajax4jsf.component.AjaxViewRoot.processApplication(AjaxViewRoot.java:466)
at com.sun.faces.lifecycle.InvokeApplicationPhase.execute(InvokeApplicationPhase.java:82)
at com.sun.faces.lifecycle.Phase.doPhase(Phase.java:100)
at com.sun.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:118)
at javax.faces.webapp.FacesServlet.service(FacesServlet.java:265)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233)
at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:128)
at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:286)
at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:845)
at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:583)
at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:447)
at java.lang.Thread.run(Thread.java:619)
Caused by: java.lang.Exception: org.hibernate.AnnotationException: mappedBy reference an unknown target entity property: br.org.shift.persistencia.Contato.Cliente in br.org.shift.persistencia.Cliente.contato
at br.org.shift.hibernate.HibernateUtil.beginTransaction(HibernateUtil.java:123)
at br.org.shift.hibernate.HibernateUtil.save(HibernateUtil.java:167)
at br.org.shift.managerbean.ManagerBeanCliente.addCliente(ManagerBeanCliente.java:19)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:597)
at org.apache.el.parser.AstValue.invoke(AstValue.java:172)
at org.apache.el.MethodExpressionImpl.invoke(MethodExpressionImpl.java:276)
at org.apache.jasper.el.JspMethodExpression.invoke(JspMethodExpression.java:68)
at javax.faces.component.MethodBindingMethodExpressionAdapter.invoke(MethodBindingMethodExpressionAdapter.java:88)
... 22 more
Caused by: org.hibernate.AnnotationException: mappedBy reference an unknown target entity property: br.org.shift.persistencia.Contato.Cliente in br.org.shift.persistencia.Cliente.contato
at org.hibernate.cfg.annotations.CollectionBinder.bindStarToManySecondPass(CollectionBinder.java:576)
at org.hibernate.cfg.annotations.CollectionBinder$1.secondPass(CollectionBinder.java:541)
at org.hibernate.cfg.CollectionSecondPass.doSecondPass(CollectionSecondPass.java:43)
at org.hibernate.cfg.Configuration.secondPassCompile(Configuration.java:1140)
at org.hibernate.cfg.AnnotationConfiguration.secondPassCompile(AnnotationConfiguration.java:319)
at org.hibernate.cfg.Configuration.buildSessionFactory(Configuration.java:1296)
at org.hibernate.cfg.AnnotationConfiguration.buildSessionFactory(AnnotationConfiguration.java:854)
at br.org.shift.hibernate.HibernateUtil.getSession(HibernateUtil.java:76)
at br.org.shift.hibernate.HibernateUtil.beginTransaction(HibernateUtil.java:118)
... 32 more
02/06/2009 13:32:00 com.sun.faces.lifecycle.InvokeApplicationPhase execute
WARNING: #{managerBeanCliente.addCliente}: java.lang.Exception: org.hibernate.AnnotationException: mappedBy reference an unknown target entity property: br.org.shift.persistencia.Contato.Cliente in br.org.shift.persistencia.Cliente.contato
javax.faces.FacesException: #{managerBeanCliente.addCliente}: java.lang.Exception: org.hibernate.AnnotationException: mappedBy reference an unknown target entity property: br.org.shift.persistencia.Contato.Cliente in br.org.shift.persistencia.Cliente.contato
at com.sun.faces.application.ActionListenerImpl.processAction(ActionListenerImpl.java:118)
at javax.faces.component.UICommand.broadcast(UICommand.java:387)
at org.ajax4jsf.component.AjaxViewRoot.processEvents(AjaxViewRoot.java:321)
at org.ajax4jsf.component.AjaxViewRoot.broadcastEvents(AjaxViewRoot.java:296)
at org.ajax4jsf.component.AjaxViewRoot.processPhase(AjaxViewRoot.java:253)
at org.ajax4jsf.component.AjaxViewRoot.processApplication(AjaxViewRoot.java:466)
at com.sun.faces.lifecycle.InvokeApplicationPhase.execute(InvokeApplicationPhase.java:82)
at com.sun.faces.lifecycle.Phase.doPhase(Phase.java:100)
at com.sun.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:118)
at javax.faces.webapp.FacesServlet.service(FacesServlet.java:265)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233)
at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:128)
at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:286)
at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:845)
at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:583)
at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:447)
at java.lang.Thread.run(Thread.java:619)
Caused by: javax.faces.el.EvaluationException: java.lang.Exception: org.hibernate.AnnotationException: mappedBy reference an unknown target entity property: br.org.shift.persistencia.Contato.Cliente in br.org.shift.persistencia.Cliente.contato
at javax.faces.component.MethodBindingMethodExpressionAdapter.invoke(MethodBindingMethodExpressionAdapter.java:102)
at com.sun.faces.application.ActionListenerImpl.processAction(ActionListenerImpl.java:102)
... 21 more
Caused by: java.lang.Exception: org.hibernate.AnnotationException: mappedBy reference an unknown target entity property: br.org.shift.persistencia.Contato.Cliente in br.org.shift.persistencia.Cliente.contato
at br.org.shift.hibernate.HibernateUtil.beginTransaction(HibernateUtil.java:123)
at br.org.shift.hibernate.HibernateUtil.save(HibernateUtil.java:167)
at br.org.shift.managerbean.ManagerBeanCliente.addCliente(ManagerBeanCliente.java:19)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:597)
at org.apache.el.parser.AstValue.invoke(AstValue.java:172)
at org.apache.el.MethodExpressionImpl.invoke(MethodExpressionImpl.java:276)
at org.apache.jasper.el.JspMethodExpression.invoke(JspMethodExpression.java:68)
at javax.faces.component.MethodBindingMethodExpressionAdapter.invoke(MethodBindingMethodExpressionAdapter.java:88)
... 22 more
Caused by: org.hibernate.AnnotationException: mappedBy reference an unknown target entity property: br.org.shift.persistencia.Contato.Cliente in br.org.shift.persistencia.Cliente.contato
at org.hibernate.cfg.annotations.CollectionBinder.bindStarToManySecondPass(CollectionBinder.java:576)
at org.hibernate.cfg.annotations.CollectionBinder$1.secondPass(CollectionBinder.java:541)
at org.hibernate.cfg.CollectionSecondPass.doSecondPass(CollectionSecondPass.java:43)
at org.hibernate.cfg.Configuration.secondPassCompile(Configuration.java:1140)
at org.hibernate.cfg.AnnotationConfiguration.secondPassCompile(AnnotationConfiguration.java:319)
at org.hibernate.cfg.Configuration.buildSessionFactory(Configuration.java:1296)
at org.hibernate.cfg.AnnotationConfiguration.buildSessionFactory(AnnotationConfiguration.java:854)
at br.org.shift.hibernate.HibernateUtil.getSession(HibernateUtil.java:76)
at br.org.shift.hibernate.HibernateUtil.beginTransaction(HibernateUtil.java:118)
... 32 more
02/06/2009 13:32:00 com.sun.faces.lifecycle.Phase doPhase
SEVERE: JSF1054: (Phase ID: INVOKE_APPLICATION 5, View ID: /pages/cadastrocliente.jsp) Exception thrown during phase execution: javax.faces.event.PhaseEvent[source=com.sun.faces.lifecycle.LifecycleImpl@2b2057]
02/06/2009 13:32:00 org.apache.catalina.core.StandardWrapperValve invoke
SEVERE: Servlet.service() for servlet Faces Servlet threw exception
org.hibernate.AnnotationException: mappedBy reference an unknown target entity property: br.org.shift.persistencia.Contato.Cliente in br.org.shift.persistencia.Cliente.contato
at org.hibernate.cfg.annotations.CollectionBinder.bindStarToManySecondPass(CollectionBinder.java:576)
at org.hibernate.cfg.annotations.CollectionBinder$1.secondPass(CollectionBinder.java:541)
at org.hibernate.cfg.CollectionSecondPass.doSecondPass(CollectionSecondPass.java:43)
at org.hibernate.cfg.Configuration.secondPassCompile(Configuration.java:1140)
at org.hibernate.cfg.AnnotationConfiguration.secondPassCompile(AnnotationConfiguration.java:319)
at org.hibernate.cfg.Configuration.buildSessionFactory(Configuration.java:1296)
at org.hibernate.cfg.AnnotationConfiguration.buildSessionFactory(AnnotationConfiguration.java:854)
at br.org.shift.hibernate.HibernateUtil.getSession(HibernateUtil.java:76)
at br.org.shift.hibernate.HibernateUtil.beginTransaction(HibernateUtil.java:118)
at br.org.shift.hibernate.HibernateUtil.save(HibernateUtil.java:167)
at br.org.shift.managerbean.ManagerBeanCliente.addCliente(ManagerBeanCliente.java:19)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:597)
at org.apache.el.parser.AstValue.invoke(AstValue.java:172)
at org.apache.el.MethodExpressionImpl.invoke(MethodExpressionImpl.java:276)
at org.apache.jasper.el.JspMethodExpression.invoke(JspMethodExpression.java:68)
at javax.faces.component.MethodBindingMethodExpressionAdapter.invoke(MethodBindingMethodExpressionAdapter.java:88)
at com.sun.faces.application.ActionListenerImpl.processAction(ActionListenerImpl.java:102)
at javax.faces.component.UICommand.broadcast(UICommand.java:387)
at org.ajax4jsf.component.AjaxViewRoot.processEvents(AjaxViewRoot.java:321)
at org.ajax4jsf.component.AjaxViewRoot.broadcastEvents(AjaxViewRoot.java:296)
at org.ajax4jsf.component.AjaxViewRoot.processPhase(AjaxViewRoot.java:253)
at org.ajax4jsf.component.AjaxViewRoot.processApplication(AjaxViewRoot.java:466)
at com.sun.faces.lifecycle.InvokeApplicationPhase.execute(InvokeApplicationPhase.java:82)
at com.sun.faces.lifecycle.Phase.doPhase(Phase.java:100)
at com.sun.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:118)
at javax.faces.webapp.FacesServlet.service(FacesServlet.java:265)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233)
at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:128)
at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:286)
at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:845)
at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:583)
at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:447)
at java.lang.Thread.run(Thread.java:619)
2009-06-02 13:32:00,437 DEBUG ajax4jsf.event.AjaxPhaseListener -> Process after phase INVOKE_APPLICATION 5
Cristian Mietlicki
02/06/2009
Dyego Carmo
02/06/2009
Seu mapeamento está errado...
as listas estao incorretas... ae ele nao consegue acessar os metodos e da problema na inicializacao
Dyego Carmo
02/06/2009
em sua classe cliente voce tem:
@OneToMany(mappedBy="Cliente")
private List<Projeto>projeto;
O que quer dizer isso ? Voce disse ao Hibernate que na classe Projeto tem uma propriedade chamada Cliente que esta sendo mapeada para esta.
E é mentira... na classe projeto nao tem nenhuma propriedade cliente... assim ele se perde todo !
Dyego Carmo
02/06/2009
@OneToMany(mappedBy="Cliente")
private List<Suporte>suporte4;
@OneToMany(mappedBy="Cliente")
private List<Contato>contato;
@OneToMany(mappedBy="Cliente")
private List<Projeto>projeto;
e teste
Cristian Mietlicki
02/06/2009
2009-06-02 14:40:45,328 DEBUG cfg.annotations.SimpleValueBinder -> building SimpleValue for idProjeto
2009-06-02 14:40:45,328 DEBUG cfg.annotations.PropertyBinder -> Building property idProjeto
2009-06-02 14:40:45,328 DEBUG hibernate.cfg.AnnotationBinder -> Bind @Id on idProjeto
2009-06-02 14:40:45,328 DEBUG hibernate.cfg.AnnotationBinder -> Processing annotations of br.org.shift.persistencia.ContatoProjeto.idContato
2009-06-02 14:40:45,328 DEBUG hibernate.cfg.Ejb3Column -> Binding column idContato. Unique false
2009-06-02 14:40:45,328 DEBUG hibernate.cfg.AnnotationBinder -> idContato is an id
2009-06-02 14:40:45,328 DEBUG cfg.annotations.SimpleValueBinder -> building SimpleValue for idContato
2009-06-02 14:40:45,328 DEBUG cfg.annotations.PropertyBinder -> Building property idContato
2009-06-02 14:40:45,328 DEBUG hibernate.cfg.AnnotationBinder -> Bind @Id on idContato
2009-06-02 14:40:45,328 INFO hibernate.cfg.AnnotationBinder -> Binding entity from annotated class: br.org.shift.persistencia.Funcionario
2009-06-02 14:40:45,328 DEBUG hibernate.cfg.Ejb3Column -> Binding column DTYPE. Unique false
2009-06-02 14:40:45,328 DEBUG cfg.annotations.EntityBinder -> Import with entity name Funcionario
2009-06-02 14:40:45,328 INFO cfg.annotations.EntityBinder -> Bind entity br.org.shift.persistencia.Funcionario on table Funcionario
2009-06-02 14:40:45,328 DEBUG hibernate.cfg.AnnotationBinder -> Processing br.org.shift.persistencia.Funcionario property annotation
2009-06-02 14:40:45,328 DEBUG hibernate.cfg.AnnotationBinder -> Processing br.org.shift.persistencia.Funcionario field annotation
2009-06-02 14:40:45,343 DEBUG hibernate.cfg.AnnotationBinder -> Processing annotations of br.org.shift.persistencia.Funcionario.idFuncionario
2009-06-02 14:40:45,343 DEBUG hibernate.cfg.Ejb3Column -> Binding column idFuncionario. Unique false
2009-06-02 14:40:45,343 DEBUG hibernate.cfg.AnnotationBinder -> idFuncionario is an id
2009-06-02 14:40:45,343 DEBUG cfg.annotations.SimpleValueBinder -> building SimpleValue for idFuncionario
2009-06-02 14:40:45,343 DEBUG cfg.annotations.PropertyBinder -> Building property idFuncionario
2009-06-02 14:40:45,343 DEBUG hibernate.cfg.AnnotationBinder -> Bind @Id on idFuncionario
2009-06-02 14:40:45,343 DEBUG hibernate.cfg.AnnotationBinder -> Processing annotations of br.org.shift.persistencia.Funcionario.dataAdmissao
2009-06-02 14:40:45,343 DEBUG hibernate.cfg.Ejb3Column -> Binding column dataAdmissao. Unique false
2009-06-02 14:40:45,343 DEBUG cfg.annotations.PropertyBinder -> binding property dataAdmissao with lazy=false
2009-06-02 14:40:45,343 DEBUG cfg.annotations.SimpleValueBinder -> building SimpleValue for dataAdmissao
2009-06-02 14:40:45,343 DEBUG cfg.annotations.PropertyBinder -> Building property dataAdmissao
2009-06-02 14:40:45,343 DEBUG hibernate.cfg.AnnotationBinder -> Processing annotations of br.org.shift.persistencia.Funcionario.email2Funcionaro
2009-06-02 14:40:45,343 DEBUG hibernate.cfg.Ejb3Column -> Binding column email2Funcionaro. Unique false
2009-06-02 14:40:45,343 DEBUG cfg.annotations.PropertyBinder -> binding property email2Funcionaro with lazy=false
2009-06-02 14:40:45,343 DEBUG cfg.annotations.SimpleValueBinder -> building SimpleValue for email2Funcionaro
2009-06-02 14:40:45,343 DEBUG cfg.annotations.PropertyBinder -> Building property email2Funcionaro
2009-06-02 14:40:45,343 DEBUG hibernate.cfg.AnnotationBinder -> Processing annotations of br.org.shift.persistencia.Funcionario.emailFuncionario
2009-06-02 14:40:45,343 DEBUG hibernate.cfg.Ejb3Column -> Binding column emailFuncionario. Unique false
2009-06-02 14:40:45,343 DEBUG cfg.annotations.PropertyBinder -> binding property emailFuncionario with lazy=false
2009-06-02 14:40:45,343 DEBUG cfg.annotations.SimpleValueBinder -> building SimpleValue for emailFuncionario
2009-06-02 14:40:45,343 DEBUG cfg.annotations.PropertyBinder -> Building property emailFuncionario
2009-06-02 14:40:45,343 DEBUG hibernate.cfg.AnnotationBinder -> Processing annotations of br.org.shift.persistencia.Funcionario.enderecoFuncionario
2009-06-02 14:40:45,343 DEBUG hibernate.cfg.Ejb3Column -> Binding column enderecoFuncionario. Unique false
2009-06-02 14:40:45,343 DEBUG cfg.annotations.PropertyBinder -> binding property enderecoFuncionario with lazy=false
2009-06-02 14:40:45,343 DEBUG cfg.annotations.SimpleValueBinder -> building SimpleValue for enderecoFuncionario
2009-06-02 14:40:45,343 DEBUG cfg.annotations.PropertyBinder -> Building property enderecoFuncionario
2009-06-02 14:40:45,343 DEBUG hibernate.cfg.AnnotationBinder -> Processing annotations of br.org.shift.persistencia.Funcionario.funcionarioAtivo
2009-06-02 14:40:45,343 DEBUG hibernate.cfg.Ejb3Column -> Binding column funcionarioAtivo. Unique false
2009-06-02 14:40:45,343 DEBUG cfg.annotations.PropertyBinder -> binding property funcionarioAtivo with lazy=false
2009-06-02 14:40:45,343 DEBUG cfg.annotations.SimpleValueBinder -> building SimpleValue for funcionarioAtivo
2009-06-02 14:40:45,343 DEBUG cfg.annotations.PropertyBinder -> Building property funcionarioAtivo
2009-06-02 14:40:45,343 DEBUG hibernate.cfg.AnnotationBinder -> Processing annotations of br.org.shift.persistencia.Funcionario.nomeFuncionario
2009-06-02 14:40:45,343 DEBUG hibernate.cfg.Ejb3Column -> Binding column nomeFuncionario. Unique false
2009-06-02 14:40:45,343 DEBUG cfg.annotations.PropertyBinder -> binding property nomeFuncionario with lazy=false
2009-06-02 14:40:45,343 DEBUG cfg.annotations.SimpleValueBinder -> building SimpleValue for nomeFuncionario
2009-06-02 14:40:45,343 DEBUG cfg.annotations.PropertyBinder -> Building property nomeFuncionario
2009-06-02 14:40:45,343 DEBUG hibernate.cfg.AnnotationBinder -> Processing annotations of br.org.shift.persistencia.Funcionario.projeto
2009-06-02 14:40:45,343 DEBUG hibernate.cfg.Ejb3Column -> Binding column null. Unique false
2009-06-02 14:40:45,343 DEBUG hibernate.cfg.Ejb3Column -> Binding column element. Unique false
2009-06-02 14:40:45,343 DEBUG hibernate.cfg.Ejb3Column -> Binding column mapkey. Unique false
2009-06-02 14:40:45,343 DEBUG hibernate.cfg.Ejb3Column -> Binding column null. Unique false
2009-06-02 14:40:45,343 DEBUG hibernate.cfg.Ejb3Column -> Binding column idFuncionario. Unique false
2009-06-02 14:40:45,343 DEBUG hibernate.cfg.Ejb3Column -> Binding column idProjeto. Unique false
2009-06-02 14:40:45,343 DEBUG cfg.annotations.CollectionBinder -> Collection role: br.org.shift.persistencia.Funcionario.projeto
2009-06-02 14:40:45,343 DEBUG cfg.annotations.PropertyBinder -> Building property projeto
2009-06-02 14:40:45,343 DEBUG hibernate.cfg.AnnotationBinder -> Processing annotations of br.org.shift.persistencia.Funcionario.scripts
2009-06-02 14:40:45,343 DEBUG hibernate.cfg.Ejb3Column -> Binding column null. Unique false
2009-06-02 14:40:45,343 DEBUG hibernate.cfg.Ejb3Column -> Binding column scripts. Unique false
2009-06-02 14:40:45,343 DEBUG hibernate.cfg.Ejb3Column -> Binding column null. Unique false
2009-06-02 14:40:45,343 DEBUG hibernate.cfg.Ejb3Column -> Binding column element. Unique false
2009-06-02 14:40:45,343 DEBUG hibernate.cfg.Ejb3Column -> Binding column mapkey. Unique false
2009-06-02 14:40:45,343 DEBUG hibernate.cfg.Ejb3Column -> Binding column null. Unique false
2009-06-02 14:40:45,343 DEBUG hibernate.cfg.Ejb3Column -> Binding column null. Unique false
2009-06-02 14:40:45,343 DEBUG hibernate.cfg.Ejb3Column -> Binding column null. Unique false
2009-06-02 14:40:45,343 DEBUG cfg.annotations.CollectionBinder -> Collection role: br.org.shift.persistencia.Funcionario.scripts
2009-06-02 14:40:45,343 DEBUG cfg.annotations.PropertyBinder -> Building property scripts
2009-06-02 14:40:45,343 DEBUG hibernate.cfg.AnnotationBinder -> Processing annotations of br.org.shift.persistencia.Funcionario.suporte
2009-06-02 14:40:45,343 DEBUG hibernate.cfg.Ejb3Column -> Binding column null. Unique false
2009-06-02 14:40:45,343 DEBUG hibernate.cfg.Ejb3Column -> Binding column element. Unique false
2009-06-02 14:40:45,343 DEBUG hibernate.cfg.Ejb3Column -> Binding column mapkey. Unique false
2009-06-02 14:40:45,343 DEBUG hibernate.cfg.Ejb3Column -> Binding column null. Unique false
2009-06-02 14:40:45,343 DEBUG hibernate.cfg.Ejb3Column -> Binding column idFuncionario. Unique false
2009-06-02 14:40:45,343 DEBUG hibernate.cfg.Ejb3Column -> Binding column idSuporte. Unique false
2009-06-02 14:40:45,343 DEBUG cfg.annotations.CollectionBinder -> Collection role: br.org.shift.persistencia.Funcionario.suporte
2009-06-02 14:40:45,343 DEBUG cfg.annotations.PropertyBinder -> Building property suporte
2009-06-02 14:40:45,343 DEBUG hibernate.cfg.AnnotationBinder -> Processing annotations of br.org.shift.persistencia.Funcionario.telefoneFuncionario
2009-06-02 14:40:45,343 DEBUG hibernate.cfg.Ejb3Column -> Binding column null. Unique false
2009-06-02 14:40:45,343 DEBUG hibernate.cfg.Ejb3Column -> Binding column telefoneFuncionario. Unique false
2009-06-02 14:40:45,343 DEBUG hibernate.cfg.Ejb3Column -> Binding column null. Unique false
2009-06-02 14:40:45,343 DEBUG hibernate.cfg.Ejb3Column -> Binding column element. Unique false
2009-06-02 14:40:45,343 DEBUG hibernate.cfg.Ejb3Column -> Binding column mapkey. Unique false
2009-06-02 14:40:45,343 DEBUG hibernate.cfg.Ejb3Column -> Binding column null. Unique false
2009-06-02 14:40:45,343 DEBUG hibernate.cfg.Ejb3Column -> Binding column null. Unique false
2009-06-02 14:40:45,343 DEBUG hibernate.cfg.Ejb3Column -> Binding column null. Unique false
2009-06-02 14:40:45,343 DEBUG cfg.annotations.CollectionBinder -> Collection role: br.org.shift.persistencia.Funcionario.telefoneFuncionario
2009-06-02 14:40:45,343 DEBUG cfg.annotations.PropertyBinder -> Building property telefoneFuncionario
2009-06-02 14:40:45,343 INFO hibernate.cfg.AnnotationBinder -> Binding entity from annotated class: br.org.shift.persistencia.Parceiro
2009-06-02 14:40:45,343 DEBUG hibernate.cfg.Ejb3Column -> Binding column DTYPE. Unique false
2009-06-02 14:40:45,343 DEBUG cfg.annotations.EntityBinder -> Import with entity name Parceiro
2009-06-02 14:40:45,343 INFO cfg.annotations.EntityBinder -> Bind entity br.org.shift.persistencia.Parceiro on table Parceiro
2009-06-02 14:40:45,343 DEBUG hibernate.cfg.AnnotationBinder -> Processing br.org.shift.persistencia.Parceiro property annotation
2009-06-02 14:40:45,343 DEBUG hibernate.cfg.AnnotationBinder -> Processing br.org.shift.persistencia.Parceiro field annotation
2009-06-02 14:40:45,359 DEBUG hibernate.cfg.AnnotationBinder -> Processing annotations of br.org.shift.persistencia.Parceiro.idParceiro
2009-06-02 14:40:45,359 DEBUG hibernate.cfg.Ejb3Column -> Binding column idParceiro. Unique false
2009-06-02 14:40:45,359 DEBUG hibernate.cfg.AnnotationBinder -> idParceiro is an id
2009-06-02 14:40:45,359 DEBUG cfg.annotations.SimpleValueBinder -> building SimpleValue for idParceiro
2009-06-02 14:40:45,359 DEBUG cfg.annotations.PropertyBinder -> Building property idParceiro
2009-06-02 14:40:45,359 DEBUG hibernate.cfg.AnnotationBinder -> Bind @Id on idParceiro
2009-06-02 14:40:45,359 DEBUG hibernate.cfg.AnnotationBinder -> Processing annotations of br.org.shift.persistencia.Parceiro.email2Parceiro
2009-06-02 14:40:45,359 DEBUG hibernate.cfg.Ejb3Column -> Binding column email2Parceiro. Unique false
2009-06-02 14:40:45,359 DEBUG cfg.annotations.PropertyBinder -> binding property email2Parceiro with lazy=false
2009-06-02 14:40:45,359 DEBUG cfg.annotations.SimpleValueBinder -> building SimpleValue for email2Parceiro
2009-06-02 14:40:45,359 DEBUG cfg.annotations.PropertyBinder -> Building property email2Parceiro
2009-06-02 14:40:45,359 DEBUG hibernate.cfg.AnnotationBinder -> Processing annotations of br.org.shift.persistencia.Parceiro.emailParceiro
2009-06-02 14:40:45,359 DEBUG hibernate.cfg.Ejb3Column -> Binding column emailParceiro. Unique false
2009-06-02 14:40:45,359 DEBUG cfg.annotations.PropertyBinder -> binding property emailParceiro with lazy=false
2009-06-02 14:40:45,359 DEBUG cfg.annotations.SimpleValueBinder -> building SimpleValue for emailParceiro
2009-06-02 14:40:45,359 DEBUG cfg.annotations.PropertyBinder -> Building property emailParceiro
2009-06-02 14:40:45,359 DEBUG hibernate.cfg.AnnotationBinder -> Processing annotations of br.org.shift.persistencia.Parceiro.nomeParceiro
2009-06-02 14:40:45,359 DEBUG hibernate.cfg.Ejb3Column -> Binding column nomeParceiro. Unique false
2009-06-02 14:40:45,359 DEBUG cfg.annotations.PropertyBinder -> binding property nomeParceiro with lazy=false
2009-06-02 14:40:45,359 DEBUG cfg.annotations.SimpleValueBinder -> building SimpleValue for nomeParceiro
2009-06-02 14:40:45,359 DEBUG cfg.annotations.PropertyBinder -> Building property nomeParceiro
2009-06-02 14:40:45,359 DEBUG hibernate.cfg.AnnotationBinder -> Processing annotations of br.org.shift.persistencia.Parceiro.projeto
2009-06-02 14:40:45,359 DEBUG hibernate.cfg.Ejb3Column -> Binding column null. Unique false
2009-06-02 14:40:45,359 DEBUG hibernate.cfg.Ejb3Column -> Binding column element. Unique false
2009-06-02 14:40:45,359 DEBUG hibernate.cfg.Ejb3Column -> Binding column mapkey. Unique false
2009-06-02 14:40:45,359 DEBUG hibernate.cfg.Ejb3Column -> Binding column null. Unique false
2009-06-02 14:40:45,359 DEBUG hibernate.cfg.Ejb3Column -> Binding column idParceiro. Unique false
2009-06-02 14:40:45,359 DEBUG hibernate.cfg.Ejb3Column -> Binding column idProjeto. Unique false
2009-06-02 14:40:45,359 DEBUG cfg.annotations.CollectionBinder -> Collection role: br.org.shift.persistencia.Parceiro.projeto
2009-06-02 14:40:45,359 DEBUG cfg.annotations.PropertyBinder -> Building property projeto
2009-06-02 14:40:45,359 DEBUG hibernate.cfg.AnnotationBinder -> Processing annotations of br.org.shift.persistencia.Parceiro.tecnologia
2009-06-02 14:40:45,359 DEBUG hibernate.cfg.Ejb3Column -> Binding column null. Unique false
2009-06-02 14:40:45,359 DEBUG hibernate.cfg.Ejb3Column -> Binding column element. Unique false
2009-06-02 14:40:45,359 DEBUG hibernate.cfg.Ejb3Column -> Binding column mapkey. Unique false
2009-06-02 14:40:45,359 DEBUG hibernate.cfg.Ejb3Column -> Binding column null. Unique false
2009-06-02 14:40:45,359 DEBUG hibernate.cfg.Ejb3Column -> Binding column idParceiro. Unique false
2009-06-02 14:40:45,359 DEBUG hibernate.cfg.Ejb3Column -> Binding column idTecnologia. Unique false
2009-06-02 14:40:45,359 DEBUG cfg.annotations.CollectionBinder -> Collection role: br.org.shift.persistencia.Parceiro.tecnologia
2009-06-02 14:40:45,359 DEBUG cfg.annotations.PropertyBinder -> Building property tecnologia
2009-06-02 14:40:45,359 DEBUG hibernate.cfg.AnnotationBinder -> Processing annotations of br.org.shift.persistencia.Parceiro.telefone2Parceiro
2009-06-02 14:40:45,359 DEBUG hibernate.cfg.Ejb3Column -> Binding column telefone2Parceiro. Unique false
2009-06-02 14:40:45,359 DEBUG cfg.annotations.PropertyBinder -> binding property telefone2Parceiro with lazy=false
2009-06-02 14:40:45,359 DEBUG cfg.annotations.SimpleValueBinder -> building SimpleValue for telefone2Parceiro
2009-06-02 14:40:45,359 DEBUG cfg.annotations.PropertyBinder -> Building property telefone2Parceiro
2009-06-02 14:40:45,359 DEBUG hibernate.cfg.AnnotationBinder -> Processing annotations of br.org.shift.persistencia.Parceiro.telefoneParceiro
2009-06-02 14:40:45,359 DEBUG hibernate.cfg.Ejb3Column -> Binding column telefoneParceiro. Unique false
2009-06-02 14:40:45,359 DEBUG cfg.annotations.PropertyBinder -> binding property telefoneParceiro with lazy=false
2009-06-02 14:40:45,359 DEBUG cfg.annotations.SimpleValueBinder -> building SimpleValue for telefoneParceiro
2009-06-02 14:40:45,359 DEBUG cfg.annotations.PropertyBinder -> Building property telefoneParceiro
2009-06-02 14:40:45,359 INFO hibernate.cfg.AnnotationBinder -> Binding entity from annotated class: br.org.shift.persistencia.ParceiroProjeto
2009-06-02 14:40:45,359 DEBUG hibernate.cfg.Ejb3Column -> Binding column DTYPE. Unique false
2009-06-02 14:40:45,359 DEBUG cfg.annotations.EntityBinder -> Import with entity name ParceiroProjeto
2009-06-02 14:40:45,359 INFO cfg.annotations.EntityBinder -> Bind entity br.org.shift.persistencia.ParceiroProjeto on table ParceiroProjeto
2009-06-02 14:40:45,359 DEBUG hibernate.cfg.AnnotationBinder -> Processing br.org.shift.persistencia.ParceiroProjeto property annotation
2009-06-02 14:40:45,390 DEBUG hibernate.cfg.AnnotationBinder -> Processing br.org.shift.persistencia.ParceiroProjeto field annotation
2009-06-02 14:40:45,406 DEBUG hibernate.cfg.AnnotationBinder -> Processing annotations of br.org.shift.persistencia.ParceiroProjeto.idParceiro
2009-06-02 14:40:45,406 DEBUG hibernate.cfg.Ejb3Column -> Binding column idParceiro. Unique false
2009-06-02 14:40:45,406 DEBUG hibernate.cfg.AnnotationBinder -> idParceiro is an id
2009-06-02 14:40:45,406 DEBUG cfg.annotations.SimpleValueBinder -> building SimpleValue for idParceiro
2009-06-02 14:40:45,406 DEBUG cfg.annotations.PropertyBinder -> Building property idParceiro
2009-06-02 14:40:45,406 DEBUG hibernate.cfg.AnnotationBinder -> Bind @Id on idParceiro
2009-06-02 14:40:45,406 DEBUG hibernate.cfg.AnnotationBinder -> Processing annotations of br.org.shift.persistencia.ParceiroProjeto.idProjeto
2009-06-02 14:40:45,406 DEBUG hibernate.cfg.Ejb3Column -> Binding column idProjeto. Unique false
2009-06-02 14:40:45,406 DEBUG cfg.annotations.PropertyBinder -> binding property idProjeto with lazy=false
2009-06-02 14:40:45,406 DEBUG cfg.annotations.SimpleValueBinder -> building SimpleValue for idProjeto
2009-06-02 14:40:45,406 DEBUG cfg.annotations.PropertyBinder -> Building property idProjeto
2009-06-02 14:40:45,406 INFO hibernate.cfg.AnnotationBinder -> Binding entity from annotated class: br.org.shift.persistencia.ParceiroTecnologia
2009-06-02 14:40:45,406 DEBUG hibernate.cfg.Ejb3Column -> Binding column DTYPE. Unique false
2009-06-02 14:40:45,406 DEBUG cfg.annotations.EntityBinder -> Import with entity name ParceiroTecnologia
2009-06-02 14:40:45,406 INFO cfg.annotations.EntityBinder -> Bind entity br.org.shift.persistencia.ParceiroTecnologia on table ParceiroTecnologia
2009-06-02 14:40:45,406 DEBUG hibernate.cfg.AnnotationBinder -> Processing br.org.shift.persistencia.ParceiroTecnologia property annotation
2009-06-02 14:40:45,406 DEBUG hibernate.cfg.AnnotationBinder -> Processing br.org.shift.persistencia.ParceiroTecnologia field annotation
2009-06-02 14:40:45,406 DEBUG hibernate.cfg.AnnotationBinder -> Processing annotations of br.org.shift.persistencia.ParceiroTecnologia.idParceiro
2009-06-02 14:40:45,406 DEBUG hibernate.cfg.Ejb3Column -> Binding column idParceiro. Unique false
2009-06-02 14:40:45,406 DEBUG hibernate.cfg.AnnotationBinder -> idParceiro is an id
2009-06-02 14:40:45,406 DEBUG cfg.annotations.SimpleValueBinder -> building SimpleValue for idParceiro
2009-06-02 14:40:45,406 DEBUG cfg.annotations.PropertyBinder -> Building property idParceiro
2009-06-02 14:40:45,406 DEBUG hibernate.cfg.AnnotationBinder -> Bind @Id on idParceiro
2009-06-02 14:40:45,406 DEBUG hibernate.cfg.AnnotationBinder -> Processing annotations of br.org.shift.persistencia.ParceiroTecnologia.idTecnologia
2009-06-02 14:40:45,406 DEBUG hibernate.cfg.Ejb3Column -> Binding column idTecnologia. Unique false
2009-06-02 14:40:45,406 DEBUG cfg.annotations.PropertyBinder -> binding property idTecnologia with lazy=false
2009-06-02 14:40:45,406 DEBUG cfg.annotations.SimpleValueBinder -> building SimpleValue for idTecnologia
2009-06-02 14:40:45,406 DEBUG cfg.annotations.PropertyBinder -> Building property idTecnologia
2009-06-02 14:40:45,406 INFO hibernate.cfg.AnnotationBinder -> Binding entity from annotated class: br.org.shift.persistencia.ParticipaProjeto
2009-06-02 14:40:45,406 DEBUG hibernate.cfg.Ejb3Column -> Binding column DTYPE. Unique false
2009-06-02 14:40:45,406 DEBUG cfg.annotations.EntityBinder -> Import with entity name ParticipaProjeto
2009-06-02 14:40:45,406 INFO cfg.annotations.EntityBinder -> Bind entity br.org.shift.persistencia.ParticipaProjeto on table participaProjeto
2009-06-02 14:40:45,406 DEBUG hibernate.cfg.AnnotationBinder -> Processing br.org.shift.persistencia.ParticipaProjeto property annotation
2009-06-02 14:40:45,406 DEBUG hibernate.cfg.AnnotationBinder -> Processing br.org.shift.persistencia.ParticipaProjeto field annotation
2009-06-02 14:40:45,406 DEBUG hibernate.cfg.AnnotationBinder -> Processing annotations of br.org.shift.persistencia.ParticipaProjeto.idProjeto
2009-06-02 14:40:45,406 DEBUG hibernate.cfg.Ejb3Column -> Binding column idProjeto. Unique false
2009-06-02 14:40:45,406 DEBUG hibernate.cfg.AnnotationBinder -> idProjeto is an id
2009-06-02 14:40:45,406 DEBUG cfg.annotations.SimpleValueBinder -> building SimpleValue for idProjeto
2009-06-02 14:40:45,406 DEBUG cfg.annotations.PropertyBinder -> Building property idProjeto
2009-06-02 14:40:45,406 DEBUG hibernate.cfg.AnnotationBinder -> Bind @Id on idProjeto
2009-06-02 14:40:45,406 DEBUG hibernate.cfg.AnnotationBinder -> Processing annotations of br.org.shift.persistencia.ParticipaProjeto.idFuncinario
2009-06-02 14:40:45,406 DEBUG hibernate.cfg.Ejb3Column -> Binding column idFuncinario. Unique false
2009-06-02 14:40:45,406 DEBUG hibernate.cfg.AnnotationBinder -> idFuncinario is an id
2009-06-02 14:40:45,406 DEBUG cfg.annotations.SimpleValueBinder -> building SimpleValue for idFuncinario
2009-06-02 14:40:45,406 DEBUG cfg.annotations.PropertyBinder -> Building property idFuncinario
2009-06-02 14:40:45,406 DEBUG hibernate.cfg.AnnotationBinder -> Bind @Id on idFuncinario
2009-06-02 14:40:45,406 INFO hibernate.cfg.AnnotationBinder -> Binding entity from annotated class: br.org.shift.persistencia.ParticipaSuporte
2009-06-02 14:40:45,406 DEBUG hibernate.cfg.Ejb3Column -> Binding column DTYPE. Unique false
2009-06-02 14:40:45,406 DEBUG cfg.annotations.EntityBinder -> Import with entity name ParticipaSuporte
2009-06-02 14:40:45,406 INFO cfg.annotations.EntityBinder -> Bind entity br.org.shift.persistencia.ParticipaSuporte on table ParticipaSuporte
2009-06-02 14:40:45,406 DEBUG hibernate.cfg.AnnotationBinder -> Processing br.org.shift.persistencia.ParticipaSuporte property annotation
2009-06-02 14:40:45,406 DEBUG hibernate.cfg.AnnotationBinder -> Processing br.org.shift.persistencia.ParticipaSuporte field annotation
2009-06-02 14:40:45,406 DEBUG hibernate.cfg.AnnotationBinder -> Processing annotations of br.org.shift.persistencia.ParticipaSuporte.idSuporte
2009-06-02 14:40:45,406 DEBUG hibernate.cfg.Ejb3Column -> Binding column idSuporte. Unique false
2009-06-02 14:40:45,406 DEBUG hibernate.cfg.AnnotationBinder -> idSuporte is an id
2009-06-02 14:40:45,406 DEBUG cfg.annotations.SimpleValueBinder -> building SimpleValue for idSuporte
2009-06-02 14:40:45,406 DEBUG cfg.annotations.PropertyBinder -> Building property idSuporte
2009-06-02 14:40:45,406 DEBUG hibernate.cfg.AnnotationBinder -> Bind @Id on idSuporte
2009-06-02 14:40:45,406 DEBUG hibernate.cfg.AnnotationBinder -> Processing annotations of br.org.shift.persistencia.ParticipaSuporte.idFuncionario
2009-06-02 14:40:45,406 DEBUG hibernate.cfg.Ejb3Column -> Binding column idFuncionario. Unique false
2009-06-02 14:40:45,406 DEBUG hibernate.cfg.AnnotationBinder -> idFuncionario is an id
2009-06-02 14:40:45,406 DEBUG cfg.annotations.SimpleValueBinder -> building SimpleValue for idFuncionario
2009-06-02 14:40:45,406 DEBUG cfg.annotations.PropertyBinder -> Building property idFuncionario
2009-06-02 14:40:45,406 DEBUG hibernate.cfg.AnnotationBinder -> Bind @Id on idFuncionario
2009-06-02 14:40:45,406 DEBUG hibernate.cfg.AnnotationBinder -> Processing annotations of br.org.shift.persistencia.ParticipaSuporte.horasSuporte
2009-06-02 14:40:45,406 DEBUG hibernate.cfg.Ejb3Column -> Binding column horasSuporte. Unique false
2009-06-02 14:40:45,406 DEBUG cfg.annotations.PropertyBinder -> binding property horasSuporte with lazy=false
2009-06-02 14:40:45,406 DEBUG cfg.annotations.SimpleValueBinder -> building SimpleValue for horasSuporte
2009-06-02 14:40:45,406 DEBUG cfg.annotations.PropertyBinder -> Building property horasSuporte
2009-06-02 14:40:45,406 INFO hibernate.cfg.AnnotationBinder -> Binding entity from annotated class: br.org.shift.persistencia.ProjetoTecnologia
2009-06-02 14:40:45,406 DEBUG hibernate.cfg.Ejb3Column -> Binding column DTYPE. Unique false
2009-06-02 14:40:45,406 DEBUG cfg.annotations.EntityBinder -> Import with entity name ProjetoTecnologia
2009-06-02 14:40:45,406 INFO cfg.annotations.EntityBinder -> Bind entity br.org.shift.persistencia.ProjetoTecnologia on table ProjetoTecnologia
2009-06-02 14:40:45,421 DEBUG hibernate.cfg.AnnotationBinder -> Processing br.org.shift.persistencia.ProjetoTecnologia property annotation
2009-06-02 14:40:45,421 DEBUG hibernate.cfg.AnnotationBinder -> Processing br.org.shift.persistencia.ProjetoTecnologia field annotation
2009-06-02 14:40:45,421 DEBUG hibernate.cfg.AnnotationBinder -> Processing annotations of br.org.shift.persistencia.ProjetoTecnologia.idTecnologia
2009-06-02 14:40:45,421 DEBUG hibernate.cfg.Ejb3Column -> Binding column idTecnologia. Unique false
2009-06-02 14:40:45,421 DEBUG hibernate.cfg.AnnotationBinder -> idTecnologia is an id
2009-06-02 14:40:45,421 DEBUG cfg.annotations.SimpleValueBinder -> building SimpleValue for idTecnologia
2009-06-02 14:40:45,421 DEBUG cfg.annotations.PropertyBinder -> Building property idTecnologia
2009-06-02 14:40:45,421 DEBUG hibernate.cfg.AnnotationBinder -> Bind @Id on idTecnologia
2009-06-02 14:40:45,421 DEBUG hibernate.cfg.AnnotationBinder -> Processing annotations of br.org.shift.persistencia.ProjetoTecnologia.idProjeto
2009-06-02 14:40:45,421 DEBUG hibernate.cfg.Ejb3Column -> Binding column idProjeto. Unique false
2009-06-02 14:40:45,421 DEBUG hibernate.cfg.AnnotationBinder -> idProjeto is an id
2009-06-02 14:40:45,421 DEBUG cfg.annotations.SimpleValueBinder -> building SimpleValue for idProjeto
2009-06-02 14:40:45,421 DEBUG cfg.annotations.PropertyBinder -> Building property idProjeto
2009-06-02 14:40:45,421 DEBUG hibernate.cfg.AnnotationBinder -> Bind @Id on idProjeto
2009-06-02 14:40:45,421 INFO hibernate.cfg.AnnotationBinder -> Binding entity from annotated class: br.org.shift.persistencia.Scripts
2009-06-02 14:40:45,421 DEBUG hibernate.cfg.Ejb3Column -> Binding column DTYPE. Unique false
2009-06-02 14:40:45,421 DEBUG cfg.annotations.EntityBinder -> Import with entity name Scripts
2009-06-02 14:40:45,421 INFO cfg.annotations.EntityBinder -> Bind entity br.org.shift.persistencia.Scripts on table Scripts
2009-06-02 14:40:45,421 DEBUG hibernate.cfg.AnnotationBinder -> Processing br.org.shift.persistencia.Scripts property annotation
2009-06-02 14:40:45,421 DEBUG hibernate.cfg.AnnotationBinder -> Processing br.org.shift.persistencia.Scripts field annotation
2009-06-02 14:40:45,421 DEBUG hibernate.cfg.AnnotationBinder -> Processing annotations of br.org.shift.persistencia.Scripts.idScripts
2009-06-02 14:40:45,421 DEBUG hibernate.cfg.Ejb3Column -> Binding column idScripts. Unique false
2009-06-02 14:40:45,421 DEBUG hibernate.cfg.AnnotationBinder -> idScripts is an id
2009-06-02 14:40:45,421 DEBUG cfg.annotations.SimpleValueBinder -> building SimpleValue for idScripts
2009-06-02 14:40:45,421 DEBUG cfg.annotations.PropertyBinder -> Building property idScripts
2009-06-02 14:40:45,421 DEBUG hibernate.cfg.AnnotationBinder -> Bind @Id on idScripts
2009-06-02 14:40:45,421 DEBUG hibernate.cfg.AnnotationBinder -> Processing annotations of br.org.shift.persistencia.Scripts.descScripts
2009-06-02 14:40:45,421 DEBUG hibernate.cfg.Ejb3Column -> Binding column descScripts. Unique false
2009-06-02 14:40:45,421 DEBUG cfg.annotations.PropertyBinder -> binding property descScripts with lazy=false
2009-06-02 14:40:45,421 DEBUG cfg.annotations.SimpleValueBinder -> building SimpleValue for descScripts
2009-06-02 14:40:45,421 DEBUG cfg.annotations.PropertyBinder -> Building property descScripts
2009-06-02 14:40:45,421 DEBUG hibernate.cfg.AnnotationBinder -> Processing annotations of br.org.shift.persistencia.Scripts.funcionario
2009-06-02 14:40:45,421 DEBUG hibernate.cfg.Ejb3Column -> Binding column idFuncionario. Unique false
2009-06-02 14:40:45,421 DEBUG hibernate.cfg.Ejb3Column -> Binding column funcionario. Unique false
2009-06-02 14:40:45,421 DEBUG cfg.annotations.PropertyBinder -> Building property funcionario
2009-06-02 14:40:45,421 DEBUG hibernate.cfg.AnnotationBinder -> Processing annotations of br.org.shift.persistencia.Scripts.idFuncionario
2009-06-02 14:40:45,421 DEBUG hibernate.cfg.Ejb3Column -> Binding column idFuncionario. Unique false
2009-06-02 14:40:45,421 DEBUG cfg.annotations.PropertyBinder -> binding property idFuncionario with lazy=false
2009-06-02 14:40:45,421 DEBUG cfg.annotations.SimpleValueBinder -> building SimpleValue for idFuncionario
2009-06-02 14:40:45,421 DEBUG cfg.annotations.PropertyBinder -> Building property idFuncionario
2009-06-02 14:40:45,421 DEBUG hibernate.cfg.AnnotationBinder -> Processing annotations of br.org.shift.persistencia.Scripts.nomeScripts
2009-06-02 14:40:45,421 DEBUG hibernate.cfg.Ejb3Column -> Binding column nomeScripts. Unique false
2009-06-02 14:40:45,421 DEBUG cfg.annotations.PropertyBinder -> binding property nomeScripts with lazy=false
2009-06-02 14:40:45,421 DEBUG cfg.annotations.SimpleValueBinder -> building SimpleValue for nomeScripts
2009-06-02 14:40:45,421 DEBUG cfg.annotations.PropertyBinder -> Building property nomeScripts
2009-06-02 14:40:45,421 DEBUG hibernate.cfg.AnnotationBinder -> Processing annotations of br.org.shift.persistencia.Scripts.scripts
2009-06-02 14:40:45,421 DEBUG hibernate.cfg.Ejb3Column -> Binding column scripts. Unique false
2009-06-02 14:40:45,421 DEBUG cfg.annotations.PropertyBinder -> binding property scripts with lazy=false
2009-06-02 14:40:45,421 DEBUG cfg.annotations.SimpleValueBinder -> building SimpleValue for scripts
2009-06-02 14:40:45,421 DEBUG cfg.annotations.PropertyBinder -> Building property scripts
2009-06-02 14:40:45,421 INFO hibernate.cfg.AnnotationBinder -> Binding entity from annotated class: br.org.shift.persistencia.Suporte
2009-06-02 14:40:45,421 DEBUG hibernate.cfg.Ejb3Column -> Binding column DTYPE. Unique false
2009-06-02 14:40:45,421 DEBUG cfg.annotations.EntityBinder -> Import with entity name Suporte
2009-06-02 14:40:45,421 INFO cfg.annotations.EntityBinder -> Bind entity br.org.shift.persistencia.Suporte on table Suporte
2009-06-02 14:40:45,421 DEBUG hibernate.cfg.AnnotationBinder -> Processing br.org.shift.persistencia.Suporte property annotation
2009-06-02 14:40:45,421 DEBUG hibernate.cfg.AnnotationBinder -> Processing br.org.shift.persistencia.Suporte field annotation
2009-06-02 14:40:45,421 DEBUG hibernate.cfg.AnnotationBinder -> Processing annotations of br.org.shift.persistencia.Suporte.idSuporte
2009-06-02 14:40:45,437 DEBUG hibernate.cfg.Ejb3Column -> Binding column idSuporte. Unique false
2009-06-02 14:40:45,437 DEBUG hibernate.cfg.AnnotationBinder -> idSuporte is an id
2009-06-02 14:40:45,437 DEBUG cfg.annotations.SimpleValueBinder -> building SimpleValue for idSuporte
2009-06-02 14:40:45,437 DEBUG cfg.annotations.PropertyBinder -> Building property idSuporte
2009-06-02 14:40:45,437 DEBUG hibernate.cfg.AnnotationBinder -> Bind @Id on idSuporte
2009-06-02 14:40:45,437 DEBUG hibernate.cfg.AnnotationBinder -> Processing annotations of br.org.shift.persistencia.Suporte.cliente
2009-06-02 14:40:45,437 DEBUG hibernate.cfg.Ejb3Column -> Binding column idCliente. Unique false
2009-06-02 14:40:45,437 DEBUG hibernate.cfg.Ejb3Column -> Binding column cliente. Unique false
2009-06-02 14:40:45,437 DEBUG cfg.annotations.PropertyBinder -> Building property cliente
2009-06-02 14:40:45,437 DEBUG hibernate.cfg.AnnotationBinder -> Processing annotations of br.org.shift.persistencia.Suporte.cliente_idCliente
2009-06-02 14:40:45,437 DEBUG hibernate.cfg.Ejb3Column -> Binding column cliente_idCliente. Unique false
2009-06-02 14:40:45,437 DEBUG cfg.annotations.PropertyBinder -> binding property cliente_idCliente with lazy=false
2009-06-02 14:40:45,437 DEBUG cfg.annotations.SimpleValueBinder -> building SimpleValue for cliente_idCliente
2009-06-02 14:40:45,437 DEBUG cfg.annotations.PropertyBinder -> Building property cliente_idCliente
2009-06-02 14:40:45,437 DEBUG hibernate.cfg.AnnotationBinder -> Processing annotations of br.org.shift.persistencia.Suporte.contato
2009-06-02 14:40:45,437 DEBUG hibernate.cfg.Ejb3Column -> Binding column idContato. Unique false
2009-06-02 14:40:45,437 DEBUG hibernate.cfg.Ejb3Column -> Binding column contato. Unique false
2009-06-02 14:40:45,437 DEBUG cfg.annotations.PropertyBinder -> Building property contato
2009-06-02 14:40:45,437 DEBUG hibernate.cfg.AnnotationBinder -> Processing annotations of br.org.shift.persistencia.Suporte.contato_idContato
2009-06-02 14:40:45,437 DEBUG hibernate.cfg.Ejb3Column -> Binding column contato_idContato. Unique false
2009-06-02 14:40:45,453 DEBUG cfg.annotations.PropertyBinder -> binding property contato_idContato with lazy=false
2009-06-02 14:40:45,453 DEBUG cfg.annotations.SimpleValueBinder -> building SimpleValue for contato_idContato
2009-06-02 14:40:45,453 DEBUG cfg.annotations.PropertyBinder -> Building property contato_idContato
2009-06-02 14:40:45,453 DEBUG hibernate.cfg.AnnotationBinder -> Processing annotations of br.org.shift.persistencia.Suporte.datasSuporte
2009-06-02 14:40:45,453 DEBUG hibernate.cfg.Ejb3Column -> Binding column null. Unique false
2009-06-02 14:40:45,453 DEBUG hibernate.cfg.Ejb3Column -> Binding column datasSuporte. Unique false
2009-06-02 14:40:45,453 DEBUG hibernate.cfg.Ejb3Column -> Binding column null. Unique false
2009-06-02 14:40:45,453 DEBUG hibernate.cfg.Ejb3Column -> Binding column element. Unique false
2009-06-02 14:40:45,453 DEBUG hibernate.cfg.Ejb3Column -> Binding column mapkey. Unique false
2009-06-02 14:40:45,453 DEBUG hibernate.cfg.Ejb3Column -> Binding column null. Unique false
2009-06-02 14:40:45,453 DEBUG hibernate.cfg.Ejb3Column -> Binding column null. Unique false
2009-06-02 14:40:45,453 DEBUG hibernate.cfg.Ejb3Column -> Binding column null. Unique false
2009-06-02 14:40:45,453 DEBUG cfg.annotations.CollectionBinder -> Collection role: br.org.shift.persistencia.Suporte.datasSuporte
2009-06-02 14:40:45,453 DEBUG cfg.annotations.PropertyBinder -> Building property datasSuporte
2009-06-02 14:40:45,453 DEBUG hibernate.cfg.AnnotationBinder -> Processing annotations of br.org.shift.persistencia.Suporte.descAtividade
2009-06-02 14:40:45,453 DEBUG hibernate.cfg.Ejb3Column -> Binding column descAtividade. Unique false
2009-06-02 14:40:45,453 DEBUG cfg.annotations.PropertyBinder -> binding property descAtividade with lazy=false
2009-06-02 14:40:45,453 DEBUG cfg.annotations.SimpleValueBinder -> building SimpleValue for descAtividade
2009-06-02 14:40:45,453 DEBUG cfg.annotations.PropertyBinder -> Building property descAtividade
2009-06-02 14:40:45,453 DEBUG hibernate.cfg.AnnotationBinder -> Processing annotations of br.org.shift.persistencia.Suporte.funcionario
2009-06-02 14:40:45,453 DEBUG hibernate.cfg.Ejb3Column -> Binding column null. Unique false
2009-06-02 14:40:45,453 DEBUG hibernate.cfg.Ejb3Column -> Binding column element. Unique false
2009-06-02 14:40:45,453 DEBUG hibernate.cfg.Ejb3Column -> Binding column mapkey. Unique false
2009-06-02 14:40:45,453 DEBUG hibernate.cfg.Ejb3Column -> Binding column null. Unique false
2009-06-02 14:40:45,453 DEBUG hibernate.cfg.Ejb3Column -> Binding column idSuporte. Unique false
2009-06-02 14:40:45,453 DEBUG hibernate.cfg.Ejb3Column -> Binding column idFuncionario. Unique false
2009-06-02 14:40:45,453 DEBUG cfg.annotations.CollectionBinder -> Collection role: br.org.shift.persistencia.Suporte.funcionario
2009-06-02 14:40:45,453 DEBUG cfg.annotations.PropertyBinder -> Building property funcionario
2009-06-02 14:40:45,453 DEBUG hibernate.cfg.AnnotationBinder -> Processing annotations of br.org.shift.persistencia.Suporte.horasPrevistas
2009-06-02 14:40:45,453 DEBUG hibernate.cfg.Ejb3Column -> Binding column horasPrevistas. Unique false
2009-06-02 14:40:45,453 DEBUG cfg.annotations.PropertyBinder -> binding property horasPrevistas with lazy=false
2009-06-02 14:40:45,453 DEBUG cfg.annotations.SimpleValueBinder -> building SimpleValue for horasPrevistas
2009-06-02 14:40:45,453 DEBUG cfg.annotations.PropertyBinder -> Building property horasPrevistas
2009-06-02 14:40:45,453 DEBUG hibernate.cfg.AnnotationBinder -> Processing annotations of br.org.shift.persistencia.Suporte.horasTotais
2009-06-02 14:40:45,453 DEBUG hibernate.cfg.Ejb3Column -> Binding column horasTotais. Unique false
2009-06-02 14:40:45,453 DEBUG cfg.annotations.PropertyBinder -> binding property horasTotais with lazy=false
2009-06-02 14:40:45,453 DEBUG cfg.annotations.SimpleValueBinder -> building SimpleValue for horasTotais
2009-06-02 14:40:45,453 DEBUG cfg.annotations.PropertyBinder -> Building property horasTotais
2009-06-02 14:40:45,453 DEBUG hibernate.cfg.AnnotationBinder -> Processing annotations of br.org.shift.persistencia.Suporte.nivelSeveridade
2009-06-02 14:40:45,453 DEBUG hibernate.cfg.Ejb3Column -> Binding column nivelSeveridade. Unique false
2009-06-02 14:40:45,453 DEBUG cfg.annotations.PropertyBinder -> binding property nivelSeveridade with lazy=false
2009-06-02 14:40:45,453 DEBUG cfg.annotations.SimpleValueBinder -> building SimpleValue for nivelSeveridade
2009-06-02 14:40:45,453 DEBUG cfg.annotations.PropertyBinder -> Building property nivelSeveridade
2009-06-02 14:40:45,453 DEBUG hibernate.cfg.AnnotationBinder -> Processing annotations of br.org.shift.persistencia.Suporte.tecnologia
2009-06-02 14:40:45,453 DEBUG hibernate.cfg.Ejb3Column -> Binding column null. Unique false
2009-06-02 14:40:45,453 DEBUG hibernate.cfg.Ejb3Column -> Binding column element. Unique false
2009-06-02 14:40:45,453 DEBUG hibernate.cfg.Ejb3Column -> Binding column mapkey. Unique false
2009-06-02 14:40:45,453 DEBUG hibernate.cfg.Ejb3Column -> Binding column null. Unique false
2009-06-02 14:40:45,453 DEBUG hibernate.cfg.Ejb3Column -> Binding column idSuporte. Unique false
2009-06-02 14:40:45,453 DEBUG hibernate.cfg.Ejb3Column -> Binding column idTecnologia. Unique false
2009-06-02 14:40:45,453 DEBUG cfg.annotations.CollectionBinder -> Collection role: br.org.shift.persistencia.Suporte.tecnologia
2009-06-02 14:40:45,453 DEBUG cfg.annotations.PropertyBinder -> Building property tecnologia
2009-06-02 14:40:45,453 INFO hibernate.cfg.AnnotationBinder -> Binding entity from annotated class: br.org.shift.persistencia.SuporteTecnologia
2009-06-02 14:40:45,453 DEBUG hibernate.cfg.Ejb3Column -> Binding column DTYPE. Unique false
2009-06-02 14:40:45,453 DEBUG cfg.annotations.EntityBinder -> Import with entity name SuporteTecnologia
2009-06-02 14:40:45,453 INFO cfg.annotations.EntityBinder -> Bind entity br.org.shift.persistencia.SuporteTecnologia on table SuporteTecnologia
2009-06-02 14:40:45,453 DEBUG hibernate.cfg.AnnotationBinder -> Processing br.org.shift.persistencia.SuporteTecnologia property annotation
2009-06-02 14:40:45,453 DEBUG hibernate.cfg.AnnotationBinder -> Processing br.org.shift.persistencia.SuporteTecnologia field annotation
2009-06-02 14:40:45,453 DEBUG hibernate.cfg.AnnotationBinder -> Processing annotations of br.org.shift.persistencia.SuporteTecnologia.idTecnologia
2009-06-02 14:40:45,453 DEBUG hibernate.cfg.Ejb3Column -> Binding column idTecnologia. Unique false
2009-06-02 14:40:45,453 DEBUG hibernate.cfg.AnnotationBinder -> idTecnologia is an id
2009-06-02 14:40:45,453 DEBUG cfg.annotations.SimpleValueBinder -> building SimpleValue for idTecnologia
2009-06-02 14:40:45,453 DEBUG cfg.annotations.PropertyBinder -> Building property idTecnologia
2009-06-02 14:40:45,453 DEBUG hibernate.cfg.AnnotationBinder -> Bind @Id on idTecnologia
2009-06-02 14:40:45,453 DEBUG hibernate.cfg.AnnotationBinder -> Processing annotations of br.org.shift.persistencia.SuporteTecnologia.idSuporte
2009-06-02 14:40:45,453 DEBUG hibernate.cfg.Ejb3Column -> Binding column idSuporte. Unique false
2009-06-02 14:40:45,453 DEBUG hibernate.cfg.AnnotationBinder -> idSuporte is an id
2009-06-02 14:40:45,453 DEBUG cfg.annotations.SimpleValueBinder -> building SimpleValue for idSuporte
2009-06-02 14:40:45,453 DEBUG cfg.annotations.PropertyBinder -> Building property idSuporte
2009-06-02 14:40:45,453 DEBUG hibernate.cfg.AnnotationBinder -> Bind @Id on idSuporte
2009-06-02 14:40:45,453 INFO hibernate.cfg.AnnotationBinder -> Binding entity from annotated class: br.org.shift.persistencia.Tecnologia
2009-06-02 14:40:45,453 DEBUG hibernate.cfg.Ejb3Column -> Binding column DTYPE. Unique false
2009-06-02 14:40:45,453 DEBUG cfg.annotations.EntityBinder -> Import with entity name Tecnologia
2009-06-02 14:40:45,453 INFO cfg.annotations.EntityBinder -> Bind entity br.org.shift.persistencia.Tecnologia on table Tecnologia
2009-06-02 14:40:45,453 DEBUG hibernate.cfg.AnnotationBinder -> Processing br.org.shift.persistencia.Tecnologia property annotation
2009-06-02 14:40:45,453 DEBUG hibernate.cfg.AnnotationBinder -> Processing br.org.shift.persistencia.Tecnologia field annotation
2009-06-02 14:40:45,468 DEBUG hibernate.cfg.AnnotationBinder -> Processing annotations of br.org.shift.persistencia.Tecnologia.idTecnologia
2009-06-02 14:40:45,468 DEBUG hibernate.cfg.Ejb3Column -> Binding column idTecnologia. Unique false
2009-06-02 14:40:45,468 DEBUG hibernate.cfg.AnnotationBinder -> idTecnologia is an id
2009-06-02 14:40:45,468 DEBUG cfg.annotations.SimpleValueBinder -> building SimpleValue for idTecnologia
2009-06-02 14:40:45,468 DEBUG cfg.annotations.PropertyBinder -> Building property idTecnologia
2009-06-02 14:40:45,468 DEBUG hibernate.cfg.AnnotationBinder -> Bind @Id on idTecnologia
2009-06-02 14:40:45,468 DEBUG hibernate.cfg.AnnotationBinder -> Processing annotations of br.org.shift.persistencia.Tecnologia.descTecnologia
2009-06-02 14:40:45,468 DEBUG hibernate.cfg.Ejb3Column -> Binding column descTecnologia. Unique false
2009-06-02 14:40:45,468 DEBUG cfg.annotations.PropertyBinder -> binding property descTecnologia with lazy=false
2009-06-02 14:40:45,468 DEBUG cfg.annotations.SimpleValueBinder -> building SimpleValue for descTecnologia
2009-06-02 14:40:45,468 DEBUG cfg.annotations.PropertyBinder -> Building property descTecnologia
2009-06-02 14:40:45,468 DEBUG hibernate.cfg.AnnotationBinder -> Processing annotations of br.org.shift.persistencia.Tecnologia.idTipoTecnologia
2009-06-02 14:40:45,468 DEBUG hibernate.cfg.Ejb3Column -> Binding column idTipoTecnologia. Unique false
2009-06-02 14:40:45,468 DEBUG cfg.annotations.PropertyBinder -> binding property idTipoTecnologia with lazy=false
2009-06-02 14:40:45,468 DEBUG cfg.annotations.SimpleValueBinder -> building SimpleValue for idTipoTecnologia
2009-06-02 14:40:45,468 DEBUG cfg.annotations.PropertyBinder -> Building property idTipoTecnologia
2009-06-02 14:40:45,468 DEBUG hibernate.cfg.AnnotationBinder -> Processing annotations of br.org.shift.persistencia.Tecnologia.nomeTecnologia
2009-06-02 14:40:45,468 DEBUG hibernate.cfg.Ejb3Column -> Binding column nomeTecnologia. Unique false
2009-06-02 14:40:45,468 DEBUG cfg.annotations.PropertyBinder -> binding property nomeTecnologia with lazy=false
2009-06-02 14:40:45,468 DEBUG cfg.annotations.SimpleValueBinder -> building SimpleValue for nomeTecnologia
2009-06-02 14:40:45,468 DEBUG cfg.annotations.PropertyBinder -> Building property nomeTecnologia
2009-06-02 14:40:45,468 DEBUG hibernate.cfg.AnnotationBinder -> Processing annotations of br.org.shift.persistencia.Tecnologia.parceiro
2009-06-02 14:40:45,468 DEBUG hibernate.cfg.Ejb3Column -> Binding column null. Unique false
2009-06-02 14:40:45,468 DEBUG hibernate.cfg.Ejb3Column -> Binding column element. Unique false
2009-06-02 14:40:45,468 DEBUG hibernate.cfg.Ejb3Column -> Binding column mapkey. Unique false
2009-06-02 14:40:45,468 DEBUG hibernate.cfg.Ejb3Column -> Binding column null. Unique false
2009-06-02 14:40:45,468 DEBUG hibernate.cfg.Ejb3Column -> Binding column idTecnologia. Unique false
2009-06-02 14:40:45,468 DEBUG hibernate.cfg.Ejb3Column -> Binding column idParceiro. Unique false
2009-06-02 14:40:45,468 DEBUG cfg.annotations.CollectionBinder -> Collection role: br.org.shift.persistencia.Tecnologia.parceiro
2009-06-02 14:40:45,468 DEBUG cfg.annotations.PropertyBinder -> Building property parceiro
2009-06-02 14:40:45,468 DEBUG hibernate.cfg.AnnotationBinder -> Processing annotations of br.org.shift.persistencia.Tecnologia.projeto
2009-06-02 14:40:45,468 DEBUG hibernate.cfg.Ejb3Column -> Binding column null. Unique false
2009-06-02 14:40:45,468 DEBUG hibernate.cfg.Ejb3Column -> Binding column element. Unique false
2009-06-02 14:40:45,468 DEBUG hibernate.cfg.Ejb3Column -> Binding column mapkey. Unique false
2009-06-02 14:40:45,468 DEBUG hibernate.cfg.Ejb3Column -> Binding column null. Unique false
2009-06-02 14:40:45,468 DEBUG hibernate.cfg.Ejb3Column -> Binding column idTecnologia. Unique false
2009-06-02 14:40:45,468 DEBUG hibernate.cfg.Ejb3Column -> Binding column idProjeto. Unique false
2009-06-02 14:40:45,468 DEBUG cfg.annotations.CollectionBinder -> Collection role: br.org.shift.persistencia.Tecnologia.projeto
2009-06-02 14:40:45,468 DEBUG cfg.annotations.PropertyBinder -> Building property projeto
2009-06-02 14:40:45,468 DEBUG hibernate.cfg.AnnotationBinder -> Processing annotations of br.org.shift.persistencia.Tecnologia.suporte
2009-06-02 14:40:45,468 DEBUG hibernate.cfg.Ejb3Column -> Binding column null. Unique false
2009-06-02 14:40:45,468 DEBUG hibernate.cfg.Ejb3Column -> Binding column element. Unique false
2009-06-02 14:40:45,468 DEBUG hibernate.cfg.Ejb3Column -> Binding column mapkey. Unique false
2009-06-02 14:40:45,468 DEBUG hibernate.cfg.Ejb3Column -> Binding column null. Unique false
2009-06-02 14:40:45,468 DEBUG hibernate.cfg.Ejb3Column -> Binding column idTecnologia. Unique false
2009-06-02 14:40:45,468 DEBUG hibernate.cfg.Ejb3Column -> Binding column idSuporte. Unique false
2009-06-02 14:40:45,468 DEBUG cfg.annotations.CollectionBinder -> Collection role: br.org.shift.persistencia.Tecnologia.suporte
2009-06-02 14:40:45,468 DEBUG cfg.annotations.PropertyBinder -> Building property suporte
2009-06-02 14:40:45,468 DEBUG hibernate.cfg.AnnotationBinder -> Processing annotations of br.org.shift.persistencia.Tecnologia.tipoTecnologia
2009-06-02 14:40:45,468 DEBUG hibernate.cfg.Ejb3Column -> Binding column idTipoTecnologia. Unique false
2009-06-02 14:40:45,468 DEBUG hibernate.cfg.Ejb3Column -> Binding column tipoTecnologia. Unique false
2009-06-02 14:40:45,468 DEBUG cfg.annotations.PropertyBinder -> Building property tipoTecnologia
2009-06-02 14:40:45,468 INFO hibernate.cfg.AnnotationBinder -> Binding entity from annotated class: br.org.shift.persistencia.TelefoneContato
2009-06-02 14:40:45,468 DEBUG hibernate.cfg.Ejb3Column -> Binding column DTYPE. Unique false
2009-06-02 14:40:45,468 DEBUG cfg.annotations.EntityBinder -> Import with entity name TelefoneContato
2009-06-02 14:40:45,468 INFO cfg.annotations.EntityBinder -> Bind entity br.org.shift.persistencia.TelefoneContato on table TelefoneContato
2009-06-02 14:40:45,468 DEBUG hibernate.cfg.AnnotationBinder -> Processing br.org.shift.persistencia.TelefoneContato property annotation
2009-06-02 14:40:45,468 DEBUG hibernate.cfg.AnnotationBinder -> Processing br.org.shift.persistencia.TelefoneContato field annotation
2009-06-02 14:40:45,468 DEBUG hibernate.cfg.AnnotationBinder -> Processing annotations of br.org.shift.persistencia.TelefoneContato.idTelefoneContato
2009-06-02 14:40:45,468 DEBUG hibernate.cfg.Ejb3Column -> Binding column idTelefoneContato. Unique false
2009-06-02 14:40:45,468 DEBUG hibernate.cfg.AnnotationBinder -> idTelefoneContato is an id
2009-06-02 14:40:45,468 DEBUG cfg.annotations.SimpleValueBinder -> building SimpleValue for idTelefoneContato
2009-06-02 14:40:45,468 DEBUG cfg.annotations.PropertyBinder -> Building property idTelefoneContato
2009-06-02 14:40:45,468 DEBUG hibernate.cfg.AnnotationBinder -> Bind @Id on idTelefoneContato
2009-06-02 14:40:45,468 DEBUG hibernate.cfg.AnnotationBinder -> Processing annotations of br.org.shift.persistencia.TelefoneContato.contato
2009-06-02 14:40:45,468 DEBUG hibernate.cfg.Ejb3Column -> Binding column idContato. Unique false
2009-06-02 14:40:45,468 DEBUG hibernate.cfg.Ejb3Column -> Binding column contato. Unique false
2009-06-02 14:40:45,468 DEBUG cfg.annotations.PropertyBinder -> Building property contato
2009-06-02 14:40:45,484 DEBUG hibernate.cfg.AnnotationBinder -> Processing annotations of br.org.shift.persistencia.TelefoneContato.descTel
2009-06-02 14:40:45,484 DEBUG hibernate.cfg.Ejb3Column -> Binding column descTel. Unique false
2009-06-02 14:40:45,484 DEBUG cfg.annotations.PropertyBinder -> binding property descTel with lazy=false
2009-06-02 14:40:45,484 DEBUG cfg.annotations.SimpleValueBinder -> building SimpleValue for descTel
2009-06-02 14:40:45,484 DEBUG cfg.annotations.PropertyBinder -> Building property descTel
2009-06-02 14:40:45,484 DEBUG hibernate.cfg.AnnotationBinder -> Processing annotations of br.org.shift.persistencia.TelefoneContato.idContato
2009-06-02 14:40:45,484 DEBUG hibernate.cfg.Ejb3Column -> Binding column idContato. Unique false
2009-06-02 14:40:45,484 DEBUG cfg.annotations.PropertyBinder -> binding property idContato with lazy=false
2009-06-02 14:40:45,484 DEBUG cfg.annotations.SimpleValueBinder -> building SimpleValue for idContato
2009-06-02 14:40:45,484 DEBUG cfg.annotations.PropertyBinder -> Building property idContato
2009-06-02 14:40:45,484 DEBUG hibernate.cfg.AnnotationBinder -> Processing annotations of br.org.shift.persistencia.TelefoneContato.telefone
2009-06-02 14:40:45,484 DEBUG hibernate.cfg.Ejb3Column -> Binding column telefone. Unique false
2009-06-02 14:40:45,484 DEBUG cfg.annotations.PropertyBinder -> binding property telefone with lazy=false
2009-06-02 14:40:45,484 DEBUG cfg.annotations.SimpleValueBinder -> building SimpleValue for telefone
2009-06-02 14:40:45,484 DEBUG cfg.annotations.PropertyBinder -> Building property telefone
2009-06-02 14:40:45,484 INFO hibernate.cfg.AnnotationBinder -> Binding entity from annotated class: br.org.shift.persistencia.TelefoneFuncionario
2009-06-02 14:40:45,484 DEBUG hibernate.cfg.Ejb3Column -> Binding column DTYPE. Unique false
2009-06-02 14:40:45,484 DEBUG cfg.annotations.EntityBinder -> Import with entity name TelefoneFuncionario
2009-06-02 14:40:45,484 INFO cfg.annotations.EntityBinder -> Bind entity br.org.shift.persistencia.TelefoneFuncionario on table TelefoneFuncionario
2009-06-02 14:40:45,484 DEBUG hibernate.cfg.AnnotationBinder -> Processing br.org.shift.persistencia.TelefoneFuncionario property annotation
2009-06-02 14:40:45,484 DEBUG hibernate.cfg.AnnotationBinder -> Processing br.org.shift.persistencia.TelefoneFuncionario field annotation
2009-06-02 14:40:45,484 DEBUG hibernate.cfg.AnnotationBinder -> Processing annotations of br.org.shift.persistencia.TelefoneFuncionario.idTelefoneFuncionario
2009-06-02 14:40:45,484 DEBUG hibernate.cfg.Ejb3Column -> Binding column idTelefoneFuncionario. Unique false
2009-06-02 14:40:45,484 DEBUG hibernate.cfg.AnnotationBinder -> idTelefoneFuncionario is an id
2009-06-02 14:40:45,484 DEBUG cfg.annotations.SimpleValueBinder -> building SimpleValue for idTelefoneFuncionario
2009-06-02 14:40:45,484 DEBUG cfg.annotations.PropertyBinder -> Building property idTelefoneFuncionario
2009-06-02 14:40:45,484 DEBUG hibernate.cfg.AnnotationBinder -> Bind @Id on idTelefoneFuncionario
2009-06-02 14:40:45,484 DEBUG hibernate.cfg.AnnotationBinder -> Processing annotations of br.org.shift.persistencia.TelefoneFuncionario.descTel
2009-06-02 14:40:45,484 DEBUG hibernate.cfg.Ejb3Column -> Binding column descTel. Unique false
2009-06-02 14:40:45,484 DEBUG cfg.annotations.PropertyBinder -> binding property descTel with lazy=false
2009-06-02 14:40:45,484 DEBUG cfg.annotations.SimpleValueBinder -> building SimpleValue for descTel
2009-06-02 14:40:45,484 DEBUG cfg.annotations.PropertyBinder -> Building property descTel
2009-06-02 14:40:45,484 DEBUG hibernate.cfg.AnnotationBinder -> Processing annotations of br.org.shift.persistencia.TelefoneFuncionario.funcionario
2009-06-02 14:40:45,484 DEBUG hibernate.cfg.Ejb3Column -> Binding column idFuncionario. Unique false
2009-06-02 14:40:45,484 DEBUG hibernate.cfg.Ejb3Column -> Binding column funcionario. Unique false
2009-06-02 14:40:45,484 DEBUG cfg.annotations.PropertyBinder -> Building property funcionario
2009-06-02 14:40:45,484 DEBUG hibernate.cfg.AnnotationBinder -> Processing annotations of br.org.shift.persistencia.TelefoneFuncionario.idFuncionario
2009-06-02 14:40:45,484 DEBUG hibernate.cfg.Ejb3Column -> Binding column idFuncionario. Unique false
2009-06-02 14:40:45,484 DEBUG cfg.annotations.PropertyBinder -> binding property idFuncionario with lazy=false
2009-06-02 14:40:45,484 DEBUG cfg.annotations.SimpleValueBinder -> building SimpleValue for idFuncionario
2009-06-02 14:40:45,484 DEBUG cfg.annotations.PropertyBinder -> Building property idFuncionario
2009-06-02 14:40:45,484 DEBUG hibernate.cfg.AnnotationBinder -> Processing annotations of br.org.shift.persistencia.TelefoneFuncionario.telefone
2009-06-02 14:40:45,484 DEBUG hibernate.cfg.Ejb3Column -> Binding column telefone. Unique false
2009-06-02 14:40:45,484 DEBUG cfg.annotations.PropertyBinder -> binding property telefone with lazy=false
2009-06-02 14:40:45,484 DEBUG cfg.annotations.SimpleValueBinder -> building SimpleValue for telefone
2009-06-02 14:40:45,484 DEBUG cfg.annotations.PropertyBinder -> Building property telefone
2009-06-02 14:40:45,484 INFO hibernate.cfg.AnnotationBinder -> Binding entity from annotated class: br.org.shift.persistencia.TipoTecnologia
2009-06-02 14:40:45,484 DEBUG hibernate.cfg.Ejb3Column -> Binding column DTYPE. Unique false
2009-06-02 14:40:45,484 DEBUG cfg.annotations.EntityBinder -> Import with entity name TipoTecnologia
2009-06-02 14:40:45,484 INFO cfg.annotations.EntityBinder -> Bind entity br.org.shift.persistencia.TipoTecnologia on table TipoTecnologia
2009-06-02 14:40:45,484 DEBUG hibernate.cfg.AnnotationBinder -> Processing br.org.shift.persistencia.TipoTecnologia property annotation
2009-06-02 14:40:45,484 DEBUG hibernate.cfg.AnnotationBinder -> Processing br.org.shift.persistencia.TipoTecnologia field annotation
2009-06-02 14:40:45,500 DEBUG hibernate.cfg.AnnotationBinder -> Processing annotations of br.org.shift.persistencia.TipoTecnologia.idTipoTecnologia
2009-06-02 14:40:45,500 DEBUG hibernate.cfg.Ejb3Column -> Binding column idTipoTecnologia. Unique false
2009-06-02 14:40:45,500 DEBUG hibernate.cfg.AnnotationBinder -> idTipoTecnologia is an id
2009-06-02 14:40:45,500 DEBUG cfg.annotations.SimpleValueBinder -> building SimpleValue for idTipoTecnologia
2009-06-02 14:40:45,500 DEBUG cfg.annotations.PropertyBinder -> Building property idTipoTecnologia
2009-06-02 14:40:45,500 DEBUG hibernate.cfg.AnnotationBinder -> Bind @Id on idTipoTecnologia
2009-06-02 14:40:45,500 DEBUG hibernate.cfg.AnnotationBinder -> Processing annotations of br.org.shift.persistencia.TipoTecnologia.descTipo
2009-06-02 14:40:45,500 DEBUG hibernate.cfg.Ejb3Column -> Binding column descTipo. Unique false
2009-06-02 14:40:45,500 DEBUG cfg.annotations.PropertyBinder -> binding property descTipo with lazy=false
2009-06-02 14:40:45,500 DEBUG cfg.annotations.SimpleValueBinder -> building SimpleValue for descTipo
2009-06-02 14:40:45,500 DEBUG cfg.annotations.PropertyBinder -> Building property descTipo
2009-06-02 14:40:45,500 DEBUG hibernate.cfg.AnnotationBinder -> Processing annotations of br.org.shift.persistencia.TipoTecnologia.nomeTecnologia
2009-06-02 14:40:45,500 DEBUG hibernate.cfg.Ejb3Column -> Binding column nomeTecnologia. Unique false
2009-06-02 14:40:45,500 DEBUG cfg.annotations.PropertyBinder -> binding property nomeTecnologia with lazy=false
2009-06-02 14:40:45,500 DEBUG cfg.annotations.SimpleValueBinder -> building SimpleValue for nomeTecnologia
2009-06-02 14:40:45,500 DEBUG cfg.annotations.PropertyBinder -> Building property nomeTecnologia
2009-06-02 14:40:45,500 DEBUG hibernate.cfg.AnnotationBinder -> Processing annotations of br.org.shift.persistencia.TipoTecnologia.tecnologia
2009-06-02 14:40:45,500 DEBUG hibernate.cfg.Ejb3Column -> Binding column null. Unique false
2009-06-02 14:40:45,500 DEBUG hibernate.cfg.Ejb3Column -> Binding column tecnologia. Unique false
2009-06-02 14:40:45,500 DEBUG hibernate.cfg.Ejb3Column -> Binding column null. Unique false
2009-06-02 14:40:45,500 DEBUG hibernate.cfg.Ejb3Column -> Binding column element. Unique false
2009-06-02 14:40:45,500 DEBUG hibernate.cfg.Ejb3Column -> Binding column mapkey. Unique false
2009-06-02 14:40:45,500 DEBUG hibernate.cfg.Ejb3Column -> Binding column null. Unique false
2009-06-02 14:40:45,500 DEBUG hibernate.cfg.Ejb3Column -> Binding column null. Unique false
2009-06-02 14:40:45,500 DEBUG hibernate.cfg.Ejb3Column -> Binding column null. Unique false
2009-06-02 14:40:45,500 DEBUG cfg.annotations.CollectionBinder -> Collection role: br.org.shift.persistencia.TipoTecnologia.tecnologia
2009-06-02 14:40:45,500 DEBUG cfg.annotations.PropertyBinder -> Building property tecnologia
2009-06-02 14:40:45,500 DEBUG hibernate.cfg.AnnotationConfiguration -> processing fk mappings (*ToOne and JoinedSubclass)
2009-06-02 14:40:45,703 DEBUG hibernate.cfg.Configuration -> processing extends queue
2009-06-02 14:40:45,703 DEBUG hibernate.cfg.Configuration -> processing collection mappings
2009-06-02 14:40:45,703 DEBUG hibernate.cfg.CollectionSecondPass -> Second pass for collection: br.org.shift.persistencia.Tecnologia.suporte
2009-06-02 14:40:45,703 DEBUG cfg.annotations.CollectionBinder -> Binding as ManyToMany: br.org.shift.persistencia.Tecnologia.suporte
2009-06-02 14:40:45,718 DEBUG hibernate.cfg.CollectionSecondPass -> Mapped collection key: idTecnologia, element: idSuporte
2009-06-02 14:40:45,718 DEBUG hibernate.cfg.CollectionSecondPass -> Second pass for collection: br.org.shift.persistencia.Tecnologia.projeto
2009-06-02 14:40:45,718 DEBUG cfg.annotations.CollectionBinder -> Binding as ManyToMany: br.org.shift.persistencia.Tecnologia.projeto
2009-06-02 14:40:45,718 DEBUG hibernate.cfg.CollectionSecondPass -> Mapped collection key: idTecnologia, element: idProjeto
2009-06-02 14:40:45,718 DEBUG hibernate.cfg.CollectionSecondPass -> Second pass for collection: br.org.shift.persistencia.Tecnologia.parceiro
2009-06-02 14:40:45,718 DEBUG cfg.annotations.CollectionBinder -> Binding as ManyToMany: br.org.shift.persistencia.Tecnologia.parceiro
2009-06-02 14:40:45,718 DEBUG hibernate.cfg.CollectionSecondPass -> Mapped collection key: idTecnologia, element: idParceiro
2009-06-02 14:40:45,718 DEBUG hibernate.cfg.CollectionSecondPass -> Second pass for collection: br.org.shift.persistencia.Suporte.tecnologia
2009-06-02 14:40:45,718 DEBUG cfg.annotations.CollectionBinder -> Binding as ManyToMany: br.org.shift.persistencia.Suporte.tecnologia
2009-06-02 14:40:45,718 DEBUG hibernate.cfg.CollectionSecondPass -> Mapped collection key: idSuporte, element: idTecnologia
2009-06-02 14:40:45,718 DEBUG hibernate.cfg.CollectionSecondPass -> Second pass for collection: br.org.shift.persistencia.Suporte.funcionario
2009-06-02 14:40:45,718 DEBUG cfg.annotations.CollectionBinder -> Binding as ManyToMany: br.org.shift.persistencia.Suporte.funcionario
2009-06-02 14:40:45,718 DEBUG hibernate.cfg.CollectionSecondPass -> Mapped collection key: idSuporte, element: idFuncionario
2009-06-02 14:40:45,718 DEBUG hibernate.cfg.CollectionSecondPass -> Second pass for collection: br.org.shift.persistencia.Parceiro.tecnologia
2009-06-02 14:40:45,718 DEBUG cfg.annotations.CollectionBinder -> Binding as ManyToMany: br.org.shift.persistencia.Parceiro.tecnologia
2009-06-02 14:40:45,718 DEBUG hibernate.cfg.CollectionSecondPass -> Mapped collection key: idParceiro, element: idTecnologia
2009-06-02 14:40:45,718 DEBUG hibernate.cfg.CollectionSecondPass -> Second pass for collection: br.org.shift.persistencia.Parceiro.projeto
2009-06-02 14:40:45,718 DEBUG cfg.annotations.CollectionBinder -> Binding as ManyToMany: br.org.shift.persistencia.Parceiro.projeto
2009-06-02 14:40:45,718 DEBUG hibernate.cfg.CollectionSecondPass -> Mapped collection key: idParceiro, element: idProjeto
2009-06-02 14:40:45,718 DEBUG hibernate.cfg.CollectionSecondPass -> Second pass for collection: br.org.shift.persistencia.Funcionario.suporte
2009-06-02 14:40:45,718 DEBUG cfg.annotations.CollectionBinder -> Binding as ManyToMany: br.org.shift.persistencia.Funcionario.suporte
2009-06-02 14:40:45,718 DEBUG hibernate.cfg.CollectionSecondPass -> Mapped collection key: idFuncionario, element: idSuporte
2009-06-02 14:40:45,718 DEBUG hibernate.cfg.CollectionSecondPass -> Second pass for collection: br.org.shift.persistencia.Funcionario.projeto
2009-06-02 14:40:45,718 DEBUG cfg.annotations.CollectionBinder -> Binding as ManyToMany: br.org.shift.persistencia.Funcionario.projeto
2009-06-02 14:40:45,718 DEBUG hibernate.cfg.CollectionSecondPass -> Mapped collection key: idFuncionario, element: idProjeto
2009-06-02 14:40:45,718 DEBUG hibernate.cfg.CollectionSecondPass -> Second pass for collection: br.org.shift.persistencia.Contato.projeto
2009-06-02 14:40:45,718 DEBUG cfg.annotations.CollectionBinder -> Binding as ManyToMany: br.org.shift.persistencia.Contato.projeto
2009-06-02 14:40:45,718 DEBUG hibernate.cfg.CollectionSecondPass -> Mapped collection key: idContato, element: idProjeto
2009-06-02 14:40:45,718 DEBUG hibernate.cfg.CollectionSecondPass -> Second pass for collection: br.org.shift.persistencia.Contato.suporte
2009-06-02 14:40:45,718 DEBUG cfg.annotations.CollectionBinder -> Binding a OneToMany: br.org.shift.persistencia.Contato.suporte through a foreign key
2009-06-02 14:40:45,718 INFO cfg.annotations.CollectionBinder -> Mapping collection: br.org.shift.persistencia.Contato.suporte -> Suporte
2009-06-02 14:40:45,718 DEBUG cfg.annotations.TableBinder -> Retrieving property br.org.shift.persistencia.Suporte.contato
2009-06-02 14:40:45,718 DEBUG hibernate.cfg.CollectionSecondPass -> Mapped collection key: idContato, one-to-many: br.org.shift.persistencia.Suporte
2009-06-02 14:40:45,718 DEBUG hibernate.cfg.CollectionSecondPass -> Second pass for collection: br.org.shift.persistencia.Contato.telefoneContato
2009-06-02 14:40:45,718 DEBUG cfg.annotations.CollectionBinder -> Binding a OneToMany: br.org.shift.persistencia.Contato.telefoneContato through a foreign key
2009-06-02 14:40:45,718 INFO cfg.annotations.CollectionBinder -> Mapping collection: br.org.shift.persistencia.Contato.telefoneContato -> TelefoneContato
2009-06-02 14:40:45,718 DEBUG cfg.annotations.TableBinder -> Retrieving property br.org.shift.persistencia.TelefoneContato.contato
2009-06-02 14:40:45,718 DEBUG hibernate.cfg.CollectionSecondPass -> Mapped collection key: idContato, one-to-many: br.org.shift.persistencia.TelefoneContato
2009-06-02 14:40:45,718 DEBUG hibernate.cfg.CollectionSecondPass -> Second pass for collection: br.org.shift.persistencia.Projeto.arquivoProjeto
2009-06-02 14:40:45,718 DEBUG cfg.annotations.CollectionBinder -> Binding a collection of element: br.org.shift.persistencia.Projeto.arquivoProjeto
02/06/2009 14:40:45 com.sun.faces.application.ActionListenerImpl processAction
SEVERE: java.lang.Exception: org.hibernate.AnnotationException: Use of @OneToMany or @ManyToMany targeting an unmapped class: br.org.shift.persistencia.Projeto.arquivoProjeto[br.org.shift.persistencia.ArquivoProjeto]
javax.faces.el.EvaluationException: java.lang.Exception: org.hibernate.AnnotationException: Use of @OneToMany or @ManyToMany targeting an unmapped class: br.org.shift.persistencia.Projeto.arquivoProjeto[br.org.shift.persistencia.ArquivoProjeto]
at javax.faces.component.MethodBindingMethodExpressionAdapter.invoke(MethodBindingMethodExpressionAdapter.java:102)
at com.sun.faces.application.ActionListenerImpl.processAction(ActionListenerImpl.java:102)
at javax.faces.component.UICommand.broadcast(UICommand.java:387)
at org.ajax4jsf.component.AjaxViewRoot.processEvents(AjaxViewRoot.java:321)
at org.ajax4jsf.component.AjaxViewRoot.broadcastEvents(AjaxViewRoot.java:296)
at org.ajax4jsf.component.AjaxViewRoot.processPhase(AjaxViewRoot.java:253)
at org.ajax4jsf.component.AjaxViewRoot.processApplication(AjaxViewRoot.java:466)
at com.sun.faces.lifecycle.InvokeApplicationPhase.execute(InvokeApplicationPhase.java:82)
at com.sun.faces.lifecycle.Phase.doPhase(Phase.java:100)
at com.sun.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:118)
at javax.faces.webapp.FacesServlet.service(FacesServlet.java:265)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233)
at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:128)
at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:286)
at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:845)
at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:583)
at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:447)
at java.lang.Thread.run(Thread.java:619)
Caused by: java.lang.Exception: org.hibernate.AnnotationException: Use of @OneToMany or @ManyToMany targeting an unmapped class: br.org.shift.persistencia.Projeto.arquivoProjeto[br.org.shift.persistencia.ArquivoProjeto]
at br.org.shift.hibernate.HibernateUtil.beginTransaction(HibernateUtil.java:156)
at br.org.shift.hibernate.HibernateUtil.save(HibernateUtil.java:200)
at br.org.shift.managerbean.ManagerBeanCliente.addCliente(ManagerBeanCliente.java:19)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:597)
at org.apache.el.parser.AstValue.invoke(AstValue.java:172)
at org.apache.el.MethodExpressionImpl.invoke(MethodExpressionImpl.java:276)
at org.apache.jasper.el.JspMethodExpression.invoke(JspMethodExpression.java:68)
at javax.faces.component.MethodBindingMethodExpressionAdapter.invoke(MethodBindingMethodExpressionAdapter.java:88)
... 22 more
Caused by: org.hibernate.AnnotationException: Use of @OneToMany or @ManyToMany targeting an unmapped class: br.org.shift.persistencia.Projeto.arquivoProjeto[br.org.shift.persistencia.ArquivoProjeto]
at org.hibernate.cfg.annotations.CollectionBinder.bindManyToManySecondPass(CollectionBinder.java:1065)
at org.hibernate.cfg.annotations.CollectionBinder.bindStarToManySecondPass(CollectionBinder.java:600)
at org.hibernate.cfg.annotations.CollectionBinder$1.secondPass(CollectionBinder.java:541)
at org.hibernate.cfg.CollectionSecondPass.doSecondPass(CollectionSecondPass.java:43)
at org.hibernate.cfg.Configuration.secondPassCompile(Configuration.java:1140)
at org.hibernate.cfg.AnnotationConfiguration.secondPassCompile(AnnotationConfiguration.java:319)
at org.hibernate.cfg.Configuration.buildSessionFactory(Configuration.java:1296)
at org.hibernate.cfg.AnnotationConfiguration.buildSessionFactory(AnnotationConfiguration.java:854)
at br.org.shift.hibernate.HibernateUtil.getSession(HibernateUtil.java:109)
at br.org.shift.hibernate.HibernateUtil.beginTransaction(HibernateUtil.java:151)
... 32 more
02/06/2009 14:40:45 com.sun.faces.lifecycle.InvokeApplicationPhase execute
WARNING: #{managerBeanCliente.addCliente}: java.lang.Exception: org.hibernate.AnnotationException: Use of @OneToMany or @ManyToMany targeting an unmapped class: br.org.shift.persistencia.Projeto.arquivoProjeto[br.org.shift.persistencia.ArquivoProjeto]
javax.faces.FacesException: #{managerBeanCliente.addCliente}: java.lang.Exception: org.hibernate.AnnotationException: Use of @OneToMany or @ManyToMany targeting an unmapped class: br.org.shift.persistencia.Projeto.arquivoProjeto[br.org.shift.persistencia.ArquivoProjeto]
at com.sun.faces.application.ActionListenerImpl.processAction(ActionListenerImpl.java:118)
at javax.faces.component.UICommand.broadcast(UICommand.java:387)
at org.ajax4jsf.component.AjaxViewRoot.processEvents(AjaxViewRoot.java:321)
at org.ajax4jsf.component.AjaxViewRoot.broadcastEvents(AjaxViewRoot.java:296)
at org.ajax4jsf.component.AjaxViewRoot.processPhase(AjaxViewRoot.java:253)
at org.ajax4jsf.component.AjaxViewRoot.processApplication(AjaxViewRoot.java:466)
at com.sun.faces.lifecycle.InvokeApplicationPhase.execute(InvokeApplicationPhase.java:82)
at com.sun.faces.lifecycle.Phase.doPhase(Phase.java:100)
at com.sun.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:118)
at javax.faces.webapp.FacesServlet.service(FacesServlet.java:265)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233)
at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:128)
at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:286)
at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:845)
at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:583)
at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:447)
at java.lang.Thread.run(Thread.java:619)
Caused by: javax.faces.el.EvaluationException: java.lang.Exception: org.hibernate.AnnotationException: Use of @OneToMany or @ManyToMany targeting an unmapped class: br.org.shift.persistencia.Projeto.arquivoProjeto[br.org.shift.persistencia.ArquivoProjeto]
at javax.faces.component.MethodBindingMethodExpressionAdapter.invoke(MethodBindingMethodExpressionAdapter.java:102)
at com.sun.faces.application.ActionListenerImpl.processAction(ActionListenerImpl.java:102)
... 21 more
Caused by: java.lang.Exception: org.hibernate.AnnotationException: Use of @OneToMany or @ManyToMany targeting an unmapped class: br.org.shift.persistencia.Projeto.arquivoProjeto[br.org.shift.persistencia.ArquivoProjeto]
at br.org.shift.hibernate.HibernateUtil.beginTransaction(HibernateUtil.java:156)
at br.org.shift.hibernate.HibernateUtil.save(HibernateUtil.java:200)
at br.org.shift.managerbean.ManagerBeanCliente.addCliente(ManagerBeanCliente.java:19)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:597)
at org.apache.el.parser.AstValue.invoke(AstValue.java:172)
at org.apache.el.MethodExpressionImpl.invoke(MethodExpressionImpl.java:276)
at org.apache.jasper.el.JspMethodExpression.invoke(JspMethodExpression.java:68)
at javax.faces.component.MethodBindingMethodExpressionAdapter.invoke(MethodBindingMethodExpressionAdapter.java:88)
... 22 more
Caused by: org.hibernate.AnnotationException: Use of @OneToMany or @ManyToMany targeting an unmapped class: br.org.shift.persistencia.Projeto.arquivoProjeto[br.org.shift.persistencia.ArquivoProjeto]
at org.hibernate.cfg.annotations.CollectionBinder.bindManyToManySecondPass(CollectionBinder.java:1065)
at org.hibernate.cfg.annotations.CollectionBinder.bindStarToManySecondPass(CollectionBinder.java:600)
at org.hibernate.cfg.annotations.CollectionBinder$1.secondPass(CollectionBinder.java:541)
at org.hibernate.cfg.CollectionSecondPass.doSecondPass(CollectionSecondPass.java:43)
at org.hibernate.cfg.Configuration.secondPassCompile(Configuration.java:1140)
at org.hibernate.cfg.AnnotationConfiguration.secondPassCompile(AnnotationConfiguration.java:319)
at org.hibernate.cfg.Configuration.buildSessionFactory(Configuration.java:1296)
at org.hibernate.cfg.AnnotationConfiguration.buildSessionFactory(AnnotationConfiguration.java:854)
at br.org.shift.hibernate.HibernateUtil.getSession(HibernateUtil.java:109)
at br.org.shift.hibernate.HibernateUtil.beginTransaction(HibernateUtil.java:151)
... 32 more
02/06/2009 14:40:45 com.sun.faces.lifecycle.Phase doPhase
SEVERE: JSF1054: (Phase ID: INVOKE_APPLICATION 5, View ID: /pages/cadastrocliente.jsp) Exception thrown during phase execution: javax.faces.event.PhaseEvent[source=com.sun.faces.lifecycle.LifecycleImpl@12fcdf5]
02/06/2009 14:40:45 org.apache.catalina.core.StandardWrapperValve invoke
SEVERE: Servlet.service() for servlet Faces Servlet threw exception
org.hibernate.AnnotationException: Use of @OneToMany or @ManyToMany targeting an unmapped class: br.org.shift.persistencia.Projeto.arquivoProjeto[br.org.shift.persistencia.ArquivoProjeto]
at org.hibernate.cfg.annotations.CollectionBinder.bindManyToManySecondPass(CollectionBinder.java:1065)
at org.hibernate.cfg.annotations.CollectionBinder.bindStarToManySecondPass(CollectionBinder.java:600)
at org.hibernate.cfg.annotations.CollectionBinder$1.secondPass(CollectionBinder.java:541)
at org.hibernate.cfg.CollectionSecondPass.doSecondPass(CollectionSecondPass.java:43)
at org.hibernate.cfg.Configuration.secondPassCompile(Configuration.java:1140)
at org.hibernate.cfg.AnnotationConfiguration.secondPassCompile(AnnotationConfiguration.java:319)
at org.hibernate.cfg.Configuration.buildSessionFactory(Configuration.java:1296)
at org.hibernate.cfg.AnnotationConfiguration.buildSessionFactory(AnnotationConfiguration.java:854)
at br.org.shift.hibernate.HibernateUtil.getSession(HibernateUtil.java:109)
at br.org.shift.hibernate.HibernateUtil.beginTransaction(HibernateUtil.java:151)
at br.org.shift.hibernate.HibernateUtil.save(HibernateUtil.java:200)
at br.org.shift.managerbean.ManagerBeanCliente.addCliente(ManagerBeanCliente.java:19)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:597)
at org.apache.el.parser.AstValue.invoke(AstValue.java:172)
at org.apache.el.MethodExpressionImpl.invoke(MethodExpressionImpl.java:276)
at org.apache.jasper.el.JspMethodExpression.invoke(JspMethodExpression.java:68)
at javax.faces.component.MethodBindingMethodExpressionAdapter.invoke(MethodBindingMethodExpressionAdapter.java:88)
at com.sun.faces.application.ActionListenerImpl.processAction(ActionListenerImpl.java:102)
at javax.faces.component.UICommand.broadcast(UICommand.java:387)
at org.ajax4jsf.component.AjaxViewRoot.processEvents(AjaxViewRoot.java:321)
at org.ajax4jsf.component.AjaxViewRoot.broadcastEvents(AjaxViewRoot.java:296)
at org.ajax4jsf.component.AjaxViewRoot.processPhase(AjaxViewRoot.java:253)
at org.ajax4jsf.component.AjaxViewRoot.processApplication(AjaxViewRoot.java:466)
at com.sun.faces.lifecycle.InvokeApplicationPhase.execute(InvokeApplicationPhase.java:82)
at com.sun.faces.lifecycle.Phase.doPhase(Phase.java:100)
at com.sun.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:118)
at javax.faces.webapp.FacesServlet.service(FacesServlet.java:265)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233)
at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:128)
at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:286)
at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:845)
at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:583)
at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:447)
at java.lang.Thread.run(Thread.java:619)
2009-06-02 14:40:45,734 DEBUG ajax4jsf.event.AjaxPhaseListener -> Process after phase INVOKE_APPLICATION 5
Dyego Carmo
02/06/2009
voce tem que colocar um..
addAnnotedClass(ArquivoProjeto.class) la na inicialização...
na realidade tem que ter todas as classess das entidades.....
Cristian Mietlicki
02/06/2009
@Id
@Column
@SequenceGenerator(name="SEQ", sequenceName="cliente_idcliente_seq")
@GeneratedValue (strategy = GenerationType.AUTO, generator="SEQ")
Dyego Carmo
02/06/2009
Dyego Carmo
02/06/2009
@OneToMany(mappedBy="Cliente")
private List<Suporte>suporte4;
@OneToMany(mappedBy="Cliente")
private List<Contato>contato;
@OneToMany(mappedBy="Cliente")
private List<Projeto>projeto;
Cristian Mietlicki
02/06/2009
@GeneratedValue (strategy = GenerationType.AUTO, generator="SEQ").
package br.org.shift.persistencia;
import java.util.List;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.persistence.OneToMany;
import javax.persistence.SequenceGenerator;
import javax.persistence.Table;
@Entity
@Table(name="Cliente", schema="public")
public class Cliente implements java.io.Serializable {
/**
*
*/
private static final long serialVersionUID = 1L;
/**
*
*/
@Id
@Column
@SequenceGenerator(name="SEQ", sequenceName="cliente_idcliente_seq")
@GeneratedValue (strategy = GenerationType.AUTO, generator="SEQ")
private Integer idCliente;
@Column
private String nomeCliente;
@Column
private String cpfCnpjCliente;
// @OneToMany(mappedBy="Cliente")
// private List<Suporte>suporte;
//
// @OneToMany(mappedBy="Cliente")
// private List<Contato>contato;
//
// @OneToMany(mappedBy="Cliente")
// private List<Projeto>projeto;
//
public Integer getIdCliente() {
return idCliente;
}
public void setIdCliente(Integer idCliente) {
this.idCliente = idCliente;
}
public String getNomeCliente() {
return nomeCliente;
}
public void setNomeCliente(String nomeCliente) {
this.nomeCliente = nomeCliente;
}
public String getCpfCnpjCliente() {
return cpfCnpjCliente;
}
public void setCpfCnpjCliente(String cpfCnpjCliente) {
this.cpfCnpjCliente = cpfCnpjCliente;
}
public Cliente(){
}
public Cliente(Integer idCliente, String nomeCliente, String cpfCnpjCliente) {
super();
this.idCliente = idCliente;
this.nomeCliente = nomeCliente;
this.cpfCnpjCliente = cpfCnpjCliente;
}
@Override
public int hashCode() {
final int prime = 31;
int result = 1;
result = prime * result
+ ((idCliente == null) ? 0 : idCliente.hashCode());
return result;
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (getClass() != obj.getClass())
return false;
Cliente other = (Cliente) obj;
if (idCliente == null) {
if (other.idCliente != null)
return false;
} else if (!idCliente.equals(other.idCliente))
return false;
return true;
}
}
Cristian Mietlicki
02/06/2009
02/06/2009 14:49:35 com.sun.faces.application.ActionListenerImpl processAction
SEVERE: java.lang.Exception: org.hibernate.MappingException: Repeated column in mapping for entity: br.org.shift.persistencia.Projeto column: idCliente (should be mapped with insert="false" update="false")
javax.faces.el.EvaluationException: java.lang.Exception: org.hibernate.MappingException: Repeated column in mapping for entity: br.org.shift.persistencia.Projeto column: idCliente (should be mapped with insert="false" update="false")
at javax.faces.component.MethodBindingMethodExpressionAdapter.invoke(MethodBindingMethodExpressionAdapter.java:102)
at com.sun.faces.application.ActionListenerImpl.processAction(ActionListenerImpl.java:102)
at javax.faces.component.UICommand.broadcast(UICommand.java:387)
at org.ajax4jsf.component.AjaxViewRoot.processEvents(AjaxViewRoot.java:321)
at org.ajax4jsf.component.AjaxViewRoot.broadcastEvents(AjaxViewRoot.java:296)
at org.ajax4jsf.component.AjaxViewRoot.processPhase(AjaxViewRoot.java:253)
at org.ajax4jsf.component.AjaxViewRoot.processApplication(AjaxViewRoot.java:466)
at com.sun.faces.lifecycle.InvokeApplicationPhase.execute(InvokeApplicationPhase.java:82)
at com.sun.faces.lifecycle.Phase.doPhase(Phase.java:100)
at com.sun.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:118)
at javax.faces.webapp.FacesServlet.service(FacesServlet.java:265)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233)
at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:128)
at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:286)
at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:845)
at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:583)
at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:447)
at java.lang.Thread.run(Thread.java:619)
Caused by: java.lang.Exception: org.hibernate.MappingException: Repeated column in mapping for entity: br.org.shift.persistencia.Projeto column: idCliente (should be mapped with insert="false" update="false")
at br.org.shift.hibernate.HibernateUtil.beginTransaction(HibernateUtil.java:159)
at br.org.shift.hibernate.HibernateUtil.save(HibernateUtil.java:203)
at br.org.shift.managerbean.ManagerBeanCliente.addCliente(ManagerBeanCliente.java:19)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:597)
at org.apache.el.parser.AstValue.invoke(AstValue.java:172)
at org.apache.el.MethodExpressionImpl.invoke(MethodExpressionImpl.java:276)
at org.apache.jasper.el.JspMethodExpression.invoke(JspMethodExpression.java:68)
at javax.faces.component.MethodBindingMethodExpressionAdapter.invoke(MethodBindingMethodExpressionAdapter.java:88)
... 22 more
Caused by: org.hibernate.MappingException: Repeated column in mapping for entity: br.org.shift.persistencia.Projeto column: idCliente (should be mapped with insert="false" update="false")
at org.hibernate.mapping.PersistentClass.checkColumnDuplication(PersistentClass.java:647)
at org.hibernate.mapping.PersistentClass.checkPropertyColumnDuplication(PersistentClass.java:669)
at org.hibernate.mapping.PersistentClass.checkColumnDuplication(PersistentClass.java:691)
at org.hibernate.mapping.PersistentClass.validate(PersistentClass.java:445)
at org.hibernate.mapping.RootClass.validate(RootClass.java:192)
at org.hibernate.cfg.Configuration.validate(Configuration.java:1112)
at org.hibernate.cfg.Configuration.buildSessionFactory(Configuration.java:1297)
at org.hibernate.cfg.AnnotationConfiguration.buildSessionFactory(AnnotationConfiguration.java:854)
at br.org.shift.hibernate.HibernateUtil.getSession(HibernateUtil.java:112)
at br.org.shift.hibernate.HibernateUtil.beginTransaction(HibernateUtil.java:154)
... 32 more
02/06/2009 14:49:35 com.sun.faces.lifecycle.InvokeApplicationPhase execute
WARNING: #{managerBeanCliente.addCliente}: java.lang.Exception: org.hibernate.MappingException: Repeated column in mapping for entity: br.org.shift.persistencia.Projeto column: idCliente (should be mapped with insert="false" update="false")
javax.faces.FacesException: #{managerBeanCliente.addCliente}: java.lang.Exception: org.hibernate.MappingException: Repeated column in mapping for entity: br.org.shift.persistencia.Projeto column: idCliente (should be mapped with insert="false" update="false")
at com.sun.faces.application.ActionListenerImpl.processAction(ActionListenerImpl.java:118)
at javax.faces.component.UICommand.broadcast(UICommand.java:387)
at org.ajax4jsf.component.AjaxViewRoot.processEvents(AjaxViewRoot.java:321)
at org.ajax4jsf.component.AjaxViewRoot.broadcastEvents(AjaxViewRoot.java:296)
at org.ajax4jsf.component.AjaxViewRoot.processPhase(AjaxViewRoot.java:253)
at org.ajax4jsf.component.AjaxViewRoot.processApplication(AjaxViewRoot.java:466)
at com.sun.faces.lifecycle.InvokeApplicationPhase.execute(InvokeApplicationPhase.java:82)
at com.sun.faces.lifecycle.Phase.doPhase(Phase.java:100)
at com.sun.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:118)
at javax.faces.webapp.FacesServlet.service(FacesServlet.java:265)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233)
at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:128)
at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:286)
at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:845)
at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:583)
at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:447)
at java.lang.Thread.run(Thread.java:619)
Caused by: javax.faces.el.EvaluationException: java.lang.Exception: org.hibernate.MappingException: Repeated column in mapping for entity: br.org.shift.persistencia.Projeto column: idCliente (should be mapped with insert="false" update="false")
at javax.faces.component.MethodBindingMethodExpressionAdapter.invoke(MethodBindingMethodExpressionAdapter.java:102)
at com.sun.faces.application.ActionListenerImpl.processAction(ActionListenerImpl.java:102)
... 21 more
Caused by: java.lang.Exception: org.hibernate.MappingException: Repeated column in mapping for entity: br.org.shift.persistencia.Projeto column: idCliente (should be mapped with insert="false" update="false")
at br.org.shift.hibernate.HibernateUtil.beginTransaction(HibernateUtil.java:159)
at br.org.shift.hibernate.HibernateUtil.save(HibernateUtil.java:203)
at br.org.shift.managerbean.ManagerBeanCliente.addCliente(ManagerBeanCliente.java:19)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:597)
at org.apache.el.parser.AstValue.invoke(AstValue.java:172)
at org.apache.el.MethodExpressionImpl.invoke(MethodExpressionImpl.java:276)
at org.apache.jasper.el.JspMethodExpression.invoke(JspMethodExpression.java:68)
at javax.faces.component.MethodBindingMethodExpressionAdapter.invoke(MethodBindingMethodExpressionAdapter.java:88)
... 22 more
Caused by: org.hibernate.MappingException: Repeated column in mapping for entity: br.org.shift.persistencia.Projeto column: idCliente (should be mapped with insert="false" update="false")
at org.hibernate.mapping.PersistentClass.checkColumnDuplication(PersistentClass.java:647)
at org.hibernate.mapping.PersistentClass.checkPropertyColumnDuplication(PersistentClass.java:669)
at org.hibernate.mapping.PersistentClass.checkColumnDuplication(PersistentClass.java:691)
at org.hibernate.mapping.PersistentClass.validate(PersistentClass.java:445)
at org.hibernate.mapping.RootClass.validate(RootClass.java:192)
at org.hibernate.cfg.Configuration.validate(Configuration.java:1112)
at org.hibernate.cfg.Configuration.buildSessionFactory(Configuration.java:1297)
at org.hibernate.cfg.AnnotationConfiguration.buildSessionFactory(AnnotationConfiguration.java:854)
at br.org.shift.hibernate.HibernateUtil.getSession(HibernateUtil.java:112)
at br.org.shift.hibernate.HibernateUtil.beginTransaction(HibernateUtil.java:154)
... 32 more
02/06/2009 14:49:35 com.sun.faces.lifecycle.Phase doPhase
SEVERE: JSF1054: (Phase ID: INVOKE_APPLICATION 5, View ID: /pages/cadastrocliente.jsp) Exception thrown during phase execution: javax.faces.event.PhaseEvent[source=com.sun.faces.lifecycle.LifecycleImpl@1d648e2]
02/06/2009 14:49:35 org.apache.catalina.core.StandardWrapperValve invoke
SEVERE: Servlet.service() for servlet Faces Servlet threw exception
org.hibernate.MappingException: Repeated column in mapping for entity: br.org.shift.persistencia.Projeto column: idCliente (should be mapped with insert="false" update="false")
at org.hibernate.mapping.PersistentClass.checkColumnDuplication(PersistentClass.java:647)
at org.hibernate.mapping.PersistentClass.checkPropertyColumnDuplication(PersistentClass.java:669)
at org.hibernate.mapping.PersistentClass.checkColumnDuplication(PersistentClass.java:691)
at org.hibernate.mapping.PersistentClass.validate(PersistentClass.java:445)
at org.hibernate.mapping.RootClass.validate(RootClass.java:192)
at org.hibernate.cfg.Configuration.validate(Configuration.java:1112)
at org.hibernate.cfg.Configuration.buildSessionFactory(Configuration.java:1297)
at org.hibernate.cfg.AnnotationConfiguration.buildSessionFactory(AnnotationConfiguration.java:854)
at br.org.shift.hibernate.HibernateUtil.getSession(HibernateUtil.java:112)
at br.org.shift.hibernate.HibernateUtil.beginTransaction(HibernateUtil.java:154)
at br.org.shift.hibernate.HibernateUtil.save(HibernateUtil.java:203)
at br.org.shift.managerbean.ManagerBeanCliente.addCliente(ManagerBeanCliente.java:19)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:597)
at org.apache.el.parser.AstValue.invoke(AstValue.java:172)
at org.apache.el.MethodExpressionImpl.invoke(MethodExpressionImpl.java:276)
at org.apache.jasper.el.JspMethodExpression.invoke(JspMethodExpression.java:68)
at javax.faces.component.MethodBindingMethodExpressionAdapter.invoke(MethodBindingMethodExpressionAdapter.java:88)
at com.sun.faces.application.ActionListenerImpl.processAction(ActionListenerImpl.java:102)
at javax.faces.component.UICommand.broadcast(UICommand.java:387)
at org.ajax4jsf.component.AjaxViewRoot.processEvents(AjaxViewRoot.java:321)
at org.ajax4jsf.component.AjaxViewRoot.broadcastEvents(AjaxViewRoot.java:296)
at org.ajax4jsf.component.AjaxViewRoot.processPhase(AjaxViewRoot.java:253)
at org.ajax4jsf.component.AjaxViewRoot.processApplication(AjaxViewRoot.java:466)
at com.sun.faces.lifecycle.InvokeApplicationPhase.execute(InvokeApplicationPhase.java:82)
at com.sun.faces.lifecycle.Phase.doPhase(Phase.java:100)
at com.sun.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:118)
at javax.faces.webapp.FacesServlet.service(FacesServlet.java:265)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233)
at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:128)
at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:286)
at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:845)
at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:583)
at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:447)
at java.lang.Thread.run(Thread.java:619)
2009-06-02 14:49:35,828 DEBUG ajax4jsf.event.AjaxPhaseListener -> Process after phase INVOKE_APPLICATION 5
Dyego Carmo
02/06/2009
Quem gerou eles para voce ?
Cristian Mietlicki
02/06/2009
Dyego Carmo
02/06/2009
Cristian Mietlicki
02/06/2009
Dyego Carmo
02/06/2009
https://www.devmedia.com.br/articles/viewcomp.asp?comp=11041
https://www.devmedia.com.br/articles/viewcomp.asp?comp=11047
https://www.devmedia.com.br/articles/viewcomp.asp?comp=11083
https://www.devmedia.com.br/articles/viewcomp.asp?comp=11148
na realidade eu indicareia o curso completo de hibernate... assim voce aprende a fazer as coisas de forma correta e entender estes erros !
Dyego Carmo
02/06/2009
https://www.devmedia.com.br/articles/viewcomp.asp?comp=12283
Lá abordo JPA , mas funciona igualmente para Hibernate...
Cristian Mietlicki
02/06/2009
Cristian Mietlicki
02/06/2009
Dyego Carmo
02/06/2009
ahhh
e todas tabelas tem que ter uma chave primaria... nem que seja composta...
senao dah problema tambem...
se estiver com muito problema por favor crie um video mostrando o problema que vc tah tendo !
Cristian Mietlicki
02/06/2009
Dyego Carmo
02/06/2009
Pois ele gerou classes pois existem chaves primarias compostas...
Cristian Mietlicki
02/06/2009
Dyego Carmo
02/06/2009
Cristian Mietlicki
02/06/2009