0

我已经使用 Spring MVC 开发了一个 REST Web 应用程序,并且可以将 JSON 对象发送到客户端。

我想构建一个连接到我的 Web 应用程序的 Javascript/AJAX 客户端,但我不知道如何发送第一个 HTML 页面(使用 JSP)。我知道我应该为 JSP 页面提供一些嵌入式 AJAX。此 AJAX 将向我的 Web 服务发送请求。

更新: 我无法实现的要求是http://localhost:8084在浏览器中编写默认 URI ( ) 并查看我在 JSP 页面 ( home.jsp) 中编写的 HTML 页面。

我的方法如下:

我有一个发送根 JSP 页面的控制器

@Controller
public class SessionController {

    @RequestMapping(value="/", method=RequestMethod.GET)
    public String homeScreen(){
        return "home";
    }
}

但是当我运行服务器时,我收到了这个警告

WARNING: No mapping found for HTTP request with URI [/home] in DispatcherServlet with name 'dispatcher'

并且浏览器中没有加载任何内容。

这是我的应用程序上下文文件:

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xmlns:p="http://www.springframework.org/schema/p"
       xmlns:aop="http://www.springframework.org/schema/aop"
       xmlns:tx="http://www.springframework.org/schema/tx"
       xmlns:mvc="http://www.springframework.org/schema/mvc"
       xmlns:context="http://www.springframework.org/schema/context"
       xsi:schemaLocation="http://www.springframework.org/schema/beans
       http://www.springframework.org/schema/beans/spring-beans-3.1.xsd
       http://www.springframework.org/schema/aop 
       http://www.springframework.org/schema/aop/spring-aop-3.1.xsd
       http://www.springframework.org/schema/tx 
       http://www.springframework.org/schema/tx/spring-tx-3.1.xsd       
       http://www.springframework.org/schema/mvc
       http://www.springframework.org/schema/mvc/spring-mvc-3.1.xsd
       http://www.springframework.org/schema/context       
       http://www.springframework.org/schema/context/spring-context-3.1.xsd">

    <context:component-scan base-package="com.powerelectronics.freesun.web" />

    <mvc:annotation-driven />

</beans>

web.xml

<?xml version="1.0" encoding="UTF-8"?>
<web-app version="3.0" xmlns="http://java.sun.com/xml/ns/javaee" 
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
         xsi:schemaLocation="http://java.sun.com/xml/ns/javaee 
         http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd">
    <context-param>
        <param-name>contextConfigLocation</param-name>
        <param-value>/WEB-INF/applicationContext.xml</param-value>
    </context-param>
    <listener>
        <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
    </listener>
    <servlet>
        <servlet-name>dispatcher</servlet-name>
        <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
        <load-on-startup>2</load-on-startup>
    </servlet>
    <servlet-mapping>
        <servlet-name>dispatcher</servlet-name>
        <url-pattern>/*</url-pattern>
    </servlet-mapping>
    <session-config>
        <session-timeout>
            30
        </session-timeout>
    </session-config>
</web-app>

我的方法正确吗?我在任何基本概念上都错了吗?我可以修改代码中的某些内容以使其运行吗?我希望看到在浏览器中加载的第一页并继续朝那个方向前进。

提前致谢。

4

3 回答 3

0

尝试@ResponseBody在方法上添加注释:

@Controller
public class SessionController {

    @RequestMapping(value="/", method=RequestMethod.GET)
    @ResponseBody
    public String homeScreen(){
        return "home";
    }
}

这应该home在页面上输出。

如果您想使用View 技术,例如 JSP,请查看官方Spring Framework 文档的以下章节:http : //static.springsource.org/spring/docs/3.1.x/spring-framework-reference/htmlsingle/ spring-framework-reference.html#view

更新

“就像您与 Spring 集成的任何其他视图技术一样,对于 JSP,您将需要一个视图解析器来解析您的视图”。如果您想使用 JSP,您应该将以下内容添加到您的 Web 应用程序上下文中,然后返回要处理的文件的名称:

<!-- the ResourceBundleViewResolver -->
<bean id="viewResolver" class="org.springframework.web.servlet.view.ResourceBundleViewResolver">
  <property name="basename" value="views"/>
</bean>

<bean id="viewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver">
  <property name="viewClass" value="org.springframework.web.servlet.view.JstlView"/>
  <property name="prefix" value="/WEB-INF/jsp/"/>
  <property name="suffix" value=".jsp"/>
</bean>

以上内容是否存在于您的 Web 应用程序上下文中?您可以查看官方文档以获取更多信息:http ://static.springsource.org/spring/docs/3.1.x/spring-framework-reference/htmlsingle/spring-framework-reference.html#view-jsp-resolver

于 2012-10-31T17:13:50.557 回答
0

在 web.xml 文件中放置一个欢迎文件标记。

<welcome-file-list>
    <welcome-file>index.jsp</welcome-file>
</welcome-file-list>

您必须在 WEB-INF 之外拥有这个 index.jsp。将以下代码放入其中。

<html>
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
        <title>Insert title here</title>
    </head>
    <body>
        <%
            response.sendRedirect("home");
        %>
    </body>
</html>

当应用程序被加载时,它会调用 index.jsp 并且 jsp 会将它重定向到 /home 动作。

然后你的控制器将被调用。

@Controller
public class SessionController {

    // see the request mapping value attribute here, it is /home

    @RequestMapping(value="/home", method=RequestMethod.GET)
    public String homeScreen(){
        return "home";
    }
}

这将调用您的主页 jsp。

如果你想从你的 spring 控制器返回 JSON,那么你需要在 spring 上下文 xml 文件中初始化 jackson mapper bean。

<beans:bean id="jacksonMessageChanger" class="org.springframework.http.converter.json.MappingJacksonHttpMessageConverter">
    <beans:property name="supportedMediaTypes" value="application/json" />
</beans:bean>

<beans:bean class="org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter">
    <beans:property name="messageConverters">
        <util:list id="beanList">
            <beans:ref bean="jacksonMessageChanger" />
        </util:list>
    </beans:property>
</beans:bean>

您需要添加 jar 或 maven 依赖项才能使用 jackson mapper。

<dependency>
    <groupId>org.codehaus.jackson</groupId>
    <artifactId>jackson-mapper-asl</artifactId>
    <version>1.8.5</version>
</dependency>

要从控制器返回 JSON,方法如下:

@RequestMapping(value="/getContacts", method=RequestMethod.GET)
public @ResponseBody List<Contacts> getContacts(){
        List<Contacts> contactList = prepareContactList();
        return contactList;
}

这样就可以在ajax调用成功函数中以对象的形式得到List,通过迭代可以得到详细信息。

于 2012-11-04T07:02:56.083 回答
0

最后,我仅通过以不同方式在 web.xml 中配置调度程序来解决此问题。

首先,按照 David Riccitelli 的建议,我将视图解析器添加到 servlet 配置文件中:

<bean class="org.springframework.web.servlet.view.InternalResourceViewResolver"
    p:prefix="/WEB-INF/jsp/" p:suffix=".jsp"/>

然后我在 web.xml 中配置了 servlet 映射:

<servlet-mapping>
    <servlet-name>dispatcher</servlet-name>
    <url-pattern>/</url-pattern>
</servlet-mapping>

这就是我一直在寻找的,不需要额外的配置。这样做我调用我的根 URL http://localhost:8084,我可以看到我已经编码的主屏幕home.jsp

感谢您的支持和建议。

于 2012-11-05T14:48:00.993 回答