Я работаю над простым кодом Spring MVC. Я настроил проект, используя весеннюю версию 4.3.6.RELEASE. Я установил контроллер "PageController.java", используя @Controller. У меня проблема с одним из URL-адресов, в которых я использовал @PathVariable.
@RequestMapping(value = "/test2/{greeting}", method = RequestMethod.GET)
public ModelAndView test2(@PathVariable("greeting") String greeting) {
if(null == greeting) {
greeting = "This is the second default message";
}
ModelAndView mv = new ModelAndView("page");
mv.addObject("greeting", greeting);
return mv;
}
когда я удаляю "/" из значения = "/ test2 / {приветствия}, т. Е. Преобразуя его в значение =" / test2 {приветствия}, он работает как положено. Но я хочу добавить «/», так как планирую добавить еще путь и подключить еще несколько модулей.
Я делюсь кодом ниже. Любая помощь будет высоко ценится.
Я могу нормально работать с @RequestParam, используя ту же конфигурацию.
PageController.java
@Controller
public class PageController {
@RequestMapping(value = "/test2/{greeting}", method = RequestMethod.GET)
public ModelAndView test2(@PathVariable("greeting") String greeting) {
if(null == greeting) {
greeting = "This is the second default message";
}
ModelAndView mv = new ModelAndView("page");
mv.addObject("greeting", greeting);
return mv;
}
}
web.xml
<web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee
http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd"
version="3.1">
<display-name>Archetype Created Web Application</display-name>
<!-- Configuring the front-controller -->
<servlet>
<servlet-name>dispatcher</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
</servlet>
<!-- Configuring so that every request goes through the front controller -->
<servlet-mapping>
<servlet-name>dispatcher</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>
</web-app>
диспетчер-servlet.xml
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns = "http://www.springframework.org/schema/beans"
xmlns:context = "http://www.springframework.org/schema/context"
xmlns:xsi = "http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation =
"http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context.xsd">
<context:component-scan base-package = "com.anirvana.onlineshopping.controller" />
<bean id = "viewResolver"
class = "org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name = "prefix" value = "WEB-INF/views/" />
<property name = "suffix" value = ".jsp" />
</bean>
</beans>
page.jsp
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
<c:set var="contextRoot" value="${pageContext.request.contextPath}"/>
<!DOCTYPE html>
<html>
<head>
<meta charset="ISO-8859-1">
<title>Online Shopping</title>
</head>
<body>
${contextRoot} says - ${greeting}
</body>
</html>