- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在学习 Spring boot + MVC 的工作原理。我可以在屏幕上显示一条消息,但我不能修改样式。 js e css 文件不与 Spring 映射。
2020-04-17 14:38:29.169 WARN 9552 --- [nio-8080-exec-3] o.s.web.servlet.PageNotFound : No mapping for GET /js/main.js
2020-04-17 14:38:29.169 WARN 9552 --- [nio-8080-exec-2] o.s.web.servlet.PageNotFound : No mapping for GET /css/main.css
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestParam;
@Controller
public class HelloController {
@GetMapping("/")
public String index() {
return "index";
}
@PostMapping("/hello")
public String sayhello(@RequestParam("name") String name, Model model) {
model.addAttribute("name", name);
return "hello";
}
@GetMapping({"/helloworld", "/helloname"})
public String hello(Model model, @RequestParam(value="name", required=false, defaultValue="WORLD") String name) {
model.addAttribute("name", name);
return "helloname";
}
}
我尝试修改 application.properties 中的路径,但没有任何改变。
spring.mvc.view.prefix = /WEB-INF/view/
spring.mvc.view.suffix = .jsp
spring.mvc.static-path-pattern = /resources/**
这是我的jsp页面。当我运行这个页面时,我收到了我之前发布的错误消息
<!DOCTYPE html>
<%@ taglib prefix="spring" uri="http://www.springframework.org/tags"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
<html lang="en">
<head>
<link rel="stylesheet" type="text/css"
href="webjars/bootstrap/3.3.7/css/bootstrap.min.css" />
<c:url value="/css/main.css" var="jstlCss" />
<link href="${jstlCss}" rel="stylesheet" />
</head>
<body>
<div class="container">
<header>
<h1>Spring MVC + JSP + JPA + Spring Boot 2</h1>
</header>
<div class="starter-template">
<h1>Users List</h1>
<table
class="table table-striped table-hover table-condensed table-bordered">
<tr>
<th>Date</th>
<th>Device</th>
<!-- <th>Amount</th>
<th>OEE</th> -->
</tr>
<c:forEach items="${OEE}" var="oee">
<tr>
<!-- <td>${oee.oeeID.date}</td>
<td>${oee.oeeID.device}</td> -->
<td>${oee.amount}</td>
<td>${oee.oee}</td>
</tr>
</c:forEach>
</table>
</div>
</div>
<script type="text/javascript"
src="webjars/bootstrap/3.3.7/js/bootstrap.min.js"></script>
</body>
</html>
最佳答案
用这个
@Configuration
@EnableWebMvc
public class MvcConfig implements WebMvcConfigurer {
@Override
public void addResourceHandlers(ResourceHandlerRegistry registry) {
registry.addResourceHandler("/resources/**")
.addResourceLocations("/resources/");
}
}
关于spring-boot - Web.servlet.PageNotFound - 没有 GET 映射,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61272328/
我正在尝试设置一个在我的 Spring WebMVCConfig 中未找到的页面,它无法正常工作.. 这是我的配置: @Configuration @EnableWebMvc @PropertySou
我发现很多类似的问题都询问了我遇到的问题,并尝试了很多解决方案,但似乎都不起作用。 最奇怪的是,我的一位同事可以运行该程序,因此代码不是问题。 我收到的错误是当我运行应用程序时,我无法访问 welco
这似乎是一个简单的问题,但我们无法在互联网上的任何地方找到它。 我们正在使用 Spring Security 3.2,我们希望能够在收到 spring 消息时打印远程主机的 IP: WARN [or
我知道这个问题被问过很多次,我已经尝试过 所有可能的解决方案仍然存在问题。 实际上,同一项目在Tomcat 8中运行时出现0个错误,而该错误是直接从netbeans部署的。我在eclipse中创建了一
我尝试 spring 3 mvc 这个包是org.spring.test 和代码是 @Controller @RequestMapping("/welcome") public class Welco
我尝试用我在 stackoverflow 中遇到的所有解决方案来解决这个问题,但没有一个对我有用 这是我的 web.xml: appServlet org
我正在尝试使这个示例起作用: http://www.tutorialspoint.com/spring/spring_mvc_hello_world_example.htm 在 ubuntu 15.1
我正在尝试使用 Maven 构建一个小型 Spring Restful Web 服务。我已经编写了代码,但不确定为什么它会抛出错误“未找到带有 URI 的 HTTP 请求的映射”。 我搜索了其他类似的
我正在学习 Spring boot + MVC 的工作原理。我可以在屏幕上显示一条消息,但我不能修改样式。 js e css 文件不与 Spring 映射。 2020-04-17 14:38:29.1
我想在 spring 找不到请求处理程序时记录日志,因为例如,客户端试图使用拼写错误的必需参数访问我们的 REST 服务。 推荐的方法是什么? 最佳答案 我认为它看起来像这样: @Exception
我已点击链接Example Link 创建登录应用程序。我没有在项目中使用maven。 当我运行应用程序时http://localhost:9889/SpringMVCDemo/login 重定向到下
我正在使用 spring MVC 和 spring security 构建一个应用程序,当我输入用户名和密码时,我无法导航到下一页(索引)。这是我的代码,请帮助我。 spring-servlet
我在我的 Spring MVC Controller 中遇到了一个奇怪的问题。 我的 webapp 文件夹中有四个页面 @Controller public class WelcomeControll
我正在尝试提交一个简单的登录表单,但服务器一直以“不支持请求方法‘POST’”作为警告进行响应。问题不在于表单 acion 没有响应,事实上方法响应和执行特征但无法返回结果以及我收到此警告的地方。 我
我正在尝试运行第一个 Spring 3 MVC 设置。 我的应用在 tomcat 上运行,服务器上下文为“grapevine” 出于测试目的,我正在尝试从 http://localhost:8080/
这个问题在这里已经有了答案: Why does Spring MVC respond with a 404 and report "No mapping found for HTTP request
启动服务器时出现此异常:HTTP 状态 405 - 不支持请求方法“GET” 我的 Controller 是: @Controller public class HomeController {
我被困在这一点上,无法找到确切的原因。但是,我发现了很多类似的问题,但我的问题似乎仍然没有解决。我在 sts 4 中运行它并添加了一个 tomcat 服务器 9.0在本地运行它。我发现的最接近的问题是
我正在 try catch 所有 Spring MVC 错误并显示自定义错误页面,以避免呈现 native Tomcat 页面。 我尝试使用几个@ExceptionHandler,例如: @Excep
我正在使用 spring-security-4.2.6v。 我面临的问题是,当我进入登录页面并输入有效凭据并提交时,服务器返回 404 错误和警告消息: WARN [PageNotFound] No
我是一名优秀的程序员,十分优秀!