2017-02-09 8 views
0

Я новичок с весной, и я слежу за этой Создание учебного проекта tutorial linkВесна данных проходит

Но мой JSP не знаю, данные передаются.

Вот мой hello.jsp

<%@ page language="java" contentType="text/html; charset=ISO-8859-1" 
 
    pageEncoding="ISO-8859-1"%> 
 
<!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>Insert title here</title> 
 
</head> 
 
<body> 
 
     votre message est : ${message} 
 
</body> 
 
</html>

и мой helloController.java

package web; 
import org.springframework.stereotype.Controller; 
import org.springframework.web.bind.annotation.RequestMapping; 
import org.springframework.web.servlet.ModelAndView; 
@Controller 
public class helloController { 
@RequestMapping("/hello") 
public ModelAndView helloWorld(){ 
    String message="Bonjour"; 
    return new ModelAndView("hello","message",message); 
    }  
} 

и мой web.xml

<?xml version="1.0" encoding="UTF-8"?> 
 
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
 
xmlns="http://java.sun.com/xml/ns/javaee" 
 
xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" 
 
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" 
 
id="WebApp_ID" version="3.0"> 
 
    <display-name>projetSpring</display-name> 
 
    <welcome-file-list> 
 
    <welcome-file>index.html</welcome-file> 
 
    <welcome-file>index.htm</welcome-file> 
 
    <welcome-file>index.jsp</welcome-file> 
 
    <welcome-file>default.html</welcome-file> 
 
    <welcome-file>default.htm</welcome-file> 
 
    <welcome-file>default.jsp</welcome-file> 
 
    </welcome-file-list> 
 
    <servlet> 
 
    <servlet-name>dispatcher</servlet-name> 
 
    <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class> 
 
    <load-on-startup>1</load-on-startup> 
 
    </servlet> 
 
    <servlet-mapping> 
 
    <servlet-name>dispatcher</servlet-name> 
 
    <url-pattern>*.htm</url-pattern> 
 
    </servlet-mapping> 
 
</web-app>

и мой диспетчеру-servlet.xml

<?xml version="1.0" encoding="UTF-8"?> 
 
<beans xmlns="http://www.springframework.org/schema/beans" 
 
\t xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
 
\t xmlns:context="http://www.springframework.org/schema/context" 
 
\t xmlns:p="http://www.springframework.org/schema/p" 
 
\t xmlns:jee="http://www.springframework.org/schema/jee" 
 
\t xsi:schemaLocation="http://www.springframework.org/schema/beans 
 
\t http://www.springframework.org/schema/beans/spring-beans.xsd 
 
    http://www.springframework.org/schema/context 
 
    http://www.springframework.org/schema/context/spring-context-4.0.xsd 
 
    http://www.springframework.org/schema/jee 
 
    http://www.springframework.org/schema/jee/spring-jee-4.0.xsd"> 
 
    <context:component-scan base-package="web"/> 
 
    <bean id="viewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver"> 
 
      <property name="prefix"><value>/jsp/</value></property> 
 
      <property name="suffix"><value>.jsp</value></property>  
 
    </bean> 
 
</beans>

Вот мой каталог проекта и результат hello.jsp пробег:

Project directory + run result

+0

попробуйте следующее: локальный: 8080/projetSpring/hello.htm –

+0

Попробуйте переместить каталог 'jsp/hello.jsp' из' WebContent' в папку WEB-INF (WEB-INF \ jsp \ hello.jsp) и изменить свойство 'name = prefix' в' dispatcher -servlet.xml' for '/ WEB-INF/jsp /' – Alberto

+0

Большое спасибо, он работает с localhost: 8080/projetSpring/hello.htm, но, пожалуйста, это о url-шаблоне в web.xml или он не имеет отношения ? – Mouad

ответ

1

На самом деле вы обращаетесь непосредственно к вам г JSP страница с помощью этого URL: localhost:8080/projetSpring/jsp/hello.jsp

Вы не PASSE вашего контроллера, вы должны использовать следующий URL: localhost:8080/projetSpring/hello.htm ссылаться на свой DispatcherServlet и блекнут вашего контроллер

+0

Усовершенствование: попробуйте переместить свои JSP внутри WEB-INF, чтобы сделать их недоступными для внешнего использования. –

 Смежные вопросы

  • Нет связанных вопросов^_^