当前位置: 首页 > 知识库问答 >
问题:

从REST Spring MVC Web应用程序发送超文本标记语言/JSON

谷梁振
2023-03-14

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

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

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

我的方法如下:

我有一个发送根 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>

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

先谢谢你。

共有3个答案

姜鸿畴
2023-03-14

最后,我只通过以不同的方式在web.xml中配置dispatcher来解决这个问题。

首先,按照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>

这就是我要找的,不需要额外的配置。执行此操作时,我调用根URLhttp://localhost:8084,我可以看到我在home.jsp中编码的主屏幕。

感谢您的支持和建议。

岳硕
2023-03-14

在web中放置欢迎文件标签。xml文件。

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

您必须具有此索引.jsp WEB-INF 之外。将以下代码放入其中。

<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 action。

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

@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 文件中初始化杰克逊映射器 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,并且通过迭代它,您可以获得详细信息。

景昊焜
2023-03-14

尝试在该方法上添加一个< code>@ResponseBody批注:

@Controller
public class SessionController {

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

这应该会在页面上输出< code>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/html single/spring-framework-reference . html # view-JSP-resolver

 类似资料:
  • 我试着通过电子邮件发送这个。我尝试了很多方法,但总是得到同样的结果:一个错误。 http://goto-21.net/campaign/htmlversion?mkt_hm=0 我试过这个: curl-s--user'api: key-3ax6xnjp29jd6fds4gc373sgvjxteol0'\Xhttps://api.mailgun.net/v2/samples.mailgun.org/

  • 我想在单击输入字段时触发一个处理程序,在取消选择输入字段时触发另一个处理程序(即,如果有人在字段外单击)。有没有办法做到这一点? 单击处理程序非常简单: 是否可以创建“取消单击”处理程序?

  • 我试图使用谷歌ap脚本发送超文本标记语言的电子邮件。我有一个谷歌文档上的超文本标记语言,我试图使用下面的代码发送。但是当我发送它时,我收到的是未格式化的文本,显示了所有超文本标记语言标签。有人能告诉我怎么做吗?我不想在脚本中包含超文本标记语言,因为最终会有很多。 var html=UrlFetchApp。取('https://docs.google.com/document/d/documentI

  • 我正在尝试使用放心来检查服务器返回的HTML文档的一些属性。演示该问题的SSCCE如下所示: 现在,此尝试以,这是由所有可能的错误大约 30 秒左右后超时! 如果我用< code>xmlPathConfig()删除这一行。用()。功能(...)当特性“http://Apache . org/XML/features/disallow-DOCTYPE-decl”设置为true时,由于< code>D

  • 对于上面的html内容,我如何使用Jsoup解析并获取文本 当我使用 我得到了这样的东西

  • 我试图在HTML的pre标签中包装文本,但它不起作用。我使用下面的CSS作为我的标签。 我从如何在pre标记中换行文本? 我已添加