`
xo_tobacoo
  • 浏览: 390754 次
  • 性别: Icon_minigender_1
  • 来自: 长沙
社区版块
存档分类
最新评论

spring中使用json问题

阅读更多

1)添加包:

json解析用到的包:核心包json-lib-2.2.3-jdk15,核心包用到的包ezmorph-1.0.6

spring中的视图解析:json-lib-ext-spring-1.0.2,这是官方提供的,也可以自己写个。

2)问题:即使使用了spring字符过滤器,在Controller里设置字符类型,仍然呈现乱码

3)猜测原因:HttpServletResponse被多次包装过程中可能发生字符转换导致。

4)解决:在最后的端点设置编码。

 

5)经验:在始点和终点设置编码,不理会中间过程怎么处理。同理当我们遇到多样化的字符串处理时,把变花样放在终点。

 

6)代码:

a.配置:

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

 <bean name="/jsonView.htm" class="org.sea.content.web.view.JsonView"/>
    <bean id="manageProject" class="org.sea.content.web.view.manageProject">
        <property name="sessionForm">
            <value>true</value>
        </property>
        <property name="commandClass">
            <value>org.sea.content.model.Project</value>
        </property>
        <property name="formView">
            <value>manageProject</value>
        </property>
        <property name="successView" value="jsonView"/>
    </bean>

 

b.manageProject.java

public class manageProject extends SimpleFormController {
      protected final Log logger = LogFactory.getLog(getClass());

    protected ModelAndView onSubmit(Object command) throws Exception {
        Project model =(Project)command;
        model.setProjectTime(String.valueOf(System.currentTimeMillis()));
        logger.debug("-------------------------->model"+model.getProjectName());
         JSONObject object=   JSONObject.fromObject(model);
      
         logger.debug("-------------------------->model"+object.toString());
        return new ModelAndView(getSuccessView(), "model", object.toString());
    }
}

 

c.jsonView.jsp 所有的有关json的返回都是用这个jsp.

<%response.setHeader("Charset","UTF-8");

PrintWriter pw=   response.getWriter();
    pw.write((String)request.getAttribute("model"));
%>

 

d.org.sea.content.web.view.JsonView拷贝自json官方的:

 

package org.sea.content.web.view;

/**
 * Created by IntelliJ IDEA.
 * User: Administrator
 * Date: 2009-3-30
 * Time: 21:39:23
 * To change this template use File | Settings | File Templates.
 */
import java.util.Map;

import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

import net.sf.json.JSON;
import net.sf.json.JSONArray;
import net.sf.json.JSONSerializer;
import net.sf.json.JsonConfig;
import net.sf.json.util.PropertyFilter;
import net.sf.json.filters.OrPropertyFilter;

import org.springframework.web.servlet.view.AbstractView;

/**
 * A View that renders its model as a JSON object.
 *
 * @author Andres Almiray <aalmiray@users.sourceforge.net>
 */
public class JsonView extends AbstractView {
   /** Default content type. Overridable as bean property. */
   private static final String DEFAULT_JSON_CONTENT_TYPE = "application/json";
   private boolean forceTopLevelArray = false;
   private boolean skipBindingResult = true;
   /** Json confiiguration */
   private JsonConfig jsonConfig = new JsonConfig();

   public JsonView() {
      super();
      setContentType( DEFAULT_JSON_CONTENT_TYPE );
   }

   public JsonConfig getJsonConfig(){
      return jsonConfig;
   }

   public boolean isForceTopLevelArray() {
      return forceTopLevelArray;
   }

   /**
    * Returns whether the JSONSerializer will ignore or not its internal property
    * exclusions.
    */
   public boolean isIgnoreDefaultExcludes() {
      return jsonConfig.isIgnoreDefaultExcludes();
   }

   /**
    * Returns whether the JSONSerializer will skip or not any BindingResult related keys on the model.<p>
    * Models in Spring >= 2.5 will cause an exception as they contain a BindingResult that cycles back.
    */
   public boolean isSkipBindingResult() {
      return skipBindingResult;
   }

   /**
    * Sets the group of properties to be excluded.
    */
   public void setExcludedProperties( String[] excludedProperties ) {
      jsonConfig.setExcludes( excludedProperties );
   }

   public void setForceTopLevelArray( boolean forceTopLevelArray ) {
      this.forceTopLevelArray = forceTopLevelArray;
   }

   /**
    * Sets whether the JSONSerializer will ignore or not its internal property
    * exclusions.
    */
   public void setIgnoreDefaultExcludes( boolean ignoreDefaultExcludes ) {
      jsonConfig.setIgnoreDefaultExcludes( ignoreDefaultExcludes );
   }

   public void setJsonConfig( JsonConfig jsonConfig ) {
     this.jsonConfig = jsonConfig != null ? jsonConfig : new JsonConfig();
     if( skipBindingResult ){
        PropertyFilter jsonPropertyFilter = this.jsonConfig.getJsonPropertyFilter();
        if( jsonPropertyFilter == null ) {
           this.jsonConfig.setJsonPropertyFilter( new BindingResultPropertyFilter() );
        }else{
           this.jsonConfig.setJsonPropertyFilter( new OrPropertyFilter(new BindingResultPropertyFilter(), jsonPropertyFilter) );
        }
     }
   }

   /**
    * Sets whether the JSONSerializer will skip or not any BindingResult related keys on the model.<p>
    * Models in Spring >= 2.5 will cause an exception as they contain a BindingResult that cycles back.
    */
   public void setSkipBindingResult( boolean skipBindingResult ) {
      this.skipBindingResult = skipBindingResult;
   }

   /**
    * Creates a JSON [JSONObject,JSONArray,JSONNUll] from the model values.
    */
   protected JSON createJSON( Map model, HttpServletRequest request, HttpServletResponse response ) {
      return defaultCreateJSON( model );
   }

   /**
    * Creates a JSON [JSONObject,JSONArray,JSONNUll] from the model values.
    */
   protected final JSON defaultCreateJSON( Map model ) {
      if( skipBindingResult && jsonConfig.getJsonPropertyFilter() == null ){
         this.jsonConfig.setJsonPropertyFilter( new BindingResultPropertyFilter() );
      }
      return JSONSerializer.toJSON( model, jsonConfig );
   }

   /**
    * Returns the group of properties to be excluded.
    */
   protected String[] getExcludedProperties() {
      return jsonConfig.getExcludes();
   }

   protected void renderMergedOutputModel( Map model, HttpServletRequest request,
         HttpServletResponse response ) throws Exception {
      response.setContentType( getContentType() );
      writeJSON( model, request, response );
   }

   protected void writeJSON( Map model, HttpServletRequest request,
         HttpServletResponse response ) throws Exception {
      JSON json = createJSON( model, request, response );
      if( forceTopLevelArray ){
         json = new JSONArray().element(json);
      }
      json.write( response.getWriter() );
   }

   private static class BindingResultPropertyFilter implements PropertyFilter {
      public boolean apply( Object source, String name, Object value ) {
         return name.startsWith("org.springframework.validation.BindingResult.");
      }
   }
}
 

 

 

分享到:
评论

相关推荐

    spring-json

    "Spring-JSON"是关于Spring框架与JSON处理的相关知识点,主要涉及如何在Spring应用程序中集成和使用JSON数据。JSON(JavaScript Object Notation)是一种轻量级的数据交换格式,广泛用于前后端交互。Spring框架提供...

    spring data jpa + spring + json demo

    【标题】"spring data jpa + spring + json demo"揭示了这个项目是关于使用Spring Data JPA、Spring框架以及JSON处理的一个示例应用。Spring Data JPA是Spring框架的一个模块,它简化了JPA(Java Persistence API)...

    spring4 mvc json配置jar包

    在Spring4 MVC的配置中,通常需要在`web.xml`或Spring的配置文件中添加MVC的JSON处理器,比如`Jackson2HttpMessageConverter`,以便让Spring MVC能够自动处理JSON请求和响应。同时,需要在`pom.xml`或构建文件中引入...

    Java中使用Json

    本文将深入探讨在Java中如何使用JSON,以及其在实际开发中的应用场景。 首先,Java中处理JSON的主要工具有两个:Jackson和Gson。这两个库提供了API,可以帮助我们轻松地将Java对象转换为JSON字符串,以及将JSON字符...

    Spring支持自动转json的依赖

    例如,如果我们不想在JSON中暴露User的密码,可以这样修改User类: ```java public class User { private String username; @JsonIgnore private String password; // getters and setters... } ``` 除了...

    spring mvc(整合了json)

    4. **控制器方法的编写**:在 Spring MVC 的控制器类中,我们可以定义处理 HTTP 请求的方法,并使用 `@RequestBody` 和 `@ResponseBody` 注解来接收和返回 JSON 数据。例如: ```java @RequestMapping(value = "/...

    spring使用jackson实现json

    在Spring中,我们通常会使用`Jackson.databind`模块,因为它提供了`ObjectMapper`类,可以方便地将Java对象转换为JSON字符串,反之亦然。为了集成Jackson,首先需要在项目中引入对应的依赖。对于Maven项目,可以在...

    spring mvc json&&jackson jquery js

    Spring MVC还提供了`@JsonView`注解来控制JSON响应中的数据粒度,以及`@JsonProperty`和`@JsonIgnore`来控制哪些字段应包含在JSON中。 **jQuery和JavaScript** jQuery是一个流行的JavaScript库,简化了DOM操作、...

    spring-json 工程依赖

    在Spring项目中使用JSON,通常会涉及以下知识点: 1. **Spring MVC与JSON**: Spring MVC提供了一种简单的方法来处理JSON请求和响应。通过使用`@RequestBody`和`@ResponseBody`注解,可以将JSON字符串转换为Java对象...

    Spring3 MVC Ajax with JSON

    4. **前端处理**:在JavaScript中使用Ajax(可能通过jQuery或其他库)发送请求,并处理返回的JSON数据,更新DOM元素。 这个项目提供的示例工程应该包含了一个工作流程的完整实例,从Ajax请求到Spring MVC的处理,再...

    Spring处理json,客户端处理json

    在这个场景中,我们关注的是Spring如何处理JSON数据以及客户端如何处理JSON。JSON(JavaScript Object Notation)是一种轻量级的数据交换格式,广泛用于前后端交互,因为它的结构清晰且易于阅读和编写。 1. **...

    mongo集成spring struts2 json velocity

    在"mongo集成spring struts2 json velocity"这个项目中,我们将看到如何将这些技术整合到一起,创建一个功能丰富的Web应用程序。 首先,MongoDB的集成意味着项目会利用其NoSQL特性和文档存储的优势。Spring Data ...

    spring配置JSON拦截器VIEW

    标题中的“spring配置JSON拦截器VIEW”指的是在Spring框架中设置JSON数据的处理方式,特别是通过拦截器(Interceptor)来优化视图层(View)的响应。在Web开发中,拦截器是一种常用的机制,用于在请求被实际处理之前...

    SpringMVC中后台转换json格式

    这些注解可以帮助控制哪些属性应该被包含在JSON中,哪些应该被忽略,以及属性的命名规则等。 例如,假设我们有一个`User`类: ```java public class User { @JsonProperty("id") private Long id; @...

    Springboot读取本地json文件工程

    下面,我们将依次讲解Spring Boot的基本概念、JSON文件的使用以及如何在Spring Boot中读取本地JSON文件。 首先,让我们了解一下Spring Boot。Spring Boot是Spring框架的一个扩展,它简化了创建独立的、生产级别的...

    json在spring中的应用

    在Spring框架中,JSON的使用是极其常见的,尤其在Spring MVC中,它扮演着重要的角色,使得前后端交互变得更加简单。 在Spring MVC中,JSON主要通过以下几种方式进行应用: 1. **ModelAndView到JSON的转换**:在...

    springmvc spring hibernate ajax json

    在这个"springmvc spring hibernate ajax json"的简单完整DEMO中,我们可以预期以下几个方面的集成和使用: 1. **Spring MVC** 作为前端控制器,负责接收HTTP请求,调度到相应的Controller处理。 2. **Spring** 通过...

    Struts2与Spring整合使用json报错解决办法[归纳].pdf

    Struts2与Spring整合使用json报错解决办法[归纳].pdf

    使用json封装数据 html源代码

    描述中的“json的简单应用”表明我们将探讨JSON的基础用法,以及如何在一个具有增加和删除功能的例子中使用JSON。这通常涉及到动态网页开发,例如使用JavaScript或者jQuery库来实现用户界面的交互,通过解析JSON数据...

    Spring MVC 学习笔记 九 json格式的输入和输出

    在Spring MVC中,我们可以使用Jackson库或者Gson库将Java对象转换为JSON字符串,反之亦然。 2. **Spring MVC中的JSON配置** 在Spring MVC项目中,我们需要引入相应的JSON库,如Jackson的`jackson-databind`依赖。...

Global site tag (gtag.js) - Google Analytics