我实际上是按照教程来发现Spring框架的。我是网络技术的初学者。
我实际上在我的文件dispatcher-servlet.xml中遇到了问题。我相信我的<context:component-scan base-package="com.tuto.mehdi" />
无效,因为我在启动项目时遇到错误404:
我的控制台错误:
AVERTISSEMENT:找不到带URI的HTTP请求的映射 带有名称的DispatcherServlet中的[/ tutoriel-web-spring /] 'servlet-dispatcher'avr。 06,2016 2:26:34 PM org.springframework.web.servlet.PageNotFound noHandlerFound
AVERTISSEMENT:找不到带URI的HTTP请求的映射 [/ tutoriel-web-spring / bonjour]在DispatcherServlet中的名称 'servlet的调度'
这是我的代码。我相信我做得很好,但我无法确定问题。希望你能帮助我!
WEB.XML
<!DOCTYPE web-app PUBLIC
"-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
"http://java.sun.com/dtd/web-app_2_3.dtd" >
<web-app>
<display-name>Archetype Created Web Application</display-name>
<!-- variable de contexte définie dans le WEB-INF-->
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/dispatcher-servlet.xml</param-value>
</context-param>
<!-- Le listener « ContextLoaderListener » charge la configuration Spring
à partir de la variable de contexte « contextConfigLocation ». -->
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
<!-- Declaration de la servlet de Spring et de son mapping -->
<servlet>
<servlet-name>servlet-dispatcher</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<init-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/dispatcher-servlet.xml</param-value>
</init-param>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>servlet-dispatcher</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>
</web-app>
bonjourController.java(java类未创建为servlet)
import org.springframework.stereotype.Controller;
import org.springframework.ui.ModelMap;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
@Controller
/*
* indique que le contrôleur traite les requêtes GET dont l'URI est « /bonjour »
* */
@RequestMapping("/bonjour")
public class BonjourController {
@RequestMapping(method = RequestMethod.GET)
public String afficherBonjour(final ModelMap pModel) {
pModel.addAttribute("personne", "Regis");
return "bonjour";
}
}
bonjour.jsp
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<!-- déclration de la "taglib" Spring -->
<%@taglib uri="http://www.springframework.org/tags" prefix="spring"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title><spring:message code="titre.bonjour"/> : ${ personne }</title>
</head>
<body>
<spring:message code="libelle.bonjour.lemonde" arguments="${personne}"/>
</body>
</html>
调度-servlet.xml中
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context"
xmlns:mvc="http://www.springframework.org/schema/mvc"
xmlns:tx="http://www.springframework.org/schema/tx"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-4.0.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-4.0.xsd
http://www.springframework.org/schema/mvc
http://www.springframework.org/schema/mvc/spring-mvc.xsd
http://www.springframework.org/schema/tx
http://www.springframework.org/schema/tx/spring-tx-3.0.xsd">
<!-- Déclaration du bean "messageSource" de classe ReloadableResourceBundleMessagesource -->
<!-- permettra de charger les messages internationalisées dans des fichiers messages_xx.properties (voir classpath) -->
<bean id="messageSource"
class="org.springframework.context.support.ReloadableResourceBundleMessageSource">
<property name="basename" value="classpath:messages" />
<property name="defaultEncoding" value="ISO-8859-1" />
</bean>
<!-- active la configuration par annotations -->
<context:component-scan base-package="com.tuto.mehdi" />
<!-- la déclaration du bean InternalResourceViewResolver indique où chercher la ressource -->
<bean
class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="prefix">
<value>/vues/</value>
</property>
<property name="suffix">
<value>.jsp</value>
</property>
</bean>
</beans>