Guest User

Untitled

a guest
Jan 25th, 2019
159
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.76 KB | None | 0 0
  1. WARNING: The web application [...] appears to have started a thread named [weld-preloader-3] but has failed to stop it. This is very likely to create a memory leak. Stack trace of thread:
  2. java.base@11.0.1/jdk.internal.misc.Unsafe.park(Native Method)
  3. java.base@11.0.1/java.util.concurrent.locks.LockSupport.park(LockSupport.java:194)
  4. java.base@11.0.1/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2081)
  5. java.base@11.0.1/java.util.concurrent.LinkedBlockingQueue.take(LinkedBlockingQueue.java:433)
  6. java.base@11.0.1/java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1054)
  7. java.base@11.0.1/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1114)
  8. java.base@11.0.1/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628)
  9. java.base@11.0.1/java.lang.Thread.run(Thread.java:834)
  10.  
  11. <h:form>
  12. <p:dataTable paginator="true" rows="25" lazy="true" value="#{paganteBean.pagantes}" var="pagante">
  13. <p:column>
  14. <f:facet name="header">Nome</f:facet>
  15. #{pagante.nome}
  16. </p:column>
  17.  
  18. <p:column>
  19. <f:facet name="header">Ações</f:facet>
  20. <p:commandLink value="Editar" action="editarPagante">
  21. <f:setPropertyActionListener value="#{pagante}" target="#{paganteBean.pagante}"/>
  22. </p:commandLink>
  23. </p:column>
  24. </p:dataTable>
  25. </h:form>
  26.  
  27. <?xml version="1.0" encoding="UTF-8"?>
  28. <beans xmlns="http://xmlns.jcp.org/xml/ns/javaee"
  29. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  30. xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee
  31. http://xmlns.jcp.org/xml/ns/javaee/beans_1_1.xsd"
  32. version="1.1" bean-discovery-mode="all">
  33. </beans>
Add Comment
Please, Sign In to add comment