我正在使用 Spring Boot,并尝试托管使用 Angular JS 的 HTML 页面。 我的文件夹结构是:
我提到了很多关于SO的其他问题,甚至是spring.io关于Spring Boot的指南,我的理解是我们应该将我们的html模板保存在templates文件夹中,并将所有.css、图像、.js文件保存在静态中文件夹。我也做了同样的事情,但是每当页面加载时,只有 html 被渲染,浏览器对所有 .css 和 .js 文件都会得到 404 错误。
我通过以下方式在 HTML 中包含 .css 和 .js :
<script src="/js/socket.io/socket.io.js"></script>
<script src="/js/moment.min.js"></script>
<script src="/js/demoApp.js"></script>
我尝试了所有组合,例如: src="../static/js/socket.io/socket.io.js" 或 src="js/socket.io/socket.io.js" 但我在浏览器中总是收到这些文件的 404 错误。
我检查了 Spring Boot 日志,它是这样写的:
2016-07-24 21:08:05 WARN PageNotFound:1139 - No mapping found for HTTP request with URI [/js/demoApp.js] in DispatcherServlet with name 'dispatcherServlet'
2016-07-24 21:08:05 DEBUG DispatcherServlet:997 - Successfully completed request
我无法理解如何解决这个问题,请帮忙!!!
注意:我没有编写视图解析器代码,因为根据我的理解,Spring Boot 会自动从静态文件夹中获取静态内容。如果我错了请纠正我。
编辑:添加我的 pom 文件:
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.3.5.RELEASE</version>
</parent>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
<exclusions>
<exclusion>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-logging</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-log4j</artifactId>
</dependency>
<!--Alexa Dependencies -->
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.3.2</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.apache.directory.studio</groupId>
<artifactId>org.apache.commons.io</artifactId>
<version>2.4</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.amazon.alexa</groupId>
<artifactId>alexa-skills-kit</artifactId>
<version>1.1</version>
</dependency>
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-lambda-java-core</artifactId>
<version>1.0.0</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-dynamodb</artifactId>
<version>1.9.40</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<verbose>true</verbose>
<source>1.8</source>
<target>1.8</target>
<showWarnings>true</showWarnings>
</configuration>
</plugin>
</plugins>
</build>
我看到你正在使用 thymeleaf,所以尝试像这样访问你的资源:
<script th:src="@{/js/socket.io/socket.io.js}"></script>
<script th:src="@{/js/moment.min.js}"></script>
<script th:src="@{/js/demoApp.js}"></script>
另外,如果这不起作用,您可以添加您的index.html。
我发现了问题,一切都是正确的,但是: 1)我没有从 WebMvcAutoConfiguration 扩展我的应用程序类。
@SpringBootApplication
@EnableWebMvc
public class HLACUIApplication extends WebMvcAutoConfiguration {
public static void main(String[] args) {
SpringApplication.run(HLACUIApplication.class, args);
}
}
应用程序类应该是这样的。
2)我不需要使用模板文件夹,因为我使用的是 angularjs 而不是 thymeleaf。我已将所有内容放入静态文件夹中。
以我的百里香为例,当我在“js”之前跳过“/”时,这很有帮助。
示例,而不是
<script src="/js/demoApp.js"></script>
我已经放了
<script src="js/demoApp.js"></script>
我也面临着同样的问题。我认为您有如下所示的
html
代码:
<html xmlns:th="http://www.thymeleaf.org">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
<title>Insert title here</title>
<!-- Main Styles -->
<link rel="stylesheet" href="/css/bar.css" />
<script src="/js/foo.js"></script>
</head>
<body>
<div>Welcome to Foo!</div>
</body>
</html>
我通过将
type="text/javascript"
添加到 <script>
元素解决了这个问题。在 Spring Boot
应用程序中,需要定义 type="text/javascript"
,否则无法加载。
您的示例的解决方案如下所示:
<html xmlns:th="http://www.thymeleaf.org">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
<title>Insert title here</title>
<!-- Main Styles -->
<link rel="stylesheet" href="/css/bar.css" />
<script type="text/javascript" src="/js/foo.js"></script>
</head>
<body>
<div>Welcome to Foo!</div>
</body>
</html>
如果您使用
Eclipse IDE
,请右键单击“项目属性/项目方面”