java—用vscode为wildfly构建非maven项目

pu82cl6c  于 2021-07-12  发布在  Java
关注(0)|答案(0)|浏览(194)

我正在寻找一种用web.xml构建一个非maven spring mvc项目的方法,我想在其中使用带有wildfly13的vscode。我的网络内容看起来像这个web inf需要一个文件夹'classes'
这里正在构建类,而不是webinf/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/webinf/classes,而是在major/build/classes中构建的。

暂无答案!

目前还没有任何答案,快来回答吧!

相关问题