Wildfly 404 - Not Found JSF

Boa noite,

Estou os seguintes problemas:
ao acessar
1-
http://localhost:8180/JavaEE905CRUD/form.xhtml
404 - Not Found

2-
Após gerar as tabelas do banco e dar Validate

|Class “br.com.marcel.javaee.model.Tarefa” is managed, but is not listed in the persistence.xml

a entidade tarefa fica com erro

package br.com.marcel.javaee.model;


import java.io.Serializable;

import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.Id;


@Entity(name = "TAREFA")
public class Tarefa implements Serializable {

	@Id
	@GeneratedValue
	private Integer id;

	private String descricao;

	private Integer prioridade;

	private Boolean concluida;

	public Integer getId() {
		return id;
	}

	public void setId(Integer id) {
		this.id = id;
	}

	public String getDescricao() {
		return descricao;
	}

	public void setDescricao(String descricao) {
		this.descricao = descricao;
	}

	public Integer getPrioridade() {
		return prioridade;
	}

	public void setPrioridade(Integer prioridade) {
		this.prioridade = prioridade;
	}

	public Boolean getConcluida() {
		return concluida;
	}

	public void setConcluida(Boolean concluida) {
		this.concluida = concluida;
	}
}

web.xml
<?xml version="1.0" encoding="UTF-8"?>

JavaEE905CRUD

form.xhtml
index.htm
index.jsp
default.html
default.htm
default.jsp


Faces Servlet
javax.faces.webapp.FacesServlet
1


Faces Servlet
*.xhtml

persistance.xml

<?xml version="1.0" encoding="UTF-8"?>
<persistence version="2.1" xmlns="http://xmlns.jcp.org/xml/ns/persistence" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/persistence http://xmlns.jcp.org/xml/ns/persistence/persistence_2_1.xsd">
	<persistence-unit name="JavaEE905CRUD">
		<provider>app3PU</provider>
		<jta-data-source>jdbc/MySqlDS2</jta-data-source>
		<properties>
			<property name="javax.persistence.schema-generation.create-database-schemas" value="false"/>
		</properties>
	</persistence-unit>
</persistence>

faces-config.xml

<?xml version="1.0" encoding="UTF-8"?>
<faces-config
    xmlns="http://xmlns.jcp.org/xml/ns/javaee"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-facesconfig_2_2.xsd"
    version="2.2">

</faces-config>

Estruturas das pastas

Há uns 10 dias estava rodando legal, mas aplicações que rodavam antes passaram a apresentar este erro 404 - not found

penso em formatar tudo daqui há alguns dias mas temo que possa acontecer outra vez o mesmo

21:33:21,849 INFO  [org.jboss.modules] (main) JBoss Modules version 1.8.7.Final
21:33:22,302 INFO  [org.jboss.msc] (main) JBoss MSC version 1.4.5.Final
21:33:22,314 INFO  [org.jboss.threads] (main) JBoss Threads version 2.3.2.Final
21:33:22,466 INFO  [org.jboss.as] (MSC service thread 1-2) WFLYSRV0049: WildFly Full 15.0.0.Final (WildFly Core 7.0.0.Final) starting
21:33:23,514 INFO  [org.wildfly.security] (ServerService Thread Pool -- 16) ELY00001: WildFly Elytron version 1.7.0.Final
21:33:24,310 INFO  [org.jboss.as.controller.management-deprecated] (Controller Boot Thread) WFLYCTL0028: Attribute 'security-realm' in the resource at address '/core-service=management/management-interface=http-interface' is deprecated, and may be removed in a future version. See the attribute description in the output of the read-resource-description operation to learn more about the deprecation.
21:33:24,415 INFO  [org.jboss.as.controller.management-deprecated] (ServerService Thread Pool -- 38) WFLYCTL0028: Attribute 'security-realm' in the resource at address '/subsystem=undertow/server=default-server/https-listener=https' is deprecated, and may be removed in a future version. See the attribute description in the output of the read-resource-description operation to learn more about the deprecation.
21:33:24,512 INFO  [org.jboss.as.server.deployment.scanner] (DeploymentScanner-threads - 1) WFLYDS0015: Re-attempting failed deployment Loucademia.war
21:33:24,517 INFO  [org.jboss.as.server.deployment.scanner] (DeploymentScanner-threads - 1) WFLYDS0015: Re-attempting failed deployment JavaEE905CRUD.war
21:33:24,519 INFO  [org.jboss.as.server.deployment.scanner] (DeploymentScanner-threads - 1) WFLYDS0004: Found JavaEE47conversores.war in deployment directory. To trigger deployment create a file called JavaEE47conversores.war.dodeploy
21:33:24,519 INFO  [org.jboss.as.server.deployment.scanner] (DeploymentScanner-threads - 1) WFLYDS0004: Found JavaEEMySQL_JDBC.war in deployment directory. To trigger deployment create a file called JavaEEMySQL_JDBC.war.dodeploy
21:33:24,520 INFO  [org.jboss.as.server.deployment.scanner] (DeploymentScanner-threads - 1) WFLYDS0004: Found JavaEE405Resources.war in deployment directory. To trigger deployment create a file called JavaEE405Resources.war.dodeploy
21:33:24,520 INFO  [org.jboss.as.server.deployment.scanner] (DeploymentScanner-threads - 1) WFLYDS0004: Found JavaEE404html5.war in deployment directory. To trigger deployment create a file called JavaEE404html5.war.dodeploy
21:33:24,520 INFO  [org.jboss.as.server.deployment.scanner] (DeploymentScanner-threads - 1) WFLYDS0004: Found JavaEE407conversores.war in deployment directory. To trigger deployment create a file called JavaEE407conversores.war.dodeploy
21:33:24,521 INFO  [org.jboss.as.server.deployment.scanner] (DeploymentScanner-threads - 1) WFLYDS0004: Found JavaEE412tabDin.war in deployment directory. To trigger deployment create a file called JavaEE412tabDin.war.dodeploy
21:33:24,521 INFO  [org.jboss.as.server.deployment.scanner] (DeploymentScanner-threads - 1) WFLYDS0004: Found JavaEE3ex01.war in deployment directory. To trigger deployment create a file called JavaEE3ex01.war.dodeploy
21:33:24,521 INFO  [org.jboss.as.server.deployment.scanner] (DeploymentScanner-threads - 1) WFLYDS0004: Found JavaEE32Outcome.war in deployment directory. To trigger deployment create a file called JavaEE32Outcome.war.dodeploy
21:33:24,521 INFO  [org.jboss.as.server.deployment.scanner] (DeploymentScanner-threads - 1) WFLYDS0004: Found JavaEE802Stateless.war in deployment directory. To trigger deployment create a file called JavaEE802Stateless.war.dodeploy
21:33:24,522 INFO  [org.jboss.as.server.deployment.scanner] (DeploymentScanner-threads - 1) WFLYDS0004: Found JSF_JDBC_Connection01.war in deployment directory. To trigger deployment create a file called JSF_JDBC_Connection01.war.dodeploy
21:33:24,522 INFO  [org.jboss.as.server.deployment.scanner] (DeploymentScanner-threads - 1) WFLYDS0004: Found JavaEE34Flash.war in deployment directory. To trigger deployment create a file called JavaEE34Flash.war.dodeploy
21:33:24,522 INFO  [org.jboss.as.server.deployment.scanner] (DeploymentScanner-threads - 1) WFLYDS0004: Found JavaEE49validadores.war in deployment directory. To trigger deployment create a file called JavaEE49validadores.war.dodeploy
21:33:24,523 INFO  [org.jboss.as.server.deployment.scanner] (DeploymentScanner-threads - 1) WFLYDS0004: Found JavaEE409validadores.war in deployment directory. To trigger deployment create a file called JavaEE409validadores.war.dodeploy
21:33:24,523 INFO  [org.jboss.as.server.deployment.scanner] (DeploymentScanner-threads - 1) WFLYDS0004: Found JavaEE414binaryOutput.war in deployment directory. To trigger deployment create a file called JavaEE414binaryOutput.war.dodeploy
21:33:24,523 INFO  [org.jboss.as.server.deployment.scanner] (DeploymentScanner-threads - 1) WFLYDS0004: Found JavaEE53cdiBeans.war in deployment directory. To trigger deployment create a file called JavaEE53cdiBeans.war.dodeploy
21:33:24,524 INFO  [org.jboss.as.server.deployment.scanner] (DeploymentScanner-threads - 1) WFLYDS0004: Found JavaEE402.war in deployment directory. To trigger deployment create a file called JavaEE402.war.dodeploy
21:33:24,524 INFO  [org.jboss.as.server.deployment.scanner] (DeploymentScanner-threads - 1) WFLYDS0004: Found Loucademia.war in deployment directory. To trigger deployment create a file called Loucademia.war.dodeploy
21:33:24,524 INFO  [org.jboss.as.server.deployment.scanner] (DeploymentScanner-threads - 1) WFLYDS0004: Found JavaEE31.war in deployment directory. To trigger deployment create a file called JavaEE31.war.dodeploy
21:33:24,525 INFO  [org.jboss.as.server.deployment.scanner] (DeploymentScanner-threads - 1) WFLYDS0004: Found JavaEE62AjaxValidation.war in deployment directory. To trigger deployment create a file called JavaEE62AjaxValidation.war.dodeploy
21:33:24,525 INFO  [org.jboss.as.server.deployment.scanner] (DeploymentScanner-threads - 1) WFLYDS0004: Found JavaEEex01.war in deployment directory. To trigger deployment create a file called JavaEEex01.war.dodeploy
21:33:24,525 INFO  [org.jboss.as.server.deployment.scanner] (DeploymentScanner-threads - 1) WFLYDS0004: Found JavaEE413repeat.war in deployment directory. To trigger deployment create a file called JavaEE413repeat.war.dodeploy
21:33:24,526 INFO  [org.jboss.as.server.deployment.scanner] (DeploymentScanner-threads - 1) WFLYDS0004: Found JavaEE4ex01.war in deployment directory. To trigger deployment create a file called JavaEE4ex01.war.dodeploy
21:33:24,526 INFO  [org.jboss.as.server.deployment.scanner] (DeploymentScanner-threads - 1) WFLYDS0004: Found JavaEE904JPAproject.war in deployment directory. To trigger deployment create a file called JavaEE904JPAproject.war.dodeploy
21:33:24,526 INFO  [org.jboss.as.server.deployment.scanner] (DeploymentScanner-threads - 1) WFLYDS0004: Found GT.war in deployment directory. To trigger deployment create a file called GT.war.dodeploy
21:33:24,526 INFO  [org.jboss.as.server.deployment.scanner] (DeploymentScanner-threads - 1) WFLYDS0004: Found JavaEE702Template.war in deployment directory. To trigger deployment create a file called JavaEE702Template.war.dodeploy
21:33:24,527 INFO  [org.jboss.as.server.deployment.scanner] (DeploymentScanner-threads - 1) WFLYDS0004: Found JavaEE905CRUD.war in deployment directory. To trigger deployment create a file called JavaEE905CRUD.war.dodeploy
21:33:24,642 INFO  [org.jboss.as.server] (Controller Boot Thread) WFLYSRV0039: Creating http management service using socket-binding (management-http)
21:33:24,667 INFO  [org.xnio] (MSC service thread 1-1) XNIO version 3.6.5.Final
21:33:24,674 INFO  [org.xnio.nio] (MSC service thread 1-1) XNIO NIO Implementation Version 3.6.5.Final
21:33:24,747 INFO  [org.jboss.as.clustering.infinispan] (ServerService Thread Pool -- 53) WFLYCLINF0001: Activating Infinispan subsystem.
21:33:24,758 INFO  [org.wildfly.iiop.openjdk] (ServerService Thread Pool -- 52) WFLYIIOP0001: Activating IIOP Subsystem
21:33:24,758 INFO  [org.jboss.as.jaxrs] (ServerService Thread Pool -- 55) WFLYRS0016: RESTEasy version 3.6.2.Final
21:33:24,794 INFO  [org.wildfly.extension.io] (ServerService Thread Pool -- 54) WFLYIO001: Worker 'default' has auto-configured to 8 core threads with 64 task threads based on your 4 available processors
21:33:24,801 INFO  [org.wildfly.extension.microprofile.config.smallrye._private] (ServerService Thread Pool -- 64) WFLYCONF0001: Activating WildFly MicroProfile Config Subsystem
21:33:24,817 INFO  [org.jboss.as.jsf] (ServerService Thread Pool -- 60) WFLYJSF0007: Activated the following JSF Implementations: [main]
21:33:24,831 INFO  [org.wildfly.extension.microprofile.opentracing] (ServerService Thread Pool -- 67) WFLYTRACEXT0001: Activating MicroProfile OpenTracing Subsystem
21:33:24,850 INFO  [org.jboss.as.security] (ServerService Thread Pool -- 74) WFLYSEC0002: Activating Security Subsystem
21:33:24,849 WARN  [org.jboss.as.txn] (ServerService Thread Pool -- 76) WFLYTX0013: The node-identifier attribute on the /subsystem=transactions is set to the default value. This is a danger for environments running multiple servers. Please make sure the attribute value is unique.
21:33:24,851 INFO  [org.jboss.as.naming] (ServerService Thread Pool -- 68) WFLYNAM0001: Activating Naming Subsystem
21:33:24,881 ERROR [org.jboss.as.controller.management-operation] (ServerService Thread Pool -- 45) WFLYCTL0013: Operation ("add") failed - address: ([
    ("subsystem" => "datasources"),
    ("jdbc-driver" => "h2")
]) - failure description: "WFLYJCA0041: Failed to load module for driver [com.h2database.h2]"
21:33:24,920 INFO  [org.jboss.as.naming] (MSC service thread 1-7) WFLYNAM0003: Starting Naming Service
21:33:24,898 INFO  [org.jboss.as.webservices] (ServerService Thread Pool -- 78) WFLYWS0002: Activating WebServices Extension
21:33:24,927 INFO  [org.jboss.as.mail.extension] (MSC service thread 1-4) WFLYMAIL0002: Unbound mail session [java:jboss/mail/Default]
21:33:24,928 INFO  [org.jboss.as.mail.extension] (MSC service thread 1-4) WFLYMAIL0001: Bound mail session [java:jboss/mail/Default]
21:33:24,897 INFO  [org.wildfly.extension.microprofile.metrics.smallrye] (ServerService Thread Pool -- 66) WFLYMETRICS0001: Activating Eclipse MicroProfile Metrics Subsystem
21:33:24,894 INFO  [org.jboss.as.security] (MSC service thread 1-5) WFLYSEC0001: Current PicketBox version=5.0.3.Final
21:33:24,892 INFO  [org.wildfly.extension.microprofile.health.smallrye] (ServerService Thread Pool -- 65) WFLYHEALTH0001: Activating Eclipse MicroProfile Health Subsystem
21:33:24,937 INFO  [org.jboss.as.connector] (MSC service thread 1-4) WFLYJCA0009: Starting JCA Subsystem (WildFly/IronJacamar 1.4.11.Final)
21:33:24,972 INFO  [org.jboss.as.connector.subsystems.datasources] (ServerService Thread Pool -- 45) WFLYJCA0005: Deploying non-JDBC-compliant driver class com.mysql.cj.jdbc.Driver (version 8.0)
21:33:25,010 INFO  [io.smallrye.metrics] (MSC service thread 1-2) Converted [2] config entries and added [4] replacements
21:33:25,030 INFO  [org.jboss.as.connector.deployers.jdbc] (MSC service thread 1-5) WFLYJCA0018: Started Driver service with driver-name = mysql
21:33:25,039 INFO  [org.wildfly.extension.undertow] (MSC service thread 1-4) WFLYUT0003: Undertow 2.0.15.Final starting
21:33:25,052 INFO  [org.jboss.remoting] (MSC service thread 1-6) JBoss Remoting version 5.0.8.Final
21:33:25,090 INFO  [io.smallrye.metrics] (MSC service thread 1-2) Converted [3] config entries and added [14] replacements
21:33:25,123 INFO  [org.jboss.as.connector.subsystems.datasources] (MSC service thread 1-8) WFLYJCA0010: Unbound data source [java:jboss/datasources/ExampleDS]
21:33:25,124 INFO  [org.jboss.as.connector.subsystems.datasources] (MSC service thread 1-8) WFLYJCA0010: Unbound data source [java:/jdbc/MySqlDS2]
21:33:25,146 INFO  [org.jboss.as.ejb3] (MSC service thread 1-3) WFLYEJB0482: Strict pool mdb-strict-max-pool is using a max instance size of 16 (per class), which is derived from the number of CPUs on this host.
21:33:25,147 INFO  [org.jboss.as.ejb3] (MSC service thread 1-6) WFLYEJB0481: Strict pool slsb-strict-max-pool is using a max instance size of 64 (per class), which is derived from thread worker pool sizing.
21:33:25,399 INFO  [org.wildfly.extension.undertow] (ServerService Thread Pool -- 77) WFLYUT0014: Creating file handler for path '/opt/wildfly/welcome-content' with options [directory-listing: 'false', follow-symlink: 'false', case-sensitive: 'true', safe-symlink-paths: '[]']
21:33:25,453 INFO  [org.wildfly.extension.undertow] (MSC service thread 1-1) WFLYUT0012: Started server default-server.
21:33:25,460 INFO  [org.wildfly.extension.undertow] (MSC service thread 1-4) WFLYUT0018: Host default-host starting
21:33:25,874 INFO  [org.wildfly.extension.undertow] (MSC service thread 1-3) WFLYUT0006: Undertow HTTP listener default listening on 127.0.0.1:8180
21:33:26,026 INFO  [org.wildfly.iiop.openjdk] (MSC service thread 1-7) WFLYIIOP0009: CORBA ORB Service started
21:33:26,035 INFO  [org.jboss.as.ejb3] (MSC service thread 1-5) WFLYEJB0493: EJB subsystem suspension complete
21:33:26,114 INFO  [org.jboss.as.patching] (MSC service thread 1-3) WFLYPAT0050: WildFly Full cumulative patch ID is: base, one-off patches include: none
21:33:26,127 INFO  [org.jboss.as.connector.subsystems.datasources] (MSC service thread 1-5) WFLYJCA0001: Bound data source [java:/jdbc/MySqlDS2]
21:33:26,154 WARN  [org.jboss.as.domain.management.security] (MSC service thread 1-4) WFLYDM0111: Keystore /opt/wildfly/standalone/configuration/application.keystore not found, it will be auto generated on first use with a self signed certificate for host localhost
21:33:26,216 INFO  [org.jboss.as.server.deployment] (MSC service thread 1-7) WFLYSRV0027: Starting deployment of "Loucademia.war" (runtime-name: "Loucademia.war")
21:33:26,216 INFO  [org.jboss.as.server.deployment] (MSC service thread 1-3) WFLYSRV0027: Starting deployment of "JavaEE31.war" (runtime-name: "JavaEE31.war")
21:33:26,216 INFO  [org.jboss.as.server.deployment] (MSC service thread 1-8) WFLYSRV0027: Starting deployment of "GT.war" (runtime-name: "GT.war")
21:33:26,219 INFO  [org.jboss.as.server.deployment] (MSC service thread 1-8) WFLYSRV0027: Starting deployment of "JavaEE34Flash.war" (runtime-name: "JavaEE34Flash.war")
21:33:26,220 INFO  [org.jboss.as.server.deployment] (MSC service thread 1-4) WFLYSRV0027: Starting deployment of "JavaEEex01.war" (runtime-name: "JavaEEex01.war")
21:33:26,226 INFO  [org.jboss.as.server.deployment] (MSC service thread 1-4) WFLYSRV0027: Starting deployment of "JavaEE402.war" (runtime-name: "JavaEE402.war")
21:33:26,227 INFO  [org.jboss.as.server.deployment] (MSC service thread 1-4) WFLYSRV0027: Starting deployment of "JavaEE4ex01.war" (runtime-name: "JavaEE4ex01.war")
21:33:26,227 INFO  [org.jboss.as.server.deployment] (MSC service thread 1-4) WFLYSRV0027: Starting deployment of "JavaEE905CRUD.war" (runtime-name: "JavaEE905CRUD.war")
21:33:26,227 INFO  [org.jboss.as.server.deployment] (MSC service thread 1-4) WFLYSRV0027: Starting deployment of "JavaEE405Resources.war" (runtime-name: "JavaEE405Resources.war")
21:33:26,228 INFO  [org.jboss.as.server.deployment] (MSC service thread 1-4) WFLYSRV0027: Starting deployment of "JavaEE407conversores.war" (runtime-name: "JavaEE407conversores.war")
21:33:26,228 INFO  [org.jboss.as.server.deployment] (MSC service thread 1-4) WFLYSRV0027: Starting deployment of "JavaEE412tabDin.war" (runtime-name: "JavaEE412tabDin.war")
21:33:26,228 INFO  [org.jboss.as.server.deployment] (MSC service thread 1-4) WFLYSRV0027: Starting deployment of "JavaEE414binaryOutput.war" (runtime-name: "JavaEE414binaryOutput.war")
21:33:26,219 INFO  [org.jboss.as.server.deployment] (MSC service thread 1-8) WFLYSRV0027: Starting deployment of "JSF_JDBC_Connection01.war" (runtime-name: "JSF_JDBC_Connection01.war")
21:33:26,229 INFO  [org.jboss.as.server.deployment] (MSC service thread 1-8) WFLYSRV0027: Starting deployment of "JavaEE32Outcome.war" (runtime-name: "JavaEE32Outcome.war")
21:33:26,229 INFO  [org.jboss.as.server.deployment] (MSC service thread 1-8) WFLYSRV0027: Starting deployment of "JavaEE702Template.war" (runtime-name: "JavaEE702Template.war")
21:33:26,229 INFO  [org.jboss.as.server.deployment.scanner] (MSC service thread 1-4) WFLYDS0013: Started FileSystemDeploymentService for directory /opt/wildfly/standalone/deployments
21:33:26,219 INFO  [org.jboss.as.server.deployment] (MSC service thread 1-7) WFLYSRV0027: Starting deployment of "JavaEE404html5.war" (runtime-name: "JavaEE404html5.war")
21:33:26,220 INFO  [org.jboss.as.server.deployment] (MSC service thread 1-3) WFLYSRV0027: Starting deployment of "JavaEE802Stateless.war" (runtime-name: "JavaEE802Stateless.war")
21:33:26,230 INFO  [org.jboss.as.server.deployment] (MSC service thread 1-7) WFLYSRV0027: Starting deployment of "JavaEE49validadores.war" (runtime-name: "JavaEE49validadores.war")
21:33:26,230 INFO  [org.jboss.as.server.deployment] (MSC service thread 1-3) WFLYSRV0027: Starting deployment of "JavaEE413repeat.war" (runtime-name: "JavaEE413repeat.war")
21:33:26,230 INFO  [org.jboss.as.server.deployment] (MSC service thread 1-7) WFLYSRV0027: Starting deployment of "JavaEE3ex01.war" (runtime-name: "JavaEE3ex01.war")
21:33:26,231 INFO  [org.jboss.as.server.deployment] (MSC service thread 1-3) WFLYSRV0027: Starting deployment of "JavaEE904JPAproject.war" (runtime-name: "JavaEE904JPAproject.war")
21:33:26,231 INFO  [org.jboss.as.server.deployment] (MSC service thread 1-7) WFLYSRV0027: Starting deployment of "JavaEE409validadores.war" (runtime-name: "JavaEE409validadores.war")
21:33:26,220 INFO  [org.jboss.as.server.deployment] (MSC service thread 1-5) WFLYSRV0027: Starting deployment of "JavaEE53cdiBeans.war" (runtime-name: "JavaEE53cdiBeans.war")
21:33:26,230 INFO  [org.jboss.as.server.deployment] (MSC service thread 1-8) WFLYSRV0027: Starting deployment of "JavaEEMySQL_JDBC.war" (runtime-name: "JavaEEMySQL_JDBC.war")
21:33:26,219 INFO  [org.jboss.as.server.deployment] (MSC service thread 1-1) WFLYSRV0027: Starting deployment of "JavaEE62AjaxValidation.war" (runtime-name: "JavaEE62AjaxValidation.war")
21:33:26,230 INFO  [org.jboss.as.server.deployment] (MSC service thread 1-4) WFLYSRV0027: Starting deployment of "JavaEE47conversores.war" (runtime-name: "JavaEE47conversores.war")
21:33:26,243 INFO  [org.apache.activemq.artemis.core.server] (ServerService Thread Pool -- 80) AMQ221000: live Message Broker is starting with configuration Broker Configuration (clustered=false,journalDirectory=/opt/wildfly/standalone/data/activemq/journal,bindingsDirectory=/opt/wildfly/standalone/data/activemq/bindings,largeMessagesDirectory=/opt/wildfly/standalone/data/activemq/largemessages,pagingDirectory=/opt/wildfly/standalone/data/activemq/paging)
21:33:26,422 INFO  [org.apache.activemq.artemis.core.server] (ServerService Thread Pool -- 80) AMQ221012: Using AIO Journal
21:33:26,448 INFO  [org.wildfly.extension.undertow] (MSC service thread 1-1) WFLYUT0006: Undertow HTTPS listener https listening on 127.0.0.1:8543
21:33:26,515 INFO  [org.apache.activemq.artemis.core.server] 
WFLYCTL0448: 566 additional services are down due to their dependencies being missing or failed
21:33:32,737 INFO  [org.jboss.as.server] (Controller Boot Thread) WFLYSRV0212: Resuming server
21:33:32,745 INFO  [org.jboss.as] (Controller Boot Thread) WFLYSRV0060: Http management interface listening on http://127.0.0.1:10090/management
21:33:32,745 INFO  [org.jboss.as] (Controller Boot Thread) WFLYSRV0051: Admin console listening on http://127.0.0.1:10090
21:33:32,745 ERROR [org.jboss.as] (Controller Boot Thread) WFLYSRV0026: WildFly Full 15.0.0.Final (WildFly Core 7.0.0.Final) started (with errors) in 11343ms - Started 2403 of 3280 services (644 services failed or missing dependencies, 469 services are lazy, passive or on-demand)
(ServerService Thread Pool -- 80) AMQ221057: Global Max Size is being adjusted to 1/2 of the JVM max size (-Xmx). being defined as 238.813.184
    21:33:26,602 INFO  [org.apache.activemq.artemis.core.server] (ServerService Thread Pool -- 80) AMQ221043: Protocol module found: [artemis-server]. Adding protocol support for: CORE
    21:33:26,603 INFO  [org.apache.activemq.artemis.core.server] (ServerService Thread Pool -- 80) AMQ221043: Protocol module found: [artemis-amqp-protocol]. Adding protocol support for: AMQP
    21:33:26,603 INFO  [org.apache.activemq.artemis.core.server] (ServerService Thread Pool -- 80) AMQ221043: Protocol module found: [artemis-hornetq-protocol]. Adding protocol support for: HORNETQ
    21:33:26,603 INFO  [org.apache.activemq.artemis.core.server] (ServerService Thread Pool -- 80) AMQ221043: Protocol module found: [artemis-stomp-protocol]. Adding protocol support for: STOMP
    21:33:26,605 INFO  [org.jboss.ws.common.management] (MSC service thread 1-6) JBWS022052: Starting JBossWS 5.2.4.Final (Apache CXF 3.2.5.jbossorg-1) 
    21:33:26,899 INFO  [org.apache.activemq.artemis.core.server] (ServerService Thread Pool -- 80) AMQ221034: Waiting indefinitely to obtain live lock
    21:33:26,899 INFO  [org.apache.activemq.artemis.core.server] (ServerService Thread Pool -- 80) AMQ221035: Live Server Obtained live lock
    21:33:27,825 INFO  [org.jboss.as.jpa] (MSC service thread 1-7) WFLYJPA0002: Read persistence.xml for appPU
    21:33:27,825 INFO  [org.jboss.as.jpa] (MSC service thread 1-8) WFLYJPA0002: Read persistence.xml for JavaEE905CRUDpart2B
    21:33:28,244 INFO  [org.jboss.as.jpa] (MSC service thread 1-3) WFLYJPA0002: Read persistence.xml for Loucademia
    21:33:28,647 INFO  [org.wildfly.extension.messaging-activemq] (MSC service thread 1-3) WFLYMSGAMQ0016: Registered HTTP upgrade for activemq-remoting protocol handled by http-acceptor-throughput acceptor
    21:33:28,650 INFO  [org.wildfly.extension.messaging-activemq] (MSC service thread 1-7) WFLYMSGAMQ0016: Registered HTTP upgrade for activemq-remoting protocol handled by http-acceptor acceptor
    21:33:28,650 INFO  [org.wildfly.extension.messaging-activemq] (MSC service thread 1-2) WFLYMSGAMQ0016: Registered HTTP upgrade for activemq-remoting protocol handled by http-acceptor-throughput acceptor
    21:33:28,657 INFO  [org.wildfly.extension.messaging-activemq] (MSC service thread 1-8) WFLYMSGAMQ0016: Registered HTTP upgrade for activemq-remoting protocol handled by http-acceptor acceptor
    21:33:28,850 INFO  [org.jboss.weld.deployer] (MSC service thread 1-4) WFLYWELD0003: Processing weld deployment JavaEE702Template.war
    21:33:28,850 INFO  [org.jboss.weld.deployer] (MSC service thread 1-7) WFLYWELD0003: Processing weld deployment JavaEE47conversores.war
    21:33:28,851 INFO  [org.jboss.weld.deployer] (MSC service thread 1-6) WFLYWELD0003: Processing weld deployment JavaEE413repeat.war
    21:33:28,859 INFO  [org.jboss.weld.deployer] (MSC service thread 1-8) WFLYWELD0003: Processing weld deployment JavaEE31.war
    21:33:28,859 INFO  [org.jboss.weld.deployer] (MSC service thread 1-2) WFLYWELD0003: Processing weld deployment JavaEE3ex01.war
    21:33:28,860 INFO  [org.jboss.weld.deployer] (MSC service thread 1-3) WFLYWELD0003: Processing weld deployment JavaEE62AjaxValidation.war
    21:33:28,859 INFO  [org.jboss.weld.deployer] (MSC service thread 1-5) WFLYWELD0003: Processing weld deployment JavaEE4ex01.war
    21:33:28,941 INFO  [org.apache.activemq.artemis.core.server] (ServerService Thread Pool -- 80) AMQ221007: Server is now live
    21:33:28,942 INFO  [org.apache.activemq.artemis.core.server] (ServerService Thread Pool -- 80) AMQ221001: Apache ActiveMQ Artemis Message Broker version 2.6.3.jbossorg-00014 [default, nodeID=fc00f6d9-4fbf-11e9-80c0-000854d9c6db] 
    21:33:29,059 INFO  [org.hibernate.validator.internal.util.Version] (MSC service thread 1-5) HV000001: Hibernate Validator 6.0.13.Final
    21:33:29,081 INFO  [org.jboss.weld.deployer] (MSC service thread 1-1) WFLYWELD0003: Processing weld deployment JavaEE402.war
    21:33:29,642 ERROR [org.jboss.msc.service.fail] (MSC service thread 1-3) MSC000001: Failed to start service jboss.deployment.unit."JavaEE905CRUD.war".FIRST_MODULE_USE: org.jboss.msc.service.StartException in service jboss.deployment.unit."JavaEE905CRUD.war".FIRST_MODULE_USE: WFLYSRV0153: Failed to process phase FIRST_MODULE_USE of deployment "JavaEE905CRUD.war"
    	at org.jboss.as.server.deployment.DeploymentUnitPhaseService.start(DeploymentUnitPhaseService.java:151)
    	at org.jboss.msc.service.ServiceControllerImpl$StartTask.startService(ServiceControllerImpl.java:1738)
    	at org.jboss.msc.service.ServiceControllerImpl$StartTask.execute(ServiceControllerImpl.java:1700)
    	at org.jboss.msc.service.ServiceControllerImpl$ControllerTask.run(ServiceControllerImpl.java:1558)
    	at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35)
    	at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:1985)
    	at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1487)
    	at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1364)
    	at java.lang.Thread.run(Thread.java:748)
    Caused by: javax.persistence.PersistenceException: WFLYJPA0057: PersistenceProvider 'app3PU' not found
    	at org.jboss.as.jpa.processor.PersistenceUnitServiceHandler.lookupProvider(PersistenceUnitServiceHandler.java:990)
    	at org.jboss.as.jpa.processor.PersistenceUnitServiceHandler.addPuService(PersistenceUnitServiceHandler.java:265)
    	at org.jboss.as.jpa.processor.PersistenceUnitServiceHandler.handleWarDeployment(PersistenceUnitServiceHandler.java:205)
    	at org.jboss.as.jpa.processor.PersistenceUnitServiceHandler.deploy(PersistenceUnitServiceHandler.java:133)
    	at org.jboss.as.jpa.processor.PersistenceBeginInstallProcessor.deploy(PersistenceBeginInstallProcessor.java:52)
    	at org.jboss.as.server.deployment.DeploymentUnitPhaseService.start(DeploymentUnitPhaseService.java:144)
    	... 8 more

    21:33:29,654 INFO  [org.jboss.weld.deployer] (MSC service thread 1-2) WFLYWELD0003: Processing weld deployment JavaEE34Flash.war
    21:33:29,681 INFO  [org.jboss.weld.deployer] (MSC service thread 1-3) WFLYWELD0003: Processing weld deployment JavaEE49validadores.war
    21:33:29,685 INFO  [org.jboss.weld.deployer] (MSC service thread 1-7) WFLYWELD0003: Processing weld deployment JavaEE53cdiBeans.war
    21:33:29,692 INFO  [org.jboss.weld.deployer] (MSC service thread 1-8) WFLYWELD0003: Processing weld deployment JavaEE32Outcome.war
    21:33:29,698 INFO  [org.jboss.weld.deployer] (MSC service thread 1-6) WFLYWELD0003: Processing weld deployment JavaEE407conversores.war
    21:33:29,775 INFO  [org.jboss.weld.deployer] (MSC service thread 1-4) WFLYWELD0003: Processing weld deployment JavaEEex01.war
    21:33:29,778 INFO  [org.jboss.weld.deployer] (MSC service thread 1-5) WFLYWELD0003: Processing weld deployment JavaEE405Resources.war
    21:33:29,790 INFO  [org.jboss.weld.deployer] (MSC service thread 1-7) WFLYWELD0003: Processing weld deployment JavaEE414binaryOutput.war
    21:33:29,796 INFO  [org.jboss.weld.deployer] (MSC service thread 1-8) WFLYWELD0003: Processing weld deployment JavaEE409validadores.war
    21:33:29,814 INFO  [org.jboss.weld.deployer] (MSC service thread 1-6) WFLYWELD0003: Processing weld deployment JavaEE412tabDin.war
    21:33:29,818 INFO  [org.wildfly.extension.messaging-activemq] (ServerService Thread Pool -- 85) WFLYMSGAMQ0002: Bound messaging object to jndi name java:/ConnectionFactory
    21:33:29,820 INFO  [org.wildfly.extension.messaging-activemq] (ServerService Thread Pool -- 84) WFLYMSGAMQ0002: Bound messaging object to jndi name java:jboss/exported/jms/RemoteConnectionFactory
    21:33:29,905 INFO  [org.jboss.weld.deployer] (MSC service thread 1-2) WFLYWELD0003: Processing weld deployment JavaEE802Stateless.war
    21:33:29,989 INFO  [org.jboss.as.ejb3.deployment] (MSC service thread 1-2) WFLYEJB0473: JNDI bindings for session bean named 'CounterBean' in deployment unit 'deployment "JavaEE802Stateless.war"' are as follows:

    	java:global/JavaEE802Stateless/CounterBean!br.com.marcel.javaee.ejb.CounterBean
    	java:app/JavaEE802Stateless/CounterBean!br.com.marcel.javaee.ejb.CounterBean
    	java:module/CounterBean!br.com.marcel.javaee.ejb.CounterBean
    	ejb:JavaEE802Stateless/CounterBean!br.com.marcel.javaee.ejb.CounterBean
    	java:global/JavaEE802Stateless/CounterBean
    	java:app/JavaEE802Stateless/CounterBean
    	java:module/CounterBean

    21:33:30,041 INFO  [org.jboss.weld.deployer] (MSC service thread 1-8) WFLYWELD0003: Processing weld deployment JavaEE904JPAproject.war
    21:33:30,062 INFO  [org.jboss.as.jpa] (ServerService Thread Pool -- 84) WFLYJPA0010: Starting Persistence Unit (phase 1 of 2) Service 'JavaEE904JPAproject.war#appPU'
    21:33:30,090 INFO  [org.jboss.weld.deployer] (MSC service thread 1-2) WFLYWELD0003: Processing weld deployment Loucademia.war
    21:33:30,096 INFO  [org.jboss.weld.Version] (MSC service thread 1-6) WELD-000900: 3.0.5 (Final)
    21:33:30,098 INFO  [org.jboss.as.ejb3.deployment] (MSC service thread 1-8) WFLYEJB0473: JNDI bindings for session bean named 'TarefaBean' in deployment unit 'deployment "JavaEE904JPAproject.war"' are as follows:

    	java:global/JavaEE904JPAproject/TarefaBean!br.com.marcel.javaee.ejb.TarefaBean
    	java:app/JavaEE904JPAproject/TarefaBean!br.com.marcel.javaee.ejb.TarefaBean
    	java:module/TarefaBean!br.com.marcel.javaee.ejb.TarefaBean
    	ejb:JavaEE904JPAproject/TarefaBean!br.com.marcel.javaee.ejb.TarefaBean
    	java:global/JavaEE904JPAproject/TarefaBean
    	java:app/JavaEE904JPAproject/TarefaBean
    	java:module/TarefaBean

    21:33:30,121 INFO  [org.hibernate.jpa.internal.util.LogHelper] (ServerService Thread Pool -- 84) HHH000204: Processing PersistenceUnitInfo [
    	name: appPU
    	...]
    21:33:30,126 INFO  [org.jboss.as.ejb3.deployment] (MSC service thread 1-2) WFLYEJB0473: JNDI bindings for session bean named 'AcessoService' in deployment unit 'deployment "Loucademia.war"' are as follows:

    	java:global/Loucademia/AcessoService!br.com.softblue.loucademia.application.service.AcessoService
    	java:app/Loucademia/AcessoService!br.com.softblue.loucademia.application.service.AcessoService
    	java:module/AcessoService!br.com.softblue.loucademia.application.service.AcessoService
    	ejb:Loucademia/AcessoService!br.com.softblue.loucademia.application.service.AcessoService
    	java:global/Loucademia/AcessoService
    	java:app/Loucademia/AcessoService
    	java:module/AcessoService

    21:33:30,126 INFO  [org.jboss.as.ejb3.deployment] (MSC service thread 1-2) WFLYEJB0473: JNDI bindings for session bean named 'AlunoService' in deployment unit 'deployment "Loucademia.war"' are as follows:

    	java:global/Loucademia/AlunoService!br.com.softblue.loucademia.application.service.AlunoService
    	java:app/Loucademia/AlunoService!br.com.softblue.loucademia.application.service.AlunoService
    	java:module/AlunoService!br.com.softblue.loucademia.application.service.AlunoService
    	ejb:Loucademia/AlunoService!br.com.softblue.loucademia.application.service.AlunoService
    	java:global/Loucademia/AlunoService
    	java:app/Loucademia/AlunoService
    	java:module/AlunoService

    21:33:30,126 INFO  [org.jboss.as.ejb3.deployment] (MSC service thread 1-2) WFLYEJB0473: JNDI bindings for session bean named 'DataService' in deployment unit 'deployment "Loucademia.war"' are as follows:

    	java:global/Loucademia/DataService!br.com.softblue.loucademia.application.service.DataService
    	java:app/Loucademia/DataService!br.com.softblue.loucademia.application.service.DataService
    	java:module/DataService!br.com.softblue.loucademia.application.service.DataService
    	ejb:Loucademia/DataService!br.com.softblue.loucademia.application.service.DataService
    	java:global/Loucademia/DataService
    	java:app/Loucademia/DataService
    	java:module/DataService

    21:33:30,127 INFO  [org.jboss.as.ejb3.deployment] (MSC service thread 1-2) WFLYEJB0473: JNDI bindings for session bean named 'AlunoRepository' in deployment unit 'deployment "Loucademia.war"' are as follows:

    	java:global/Loucademia/AlunoRepository!br.com.softblue.loucademia.domain.aluno.AlunoRepository
    	java:app/Loucademia/AlunoRepository!br.com.softblue.loucademia.domain.aluno.AlunoRepository
    	java:module/AlunoRepository!br.com.softblue.loucademia.domain.aluno.AlunoRepository
    	ejb:Loucademia/AlunoRepository!br.com.softblue.loucademia.domain.aluno.AlunoRepository
    	java:global/Loucademia/AlunoRepository
    	java:app/Loucademia/AlunoRepository
    	java:module/AlunoRepository

    21:33:30,127 INFO  [org.jboss.as.ejb3.deployment] (MSC service thread 1-2) WFLYEJB0473: JNDI bindings for session bean named 'AcessoRepository' in deployment unit 'deployment "Loucademia.war"' are as follows:

    	java:global/Loucademia/AcessoRepository!br.com.softblue.loucademia.domain.acesso.AcessoRepository
    	java:app/Loucademia/AcessoRepository!br.com.softblue.loucademia.domain.acesso.AcessoRepository
    	java:module/AcessoRepository!br.com.softblue.loucademia.domain.acesso.AcessoRepository
    	ejb:Loucademia/AcessoRepository!br.com.softblue.loucademia.domain.acesso.AcessoRepository
    	java:global/Loucademia/AcessoRepository
    	java:app/Loucademia/AcessoRepository
    	java:module/AcessoRepository

    21:33:30,128 INFO  [org.jboss.as.ejb3.deployment] (MSC service thread 1-2) WFLYEJB0473: JNDI bindings for session bean named 'EstadoRepository' in deployment unit 'deployment "Loucademia.war"' are as follows:

    	java:global/Loucademia/EstadoRepository!br.com.softblue.loucademia.domain.aluno.EstadoRepository
    	java:app/Loucademia/EstadoRepository!br.com.softblue.loucademia.domain.aluno.EstadoRepository
    	java:module/EstadoRepository!br.com.softblue.loucademia.domain.aluno.EstadoRepository
    	ejb:Loucademia/EstadoRepository!br.com.softblue.loucademia.domain.aluno.EstadoRepository
    	java:global/Loucademia/EstadoRepository
    	java:app/Loucademia/EstadoRepository
    	java:module/EstadoRepository

    21:33:30,218 INFO  [org.jboss.weld.deployer] (MSC service thread 1-4) WFLYWELD0003: Processing weld deployment JavaEE404html5.war
    21:33:30,479 INFO  [org.jboss.as.connector.deployment] (MSC service thread 1-3) WFLYJCA0007: Registered connection factory java:/JmsXA
    21:33:30,490 INFO  [org.jboss.weld.deployer] (MSC service thread 1-1) WFLYWELD0003: Processing weld deployment JavaEEMySQL_JDBC.war
    21:33:30,587 INFO  [org.hibernate.Version] (ServerService Thread Pool -- 84) HHH000412: Hibernate Core {5.3.7.Final}
    21:33:30,601 INFO  [org.hibernate.cfg.Environment] (ServerService Thread Pool -- 84) HHH000206: hibernate.properties not found
    21:33:30,626 INFO  [org.jboss.weld.deployer] (MSC service thread 1-5) WFLYWELD0003: Processing weld deployment JSF_JDBC_Connection01.war
    21:33:30,733 INFO  [org.jboss.as.connector.deployment] (MSC service thread 1-6) WFLYJCA0011: Unbound JCA ConnectionFactory [java:/JmsXA]
    21:33:30,733 INFO  [org.jboss.as.connector.deployment] (MSC service thread 1-6) WFLYJCA0119: Unbinding connection factory named java:/JmsXA to alias java:jboss/DefaultJMSConnectionFactory
    21:33:30,928 INFO  [org.apache.activemq.artemis.ra] (MSC service thread 1-3) AMQ151007: Resource adaptor started
    21:33:30,928 INFO  [org.jboss.as.connector.services.resourceadapters.ResourceAdapterActivatorService$ResourceAdapterActivator] (MSC service thread 1-3) IJ020002: Deployed: file://RaActivatoractivemq-ra
    21:33:31,355 INFO  [org.jboss.as.connector.deployers.jdbc] (MSC service thread 1-5) WFLYJCA0005: Deploying non-JDBC-compliant driver class com.mysql.cj.jdbc.Driver (version 8.0)
    21:33:31,360 INFO  [org.hibernate.annotations.common.Version] (ServerService Thread Pool -- 84) HCANN000001: Hibernate Commons Annotations {5.0.4.Final}
    21:33:31,412 INFO  [org.jboss.as.connector.deployers.jdbc] (MSC service thread 1-4) WFLYJCA0005: Deploying non-JDBC-compliant driver class com.mysql.cj.jdbc.Driver (version 8.0)
    21:33:31,420 INFO  [org.jboss.as.connector.deployment] (MSC service thread 1-5) WFLYJCA0002: Bound JCA ConnectionFactory [java:/JmsXA]
    21:33:31,424 INFO  [org.jboss.as.connector.deployment] (MSC service thread 1-3) WFLYJCA0118: Binding connection factory named java:/JmsXA to alias java:jboss/DefaultJMSConnectionFactory
    21:33:31,426 INFO  [org.jboss.as.connector.deployers.jdbc] (MSC service thread 1-5) WFLYJCA0018: Started Driver service with driver-name = JavaEEMySQL_JDBC.war_com.mysql.cj.jdbc.Driver_8_0
    21:33:31,464 INFO  [org.jboss.as.connector.deployers.jdbc] (MSC service thread 1-1) WFLYJCA0018: Started Driver service with driver-name = JSF_JDBC_Connection01.war_com.mysql.cj.jdbc.Driver_8_0
    21:33:31,620 INFO  [org.jboss.as.jpa] (ServerService Thread Pool -- 82) WFLYJPA0010: Starting Persistence Unit (phase 2 of 2) Service 'JavaEE904JPAproject.war#appPU'
    21:33:31,768 INFO  [org.infinispan.factories.GlobalComponentRegistry] (MSC service thread 1-8) ISPN000128: Infinispan version: Infinispan 'Infinity Minus ONE +2' 9.4.3.Final
    21:33:31,996 INFO  [org.hibernate.dialect.Dialect] (ServerService Thread Pool -- 82) HHH000400: Using dialect: org.hibernate.dialect.MySQL57Dialect
    21:33:32,107 INFO  [org.hibernate.envers.boot.internal.EnversServiceImpl] (ServerService Thread Pool -- 82) Envers integration enabled? : true
    21:33:32,379 INFO  [org.jboss.as.clustering.infinispan] (ServerService Thread Pool -- 84) WFLYCLINF0002: Started client-mappings cache from ejb container
    21:33:32,486 INFO  [org.hibernate.tool.schema.internal.SchemaCreatorImpl] (ServerService Thread Pool -- 82) HHH000476: Executing import script 'org.hibernate.tool.schema.internal.exec.ScriptSourceInputNonExistentImpl@7d7865a5'
    21:33:32,510 ERROR [org.jboss.as.controller.management-operation] (Controller Boot Thread) WFLYCTL0013: Operation ("add") failed - address: ([
        ("subsystem" => "datasources"),
        ("data-source" => "ExampleDS")
    ]) - failure description: {
        "WFLYCTL0412: Required services that are not installed:" => ["jboss.jdbc-driver.h2"],
        "WFLYCTL0180: Services with missing/unavailable dependencies" => [
            "org.wildfly.data-source.ExampleDS is missing [jboss.jdbc-driver.h2]",
            "jboss.driver-demander.java:jboss/datasources/ExampleDS is missing [jboss.jdbc-driver.h2]"
        ]
    }
    21:33:32,517 ERROR [org.jboss.as.controller.management-operation] (Controller Boot Thread) WFLYCTL0013: Operation ("deploy") failed - address: ([("deployment" => "Loucademia.war")]) - failure description: {
        "WFLYCTL0412: Required services that are not installed:" => ["jboss.naming.context.java.jdbc.LoucaDS"],
        "WFLYCTL0180: Services with missing/unavailable dependencies" => [
            "jboss.persistenceunit.\"Loucademia.war#Loucademia\" is missing [jboss.naming.context.java.jdbc.LoucaDS]",
            "jboss.persistenceunit.\"Loucademia.war#Loucademia\".__FIRST_PHASE__ is missing [jboss.naming.context.java.jdbc.LoucaDS]"
        ]
    }
    21:33:32,519 ERROR [org.jboss.as.controller.management-operation] (Controller Boot Thread) WFLYCTL0013: Operation ("deploy") failed - address: ([("deployment" => "JavaEE905CRUD.war")]) - failure description: {"WFLYCTL0080: Failed services" => {"jboss.deployment.unit.\"JavaEE905CRUD.war\".FIRST_MODULE_USE" => "WFLYSRV0153: Failed to process phase FIRST_MODULE_USE of deployment \"JavaEE905CRUD.war\"
        Caused by: javax.persistence.PersistenceException: WFLYJPA0057: PersistenceProvider 'app3PU' not found"}}
    21:33:32,520 ERROR [org.jboss.as.controller.management-operation] (Controller Boot Thread) WFLYCTL0013: Operation ("add") failed - address: ([
        ("subsystem" => "datasources"),
        ("data-source" => "ExampleDS")
    ]) - failure description: {
        "WFLYCTL0412: Required services that are not installed:" => [
            "jboss.jdbc-driver.h2",
            "jboss.jdbc-driver.h2"
        ],
        "WFLYCTL0180: Services with missing/unavailable dependencies" => [
            "org.wildfly.data-source.ExampleDS is missing [jboss.jdbc-driver.h2]",
            "jboss.driver-demander.java:jboss/datasources/ExampleDS is missing [jboss.jdbc-driver.h2]",
            "org.wildfly.data-source.ExampleDS is missing [jboss.jdbc-driver.h2]"
        ]
    }
    21:33:32,570 INFO  [org.jboss.as.server] (ServerService Thread Pool -- 46) WFLYSRV0010: Deployed "JavaEE904JPAproject.war" (runtime-name : "JavaEE904JPAproject.war")
    21:33:32,570 INFO  [org.jboss.as.server] (ServerService Thread Pool -- 46) WFLYSRV0010: Deployed "JavaEE905CRUD.war" (runtime-name : "JavaEE905CRUD.war")
    21:33:32,570 INFO  [org.jboss.as.server] (ServerService Thread Pool -- 46) WFLYSRV0010: Deployed "JavaEE702Template.war" (runtime-name : "JavaEE702Template.war")
    21:33:32,570 INFO  [org.jboss.as.server] (ServerService Thread Pool -- 46) WFLYSRV0010: Deployed "Loucademia.war" (runtime-name : "Loucademia.war")
    21:33:32,570 INFO  [org.jboss.as.server] (ServerService Thread Pool -- 46) WFLYSRV0010: Deployed "JavaEE4ex01.war" (runtime-name : "JavaEE4ex01.war")
    21:33:32,571 INFO  [org.jboss.as.server] (ServerService Thread Pool -- 46) WFLYSRV0010: Deployed "JavaEEMySQL_JDBC.war" (runtime-name : "JavaEEMySQL_JDBC.war")
    21:33:32,571 INFO  [org.jboss.as.server] (ServerService Thread Pool -- 46) WFLYSRV0010: Deployed "JavaEE404html5.war" (runtime-name : "JavaEE404html5.war")
    21:33:32,571 INFO  [org.jboss.as.server] (ServerService Thread Pool -- 46) WFLYSRV0010: Deployed "JavaEE3ex01.war" (runtime-name : "JavaEE3ex01.war")
    21:33:32,571 INFO  [org.jboss.as.server] (ServerService Thread Pool -- 46) WFLYSRV0010: Deployed "JavaEE413repeat.war" (runtime-name : "JavaEE413repeat.war")
    21:33:32,571 INFO  [org.jboss.as.server] (ServerService Thread Pool -- 46) WFLYSRV0010: Deployed "JavaEE414binaryOutput.war" (runtime-name : "JavaEE414binaryOutput.war")
    21:33:32,571 INFO  [org.jboss.as.server] (ServerService Thread Pool -- 46) WFLYSRV0010: Deployed "JavaEE47conversores.war" (runtime-name : "JavaEE47conversores.war")
    21:33:32,571 INFO  [org.jboss.as.server] (ServerService Thread Pool -- 46) WFLYSRV0010: Deployed "JavaEE412tabDin.war" (runtime-name : "JavaEE412tabDin.war")
    21:33:32,571 INFO  [org.jboss.as.server] (ServerService Thread Pool -- 46) WFLYSRV0010: Deployed "JavaEE402.war" (runtime-name : "JavaEE402.war")
    21:33:32,572 INFO  [org.jboss.as.server] (ServerService Thread Pool -- 46) WFLYSRV0010: Deployed "JavaEE53cdiBeans.war" (runtime-name : "JavaEE53cdiBeans.war")
    21:33:32,572 INFO  [org.jboss.as.server] (ServerService Thread Pool -- 46) WFLYSRV0010: Deployed "JSF_JDBC_Connection01.war" (runtime-name : "JSF_JDBC_Connection01.war")
    21:33:32,572 INFO  [org.jboss.as.server] (ServerService Thread Pool -- 46) WFLYSRV0010: Deployed "JavaEE407conversores.war" (runtime-name : "JavaEE407conversores.war")
    21:33:32,572 INFO  [org.jboss.as.server] (ServerService Thread Pool -- 46) WFLYSRV0010: Deployed "GT.war" (runtime-name : "GT.war")
    21:33:32,572 INFO  [org.jboss.as.server] (ServerService Thread Pool -- 46) WFLYSRV0010: Deployed "JavaEE34Flash.war" (runtime-name : "JavaEE34Flash.war")
    21:33:32,572 INFO  [org.jboss.as.server] (ServerService Thread Pool -- 46) WFLYSRV0010: Deployed "JavaEE31.war" (runtime-name : "JavaEE31.war")
    21:33:32,572 INFO  [org.jboss.as.server] (ServerService Thread Pool -- 46) WFLYSRV0010: Deployed "JavaEE49validadores.war" (runtime-name : "JavaEE49validadores.war")
    21:33:32,572 INFO  [org.jboss.as.server] (ServerService Thread Pool -- 46) WFLYSRV0010: Deployed "JavaEE62AjaxValidation.war" (runtime-name : "JavaEE62AjaxValidation.war")
    21:33:32,572 INFO  [org.jboss.as.server] (ServerService Thread Pool -- 46) WFLYSRV0010: Deployed "JavaEE32Outcome.war" (runtime-name : "JavaEE32Outcome.war")
    21:33:32,573 INFO  [org.jboss.as.server] (ServerService Thread Pool -- 46) WFLYSRV0010: Deployed "JavaEE409validadores.war" (runtime-name : "JavaEE409validadores.war")
    21:33:32,573 INFO  [org.jboss.as.server] (ServerService Thread Pool -- 46) WFLYSRV0010: Deployed "JavaEEex01.war" (runtime-name : "JavaEEex01.war")
    21:33:32,573 INFO  [org.jboss.as.server] (ServerService Thread Pool -- 46) WFLYSRV0010: Deployed "JavaEE405Resources.war" (runtime-name : "JavaEE405Resources.war")
    21:33:32,573 INFO  [org.jboss.as.server] (ServerService Thread Pool -- 46) WFLYSRV0010: Deployed "JavaEE802Stateless.war" (runtime-name : "JavaEE802Stateless.war")
    21:33:32,579 INFO  [org.jboss.as.controller] (Controller Boot Thread) WFLYCTL0183: Service status report
    WFLYCTL0184:    New missing/unsatisfied dependencies:
          service jboss.jdbc-driver.h2 (missing) dependents: [service org.wildfly.data-source.ExampleDS, service jboss.driver-demander.java:jboss/datasources/ExampleDS] 
          service jboss.naming.context.java.jdbc.LoucaDS (missing) dependents: [service jboss.persistenceunit."Loucademia.war#Loucademia".__FIRST_PHASE__, service jboss.persistenceunit."Loucademia.war#Loucademia"] 
    WFLYCTL0186:   Services which failed to start:      service jboss.deployment.unit."JavaEE905CRUD.war".FIRST_MODULE_USE: WFLYSRV0153: Failed to process phase FIRST_MODULE_USE of deployment "JavaEE905CRUD.war"

O erro diz que a sua classe Tarefa não esta no arquivo persistence.xml, então coloca ela dentro da tag persistence-unit

<class>br.com.marcel.javaee.model.Tarefa</class>

olá Mike,

quando faço ela faz o provider ficar com erro:

E a página continua com o erro

As suas imagens não estão aparecendo aqui.

O importante é mudar o erro. O erro de que ela não foi encontrada no persistence.xml já foi resolvido, agora falta resolver o erro do provider

Da Ctrl + C no erro e Ctrl + V aqui

cvc-complex-type.2.4.a: Invalid content was found starting with element 'provider'. One of '{"http://xmlns.jcp.org/xml/ns/
 persistence":class, "http://xmlns.jcp.org/xml/ns/persistence":exclude-unlisted-classes, "http://xmlns.jcp.org/xml/ns/
 persistence":shared-cache-mode, "http://xmlns.jcp.org/xml/ns/persistence":validation-mode, "http://xmlns.jcp.org/xml/ns/
 persistence":properties}' is expected.

Você colocou a tag provider antes de class?

Posta como ficou o seu persistence.xml

olá, bom dia.

<?xml version="1.0" encoding="UTF-8"?>
<persistence version="2.1" xmlns="http://xmlns.jcp.org/xml/ns/persistence" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/persistence http://xmlns.jcp.org/xml/ns/persistence/persistence_2_1.xsd">
	<persistence-unit name="JavaEE905CRUD">
		<class>br.com.marcel.javaee.model.Tarefa</class>
		<provider>app3PU</provider>
		<jta-data-source>jdbc/MySqlDS2</jta-data-source>
		<properties>
			<property name="javax.persistence.schema-generation.create-database-schemas" value="false"/>
		</properties>
	</persistence-unit>
</persistence>

desta forma some os erros:

<?xml version="1.0" encoding="UTF-8"?>
<persistence version="2.1" xmlns="http://xmlns.jcp.org/xml/ns/persistence" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/persistence http://xmlns.jcp.org/xml/ns/persistence/persistence_2_1.xsd">
	<persistence-unit name="JavaEE905CRUD">
	    <provider>app3PU</provider>
	    <jta-data-source>jdbc/MySqlDS2</jta-data-source>
		<class>br.com.marcel.javaee.model.Tarefa</class>		
		<properties>
			<property name="javax.persistence.schema-generation.create-database-schemas" value="false"/>
		</properties>
	</persistence-unit>
</persistence>

agora só o erro para publicar no navegador o seguinte arquivo:

<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
	xmlns:f="http://xmlns.jcp.org/jsf/core"
	xmlns:h="http://xmlns.jcp.org/jsf/html"
	xmlns:ui="http://xmlns.jcp.org/jsf/facelets">
<h:head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Aula04 teste</title>
</h:head>
<body>
	<h2><h:outputText value="Um texto qualquer " /> </h2> <br />
	
	<h2><h:outputText value="#{bean.mensagem} " /> </h2>


</body>
</html>

Navegador:
http://localhost:8180/JavaEE905CRUD/form.xhtml

404 - Not Found

console

09:15:11,426 INFO  [org.jboss.as.controller] (Controller Boot Thread) WFLYCTL0183: Service status report
WFLYCTL0184:    New missing/unsatisfied dependencies:
      service jboss.jdbc-driver.h2 (missing) dependents: [service org.wildfly.data-source.ExampleDS, service jboss.driver-demander.java:jboss/datasources/ExampleDS] 
      service jboss.naming.context.java.jdbc.LoucaDS (missing) dependents: [service jboss.persistenceunit."Loucademia.war#Loucademia".__FIRST_PHASE__, service jboss.persistenceunit."Loucademia.war#Loucademia"] 
WFLYCTL0186:   Services which failed to start:      service jboss.deployment.unit."JavaEE905CRUD.war".FIRST_MODULE_USE: WFLYSRV0153: Failed to process phase FIRST_MODULE_USE of deployment "JavaEE905CRUD.war"
WFLYCTL0448: 551 additional services are down due to their dependencies being missing or failed
09:15:11,535 INFO  [org.jboss.as.server] (Controller Boot Thread) WFLYSRV0212: Resuming server
09:15:11,539 INFO  [org.jboss.as] (Controller Boot Thread) WFLYSRV0060: Http management interface listening on http://127.0.0.1:10090/management
09:15:11,539 INFO  [org.jboss.as] (Controller Boot Thread) WFLYSRV0051: Admin console listening on http://127.0.0.1:10090
09:15:11,540 ERROR [org.jboss.as] (Controller Boot Thread) WFLYSRV0026: WildFly Full 15.0.0.Final (WildFly Core 7.0.0.Final) started (with errors) in 25952ms - Started 2391 of 3251 services (627 services failed or missing dependencies, 469 services are lazy, passive or on-demand)

É que o provider tem que estar antes de class

Bora arrumar esse erro então

A sua porta é a 8180 mesmo? A padrão é 8080.

Posta o código do arquivo web.xml também.

Aparentemente esta faltando o driver do banco no datasource ExampleDS (que é o que ja vem no WildFly se não me engano), mas você nem esta usando-o. Bom… Eu deletaria esse datasource.

Quando você configurou o seu datasource, você colocou o driver do mysql la?

Você esta usando o Eclipse? Se sim, botão direito no projeto -> properties -> Web Projects Settings -> Cola aqui o que esta escrito no campo Context Root

Uso o Eclipse Oxygen
A porta é a 8180, eu modifiquei por que tenho o Tomcat na 8080
no navegador: http://localhost:8180/
aparece
welcome to Wildfly …

web.xml

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://xmlns.jcp.org/xml/ns/javaee" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd" id="WebApp_ID" version="3.1">
  <display-name>JavaEE905CRUD</display-name>
  <welcome-file-list>
    <welcome-file>form.xhtml</welcome-file>
    <welcome-file>index.htm</welcome-file>
    <welcome-file>index.jsp</welcome-file>
    <welcome-file>default.html</welcome-file>
    <welcome-file>default.htm</welcome-file>
    <welcome-file>default.jsp</welcome-file>
  </welcome-file-list>
  <servlet>
    <servlet-name>Faces Servlet</servlet-name>
    <servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
    <load-on-startup>1</load-on-startup>
  </servlet>
  <servlet-mapping>
    <servlet-name>Faces Servlet</servlet-name>
    <url-pattern>*.xhtml</url-pattern>
  </servlet-mapping>
 
</web-app>

O driver está configurado:
root@brainiac-desktop:/opt/wildfly/modules/system/layers/base/com/mysql/main# ls module.xml mysql-connector-java-8.0.13.jar

Apaguei o ExampleDS

Uma coisa que notei é que ao instalar o wildfly 15.0.0.0, no Eclipse aparecia wildfly 12 e o escolhi e tudo funcionava normal.
Mas de uns 15 dias para cá passou a funcionar o 15.0.0.0 mesmo

Só tem isso de erro? Se tiver mais posta tudo

O seu arquivo form.xhtml esta apenas dentro de WebContent ou esta dentro de outra pasta que esta dentro de WebContent? Tenta postar a estrutura das pastas novamente

form.xhtml está em webContent, minimizando WEB-INF só o form.xhtml aparece.

console
10:01:01,265 ERROR [org.jboss.as.controller.management-operation] (ServerService Thread Pool – 45) WFLYCTL0013: Operation (“add”) failed - address: ([
(“subsystem” => “datasources”),
(“jdbc-driver” => “h2”)
]) - failure description: “WFLYJCA0041: Failed to load module for driver [com.h2database.h2]”

23 ERROR [org.jboss.msc.service.fail] (MSC service thread 1-4) MSC000001: Failed to start service jboss.deployment.unit."JavaEE905CRUD.war".FIRST_MODULE_USE: org.jboss.msc.service.StartException in service jboss.deployment.unit."JavaEE905CRUD.war".FIRST_MODULE_USE: WFLYSRV0153: Failed to process phase FIRST_MODULE_USE of deployment "JavaEE905CRUD.war"
	at org.jboss.as.server.deployment.DeploymentUnitPhaseService.start(DeploymentUnitPhaseService.java:151)
	at org.jboss.msc.service.ServiceControllerImpl$StartTask.startService(ServiceControllerImpl.java:1738)
	at org.jboss.msc.service.ServiceControllerImpl$StartTask.execute(ServiceControllerImpl.java:1700)
	at org.jboss.msc.service.ServiceControllerImpl$ControllerTask.run(ServiceControllerImpl.java:1558)
	at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35)
	at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:1985)
	at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1487)
	at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1364)
	at java.lang.Thread.run(Thread.java:748)
Caused by: javax.persistence.PersistenceException: WFLYJPA0057: PersistenceProvider 'app3PU' not found
	at org.jboss.as.jpa.processor.PersistenceUnitServiceHandler.lookupProvider(PersistenceUnitServiceHandler.java:990)
	at org.jboss.as.jpa.processor.PersistenceUnitServiceHandler.addPuService(PersistenceUnitServiceHandler.java:265)
	at org.jboss.as.jpa.processor.PersistenceUnitServiceHandler.handleWarDeployment(PersistenceUnitServiceHandler.java:205)
	at org.jboss.as.jpa.processor.PersistenceUnitServiceHandler.deploy(PersistenceUnitServiceHandler.java:133)
	at org.jboss.as.jpa.processor.PersistenceBeginInstallProcessor.deploy(PersistenceBeginInstallProcessor.java:52)
	at org.jboss.as.server.deployment.DeploymentUnitPhaseService.start(DeploymentUnitPhaseService.java:144)
	... 8 more

10:01:08,068 ERROR [org.jboss.as.controller.management-operation] (Controller Boot Thread) WFLYCTL0013: Operation ("deploy") failed - address: ([("deployment" => "JSF_JDBC_Connection01.war")]) - failure description: {
    "WFLYCTL0412: Required services that are not installed:" => ["jboss.naming.context.java.jboss.datasources.ExampleDS"],
    "WFLYCTL0180: Services with missing/unavailable dependencies" => ["jboss.naming.context.java.module.JSF_JDBC_Connection01.JSF_JDBC_Connection01.DefaultDataSource is missing [jboss.naming.context.java.jboss.datasources.ExampleDS]"]
}
10:01:08,069 ERROR [org.jboss.as.controller.management-operation] (Controller Boot Thread) WFLYCTL0013: Operation ("deploy") failed - address: ([("deployment" => "JavaEE402.war")]) - failure description: {
    "WFLYCTL0412: Required services that are not installed:" => ["jboss.naming.context.java.jboss.datasources.ExampleDS"],
    "WFLYCTL0180: Services with missing/unavailable dependencies" => ["jboss.naming.context.java.module.JavaEE402.JavaEE402.DefaultDataSource is missing [jboss.naming.context.java.jboss.datasources.ExampleDS]"]
}
10:01:08,070 ERROR [org.jboss.as.controller.management-operation] (Controller Boot Thread) WFLYCTL0013: Operation ("deploy") failed - address: ([("deployment" => "JavaEE62AjaxValidation.war")]) - failure description: {
    "WFLYCTL0412: Required services that are not installed:" => ["jboss.naming.context.java.jboss.datasources.ExampleDS"],
    "WFLYCTL0180: Services with missing/unavailable dependencies" => ["jboss.naming.context.java.module.JavaEE62AjaxValidation.JavaEE62AjaxValidation.DefaultDataSource is missing [jboss.naming.context.java.jboss.datasources.ExampleDS]"]
}
10:01:08,071 ERROR [org.jboss.as.controller.management-operation] (Controller Boot Thread) WFLYCTL0013: Operation ("deploy") failed - address: ([("deployment" => "JavaEE53cdiBeans.war")]) - failure description: {
    "WFLYCTL0412: Required services that are not installed:" => ["jboss.naming.context.java.jboss.datasources.ExampleDS"],
    "WFLYCTL0180: Services with missing/unavailable dependencies" => ["jboss.naming.context.java.module.JavaEE53cdiBeans.JavaEE53cdiBeans.DefaultDataSource is missing [jboss.naming.context.java.jboss.datasources.ExampleDS]"]
}
10:01:08,072 ERROR [org.jboss.as.controller.management-operation] (Controller Boot Thread) WFLYCTL0013: Operation ("deploy") failed - address: ([("deployment" => "JavaEE407conversores.war")]) - failure description: {
    "WFLYCTL0412: Required services that are not installed:" => ["jboss.naming.context.java.jboss.datasources.ExampleDS"],
    "WFLYCTL0180: Services with missing/unavailable dependencies" => ["jboss.naming.context.java.module.JavaEE407conversores.JavaEE407conversores.DefaultDataSource is missing [jboss.naming.context.java.jboss.datasources.ExampleDS]"]
}
10:01:08,072 ERROR [org.jboss.as.controller.management-operation] (Controller Boot Thread) WFLYCTL0013: Operation ("deploy") failed - address: ([("deployment" => "GT.war")]) - failure description: {
    "WFLYCTL0412: Required services that are not installed:" => ["jboss.naming.context.java.jboss.datasources.ExampleDS"],
    "WFLYCTL0180: Services with missing/unavailable dependencies" => ["jboss.naming.context.java.module.GT.GT.DefaultDataSource is missing [jboss.naming.context.java.jboss.datasources.ExampleDS]"]
}
10:01:08,073 ERROR [org.jboss.as.controller.management-operation] (Controller Boot Thread) WFLYCTL0013: Operation ("deploy") failed - address: ([("deployment" => "JavaEE409validadores.war")]) - failure description: {
    "WFLYCTL0412: Required services that are not installed:" => ["jboss.naming.context.java.jboss.datasources.ExampleDS"],
    "WFLYCTL0180: Services with missing/unavailable dependencies" => ["jboss.naming.context.java.module.JavaEE409validadores.JavaEE409validadores.DefaultDataSource is missing [jboss.naming.context.java.jboss.datasources.ExampleDS]"]
}
10:01:08,073 ERROR [org.jboss.as.controller.management-operation] (Controller Boot Thread) WFLYCTL0013: Operation ("deploy") failed - address: ([("deployment" => "JavaEE414binaryOutput.war")]) - failure description: {
    "WFLYCTL0412: Required services that are not installed:" => ["jboss.naming.context.java.jboss.datasources.ExampleDS"],
    "WFLYCTL0180: Services with missing/unavailable dependencies" => ["jboss.naming.context.java.module.JavaEE414binaryOutput.JavaEE414binaryOutput.DefaultDataSource is missing [jboss.naming.context.java.jboss.datasources.ExampleDS]"]
}
10:01:08,074 ERROR [org.jboss.as.controller.management-operation] (Controller Boot Thread) WFLYCTL0013: Operation ("deploy") failed - address: ([("deployment" => "JavaEEMySQL_JDBC.war")]) - failure description: {
    "WFLYCTL0412: Required services that are not installed:" => ["jboss.naming.context.java.jboss.datasources.ExampleDS"],
    "WFLYCTL0180: Services with missing/unavailable dependencies" => ["jboss.naming.context.java.module.JavaEEMySQL_JDBC.JavaEEMySQL_JDBC.DefaultDataSource is missing [jboss.naming.context.java.jboss.datasources.ExampleDS]"]
}
10:01:08,075 ERROR [org.jboss.as.controller.management-operation] (Controller Boot Thread) WFLYCTL0013: Operation ("deploy") failed - address: ([("deployment" => "JavaEE49validadores.war")]) - failure description: {
    "WFLYCTL0412: Required services that are not installed:" => ["jboss.naming.context.java.jboss.datasources.ExampleDS"],
    "WFLYCTL0180: Services with missing/unavailable dependencies" => ["jboss.naming.context.java.module.JavaEE49validadores.JavaEE49validadores.DefaultDataSource is missing [jboss.naming.context.java.jboss.datasources.ExampleDS]"]
}
10:01:08,075 ERROR [org.jboss.as.controller.management-operation] (Controller Boot Thread) WFLYCTL0013: Operation ("deploy") failed - address: ([("deployment" => "JavaEE404html5.war")]) - failure description: {
    "WFLYCTL0412: Required services that are not installed:" => ["jboss.naming.context.java.jboss.datasources.ExampleDS"],
    "WFLYCTL0180: Services with missing/unavailable dependencies" => ["jboss.naming.context.java.module.JavaEE404html5.JavaEE404html5.DefaultDataSource is missing [jboss.naming.context.java.jboss.datasources.ExampleDS]"]
}
10:01:08,076 ERROR [org.jboss.as.controller.management-operation] (Controller Boot Thread) WFLYCTL0013: Operation ("deploy") failed - address: ([("deployment" => "JavaEE47conversores.war")]) - failure description: {
    "WFLYCTL0412: Required services that are not installed:" => ["jboss.naming.context.java.jboss.datasources.ExampleDS"],
    "WFLYCTL0180: Services with missing/unavailable dependencies" => ["jboss.naming.context.java.module.JavaEE47conversores.JavaEE47conversores.DefaultDataSource is missing [jboss.naming.context.java.jboss.datasources.ExampleDS]"]
}
10:01:08,076 ERROR [org.jboss.as.controller.management-operation] (Controller Boot Thread) WFLYCTL0013: Operation ("deploy") failed - address: ([("deployment" => "JavaEE702Template.war")]) - failure description: {
    "WFLYCTL0412: Required services that are not installed:" => ["jboss.naming.context.java.jboss.datasources.ExampleDS"],
    "WFLYCTL0180: Services with missing/unavailable dependencies" => ["jboss.naming.context.java.module.JavaEE702Template.JavaEE702Template.DefaultDataSource is missing [jboss.naming.context.java.jboss.datasources.ExampleDS]"]
}
10:01:08,077 ERROR [org.jboss.as.controller.management-operation] (Controller Boot Thread) WFLYCTL0013: Operation ("deploy") failed - address: ([("deployment" => "JavaEEex01.war")]) - failure description: {
    "WFLYCTL0412: Required services that are not installed:" => ["jboss.naming.context.java.jboss.datasources.ExampleDS"],
    "WFLYCTL0180: Services with missing/unavailable dependencies" => ["jboss.naming.context.java.module.JavaEEex01.JavaEEex01.DefaultDataSource is missing [jboss.naming.context.java.jboss.datasources.ExampleDS]"]
}
10:01:08,077 ERROR [org.jboss.as.controller.management-operation] (Controller Boot Thread) WFLYCTL0013: Operation ("deploy") failed - address: ([("deployment" => "JavaEE405Resources.war")]) - failure description: {
    "WFLYCTL0412: Required services that are not installed:" => ["jboss.naming.context.java.jboss.datasources.ExampleDS"],
    "WFLYCTL0180: Services with missing/unavailable dependencies" => ["jboss.naming.context.java.module.JavaEE405Resources.JavaEE405Resources.DefaultDataSource is missing [jboss.naming.context.java.jboss.datasources.ExampleDS]"]
}
10:01:08,078 ERROR [org.jboss.as.controller.management-operation] (Controller Boot Thread) WFLYCTL0013: Operation ("deploy") failed - address: ([("deployment" => "JavaEE34Flash.war")]) - failure description: {
    "WFLYCTL0412: Required services that are not installed:" => ["jboss.naming.context.java.jboss.datasources.ExampleDS"],
    "WFLYCTL0180: Services with missing/unavailable dependencies" => ["jboss.naming.context.java.module.JavaEE34Flash.JavaEE34Flash.DefaultDataSource is missing [jboss.naming.context.java.jboss.datasources.ExampleDS]"]
}
10:01:08,079 ERROR [org.jboss.as.controller.management-operation] (Controller Boot Thread) WFLYCTL0013: Operation ("deploy") failed - address: ([("deployment" => "JavaEE904JPAproject.war")]) - failure description: {
    "WFLYCTL0412: Required services that are not installed:" => ["jboss.naming.context.java.jboss.datasources.ExampleDS"],
    "WFLYCTL0180: Services with missing/unavailable dependencies" => ["jboss.naming.context.java.module.JavaEE904JPAproject.JavaEE904JPAproject.DefaultDataSource is missing [jboss.naming.context.java.jboss.datasources.ExampleDS]"]
}
10:01:08,079 ERROR [org.jboss.as.controller.management-operation] (Controller Boot Thread) WFLYCTL0013: Operation ("deploy") failed - address: ([("deployment" => "JavaEE413repeat.war")]) - failure description: {
    "WFLYCTL0412: Required services that are not installed:" => ["jboss.naming.context.java.jboss.datasources.ExampleDS"],
    "WFLYCTL0180: Services with missing/unavailable dependencies" => ["jboss.naming.context.java.module.JavaEE413repeat.JavaEE413repeat.DefaultDataSource is missing [jboss.naming.context.java.jboss.datasources.ExampleDS]"]
}
10:01:08,080 ERROR [org.jboss.as.controller.management-operation] (Controller Boot Thread) WFLYCTL0013: Operation ("deploy") failed - address: ([("deployment" => "JavaEE412tabDin.war")]) - failure description: {
    "WFLYCTL0412: Required services that are not installed:" => ["jboss.naming.context.java.jboss.datasources.ExampleDS"],
    "WFLYCTL0180: Services with missing/unavailable dependencies" => ["jboss.naming.context.java.module.JavaEE412tabDin.JavaEE412tabDin.DefaultDataSource is missing [jboss.naming.context.java.jboss.datasources.ExampleDS]"]
}
10:01:08,080 ERROR [org.jboss.as.controller.management-operation] (Controller Boot Thread) WFLYCTL0013: Operation ("deploy") failed - address: ([("deployment" => "JavaEE4ex01.war")]) - failure description: {
    "WFLYCTL0412: Required services that are not installed:" => ["jboss.naming.context.java.jboss.datasources.ExampleDS"],
    "WFLYCTL0180: Services with missing/unavailable dependencies" => ["jboss.naming.context.java.module.JavaEE4ex01.JavaEE4ex01.DefaultDataSource is missing [jboss.naming.context.java.jboss.datasources.ExampleDS]"]
}
10:01:08,081 ERROR [org.jboss.as.controller.management-operation] (Controller Boot Thread) WFLYCTL0013: Operation ("deploy") failed - address: ([("deployment" => "JavaEE3ex01.war")]) - failure description: {
    "WFLYCTL0412: Required services that are not installed:" => ["jboss.naming.context.java.jboss.datasources.ExampleDS"],
    "WFLYCTL0180: Services with missing/unavailable dependencies" => ["jboss.naming.context.java.module.JavaEE3ex01.JavaEE3ex01.DefaultDataSource is missing [jboss.naming.context.java.jboss.datasources.ExampleDS]"]
}
10:01:08,081 ERROR [org.jboss.as.controller.management-operation] (Controller Boot Thread) WFLYCTL0013: Operation ("deploy") failed - address: ([("deployment" => "JavaEE32Outcome.war")]) - failure description: {
    "WFLYCTL0412: Required services that are not installed:" => ["jboss.naming.context.java.jboss.datasources.ExampleDS"],
    "WFLYCTL0180: Services with missing/unavailable dependencies" => ["jboss.naming.context.java.module.JavaEE32Outcome.JavaEE32Outcome.DefaultDataSource is missing [jboss.naming.context.java.jboss.datasources.ExampleDS]"]
}
10:01:08,082 ERROR [org.jboss.as.controller.management-operation] (Controller Boot Thread) WFLYCTL0013: Operation ("deploy") failed - address: ([("deployment" => "JavaEE802Stateless.war")]) - failure description: {
    "WFLYCTL0412: Required services that are not installed:" => ["jboss.naming.context.java.jboss.datasources.ExampleDS"],
    "WFLYCTL0180: Services with missing/unavailable dependencies" => ["jboss.naming.context.java.module.JavaEE802Stateless.JavaEE802Stateless.DefaultDataSource is missing [jboss.naming.context.java.jboss.datasources.ExampleDS]"]
}
10:01:08,083 ERROR [org.jboss.as.controller.management-operation] (Controller Boot Thread) WFLYCTL0013: Operation ("deploy") failed - address: ([("deployment" => "Loucademia.war")]) - failure description: {
    "WFLYCTL0412: Required services that are not installed:" => [
        "jboss.naming.context.java.jdbc.LoucaDS",
        "jboss.naming.context.java.jboss.datasources.ExampleDS"
    ],
    "WFLYCTL0180: Services with missing/unavailable dependencies" => [
        "jboss.persistenceunit.\"Loucademia.war#Loucademia\" is missing [jboss.naming.context.java.jdbc.LoucaDS]",
        "jboss.persistenceunit.\"Loucademia.war#Loucademia\".__FIRST_PHASE__ is missing [jboss.naming.context.java.jdbc.LoucaDS]",
        "jboss.naming.context.java.module.Loucademia.Loucademia.DefaultDataSource is missing [jboss.naming.context.java.jboss.datasources.ExampleDS]"
    ]
}
10:01:08,084 ERROR [org.jboss.as.controller.management-operation] (Controller Boot Thread) WFLYCTL0013: Operation ("deploy") failed - address: ([("deployment" => "JavaEE905CRUD.war")]) - failure description: {"WFLYCTL0080: Failed services" => {"jboss.deployment.unit.\"JavaEE905CRUD.war\".FIRST_MODULE_USE" => "WFLYSRV0153: Failed to process phase FIRST_MODULE_USE of deployment \"JavaEE905CRUD.war\"
    Caused by: javax.persistence.PersistenceException: WFLYJPA0057: PersistenceProvider 'app3PU' not found"}}
10:01:08,084 ERROR [org.jboss.as.controller.management-operation] (Controller Boot Thread) WFLYCTL0013: Operation ("deploy") failed - address: ([("deployment" => "JavaEE31.war")]) - failure description: {
    "WFLYCTL0412: Required services that are not installed:" => ["jboss.naming.context.java.jboss.datasources.ExampleDS"],
    "WFLYCTL0180: Services with missing/unavailable dependencies" => ["jboss.naming.context.java.module.JavaEE31.JavaEE31.DefaultDataSource is missing [jboss.naming.context.java.jboss.datasources.ExampleDS]"]
}

WFLYCTL0184:    New missing/unsatisfied dependencies:
      service jboss.naming.context.java.jboss.datasources.ExampleDS (missing) dependents: [service jboss.naming.context.java.module.GT.GT.DefaultDataSource, service jboss.naming.context.java.module.JavaEEMySQL_JDBC.JavaEEMySQL_JDBC.DefaultDataSource, service jboss.naming.context.java.module.JavaEE31.JavaEE31.DefaultDataSource, service jboss.naming.context.java.module.JavaEE412tabDin.JavaEE412tabDin.DefaultDataSource, WFLYCTL0208: ... and 22 more ] 
      service jboss.naming.context.java.jdbc.LoucaDS (missing) dependents: [service jboss.persistenceunit."Loucademia.war#Loucademia".__FIRST_PHASE__, service jboss.persistenceunit."Loucademia.war#Loucademia"] 
WFLYCTL0186:   Services which failed to start:      service jboss.deployment.unit."JavaEE905CRUD.war".FIRST_MODULE_USE: WFLYSRV0153: Failed to process phase FIRST_MODULE_USE of deployment "JavaEE905CRUD.war"
WFLYCTL0448: 563 additional services are down due to their dependencies being missing or failed
10:01:08,238 INFO  [org.jboss.as.server] (Controller Boot Thread) WFLYSRV0212: Resuming server
10:01:08,244 INFO  [org.jboss.as] (Controller Boot Thread) WFLYSRV0060: Http management interface listening on http://127.0.0.1:10090/management
10:01:08,244 INFO  [org.jboss.as] (Controller Boot Thread) WFLYSRV0051: Admin console listening on http://127.0.0.1:10090
10:01:08,244 ERROR [org.jboss.as] (Controller Boot Thread) WFLYSRV0026: WildFly Full 15.0.0.Final (WildFly Core 7.0.0.Final) started (with errors) in 10356ms - Started 2402 of 3274 services (640 services failed or missing dependencies, 468 services are lazy, passive or on-demand)

Aqui tem a foto do datasources no manager, achei estranha estas 2 em vermelho

Na foto tem as pastas no Eclipse

link direto

Eu não consigo ver a foto :confused: A minha rede ta bloqueando pelo jeito

Vou tentar deixar o link
http://tinypic.com/view.php?pic=311wev5&s=9