需要帮助来设置 "workplace"

Need help to setup "workplace"

嘿伙计们,我申请了工作,他们让我创建应用程序来获得他们可以使用的基本技能,但我有问题,我必须使用 java 12 J2EE8 和 wildfly 16.0.0 服务器,但我不能运行 wildfly 上的任何示例

我下载了 eclipse,然后在 eclipse jboss 中添加了 wildfly 服务器,然后我按照这个 http://www.thejavageek.com/2015/12/16/jax-rs-hello-world-example-with-wildfly/ and i checked Generate web.xml deployment descriptor (firt time i did it without but it didnt work and i looked in comments) error upon going to localhost

Wildfly 的基本形式只能支持不暗示访问给定数据库的代码,但是当您将此功能添加到代码中时,您必须配置服务器以实现该功能。
这些是如何执行此操作的不同步骤和演示:

  • 通过运行将添加用户脚本添加到 wildfly 的 bin 目录中,将管理用户添加到您的 wildfly 服务器。
  • 添加驱动程序
  • 然后您可以在浏览器中或直接在代码中添加数据源。

Here 是关于如何执行最后两个操作的 youtube 教程。 然后您可以轻松地配置您的 persistence.xml 文件,因为它在此处有详细说明:

<?xml version="1.0" encoding="UTF-8"?>
<persistence version="2.0" xmlns="http://java.sun.com/xml/ns/persistence" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/persistence http://java.sun.com/xml/ns/persistence/persistence_2_0.xsd ">
  <persistence-unit name="NOT_REQUIRED_IF_YOU_ONLY_USE_ONE" transaction-type="JTA">
    <jta-data-source>NAME_OF_YOUR_DATASOURCE</jta-data-source>
    <properties>
        <property name="hibernate.hbm2ddl.auto" value="update"/>
    </properties>
  </persistence-unit>
</persistence>

希望对您有所帮助