我没有时间知道spring java,我必须在同一个项目中使用Api Rest的webapp进行Api Rest项目, 我正在使用名为ngx-admin的webapp模板,该模板使用Angular 5+&打字稿,Bootstrap 4+& SCSS等。 编译此项目时,它会生成包含我的项目的dist文件夹。这位于webapp / resources / *中,我的索引调用以下内容 文件:
`<script type="text/javascript" src="resources/inline.bundle.js"></script>`
`<script type="text/javascript" src="resources/polyfills.bundle.js"></script>`
`<script type="text/javascript" src="resources/styles.bundle.js"></script>`
`<script type="text/javascript" src="resources/scripts.bundle.js"></script>`
`<script type="text/javascript" src="resources/vendor.bundle.js"></script>`
`<script type="text/javascript" src="resources/main.bundle.js"></script>`
到目前为止一切顺利,但我的main.bundle.js
文件需要另一个名为pages.module.chunk.js
的文件,这是我怀疑的地方。
因为当我在我的tomcat上安装它时,它没有我在资源文件夹中的所有文件。我认为如何配置我的项目是一个问题
我已阅读并且大多数人说我应该提出以下指示:
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:p="http://www.springframework.org/schema/p"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:mvc="http://www.springframework.org/schema/mvc"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-4.1.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-4.1.xsd
http://www.springframework.org/schema/mvc
http://www.springframework.org/schema/mvc/spring-mvc-4.1.xsd">`
<context:component-scan base-package="com.example" />
<context:annotation-config />
<bean
class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="prefix">
<value>/WEB-INF/jsp/</value>
</property>
<property name="suffix">
<value>.jsp</value>
</property>
</bean>
<mvc:resources mapping="/resources/**" location="/resources/"/>
<mvc:default-servlet-handler/>
<mvc:annotation-driven />
</beans>