1

我正在寻找一种使用 web.xml 构建非 maven spring mvc 项目的方法,我想在其中使用带有 wildfly 13 的 VSCODE。我的 WebContent 看起来像这个 Web-inf 需要有一个文件夹'classes'

而不是 Web-Inf/classes ,这里正在构建类

我的 .classpath 文件如下:

<classpath>
    <classpathentry kind="src" path="Major/resources"/>
    <classpathentry kind="src" path="Major/src"/>
    <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/jdk1.8.0_111">
        <attributes>
            <attribute name="owner.project.facets" value="java"/>
        </attributes>
    </classpathentry>
    <classpathentry kind="con" path="org.eclipse.jst.server.core.container/org.jboss.ide.eclipse.as.core.server.runtime.runtimeTarget/WildFly 13.0 Runtime">
        <attributes>
            <attribute name="owner.project.facets" value="jst.web"/>
        </attributes>
    </classpathentry>
    <classpathentry kind="output" path="Major/WebContent/WEB-INF/classes"/>
</classpath>

我在这里缺少什么吗?而不是 Major/WebContent/WEB-INF/classes,类是在 Major/build/classes 中构建的。

4

0 回答 0