<?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:context="http://www.springframework.org/schema/context"
xmlns:mvc="http://www.springframework.org/schema/mvc" xmlns:util="http://springframework.org/schma/util"
xsi:schemaLocation="
http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-3.0.xsd
http://www.springframework.org/schema/mvc
http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd">
<!-- ①:对web包中的所有类进行扫描,以完成Bean创建和自动依赖注入的功能 -->
<context:component-scan base-package="com.**.controllers" />
<!-- spring的默认实现,不配置也一样 -->
<bean id="handlerMapping"
class="org.springframework.web.servlet.mvc.annotation.DefaultAnnotationHandlerMapping">
<property name="order" value="0" />
</bean><!--此处重点,绑定json格式化-->
<bean id="jacksonMessageConverter"
class="org.springframework.http.converter.json.MappingJacksonHttpMessageConverter">
</bean>
<bean
class="org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter">
<property name="messageConverters">
<list>
<ref bean="jacksonMessageConverter" />
</list>
</property>
</bean>
<bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="prefix">
<value>/WEB-INF/jsp/</value>
</property>
<property name="suffix">
<value>.jsp</value>
</property>
<property name="viewClass">
<value>org.springframework.web.servlet.view.JstlView</value>
</property>
</bean>
</beans>
controller代码
@Controller
@RequestMapping("/sso/admin/monthParameterController")
public class MonthParameterController {
@Autowired
private IOtherParametersService otherParametersService;
@RequestMapping("/delfn")
public @ResponseBody JSONObject delFn(HttpServletRequest request,
HttpServletResponse response, ModelMap modelMap) {
String ids = request.getParameter("ids");
JSONObject json = new JSONObject();
try {
otherParametersService.deleteOtherParameters(ids);
json.put("result", true);
} catch (SQLException e) {
e.printStackTrace();
}
return json;
}
}
分享到:
相关推荐
在本案例中,"springMVC返回json数据需要的两个架包"指的是`jackson-mapper-asl-1.9.13.jar`和`jackson-core-asl-1.9.13.jar`。 1. Jackson库:这两个jar文件属于Jackson库的一部分,Jackson是Java中广泛使用的JSON...
字符串、对象、List集合、Map集合
在这个“SpringMVC返回JSON数据相关Jar包”中,包含了支持SpringMVC处理JSON数据所需的关键组件。 首先,我们需要理解SpringMVC如何处理JSON数据。在SpringMVC中,我们使用`@ResponseBody`注解标记在Controller方法...
`@RequestBody`用于将请求体中的JSON数据映射到方法参数,而`@ResponseBody`则将方法返回的对象转换为JSON并写入响应体。 例如: ```java import org.springframework.web.bind.annotation.*; @RestController ...
NULL 博文链接:https://bijian1013.iteye.com/blog/2306223
JSON格式轻便、易于读写,且被广泛接受为网络通信的标准数据格式。为了在Spring MVC中启用JSON支持,我们需要引入Jackson库,这是一个流行的Java库,用于处理JSON格式的数据。在提供的描述中提到了三个关键的Jackson...
在Spring MVC框架中,开发人员经常需要将服务器端的数据以JSON(JavaScript...确保正确配置和使用这些组件,将使你在Spring MVC应用中顺利地处理JSON数据传输。在实际项目中,还需要根据具体需求进行相应的调整和优化。
确保所有依赖库都已引入,并正确配置SpringMVC,以实现后台与前台之间的顺利JSON数据交互。在实际项目中,还可能需要考虑JSON安全问题,例如防止XSS和CSRF攻击,以及优化性能,如使用GZIP压缩等。
在Spring MVC框架中,JSON(JavaScript Object Notation)是一种常用的数据交换格式,广泛应用...通过理解和实践这个示例,开发者可以掌握在Spring MVC中处理JSON数据的基本方法,这对于构建RESTful Web服务至关重要。
- 可以通过`@RequestMapping`的`consumes`和`produces`属性来控制接收和返回的数据格式。 - 在全局配置中,可以通过`@EnableWebMvc`或`WebMvcConfigurerAdapter`的实现类来调整默认的MessageConverter配置。 总结...
在Spring MVC框架中,返回JSON数据是常见的交互方式,它使得Web应用能够与客户端进行高效的数据交换,尤其在实现RESTful API时尤为重要。JSON(JavaScript Object Notation)是一种轻量级的数据交换格式,易于人阅读...
3. **JSON数据格式**:JSON (JavaScript Object Notation) 是一种轻量级的数据交换格式,易于人阅读和编写,同时也易于机器解析和生成。JSON格式通常用于前后端交互,因为它可以直接被JavaScript对象表示,减少了...
// 返回JSON响应 } } ``` 在这个例子中,`@RequestBody`注解将请求体中的JSON转换为User对象,`@ResponseBody`则将控制器返回的User对象转换为JSON响应。 此外,我们还可以自定义JSON序列化和反序列化的规则,...
Spring MVC作为Spring框架的一部分,提供了一种优雅的方式来处理JSON数据的读取和显示。本篇文章将深入探讨如何在Spring MVC中实现JSON格式的数据处理,包括JSON的解析、转换以及使用注解进行配置。 首先,让我们...
在Spring MVC中,当控制器方法的返回值前加上`@ResponseBody`时,Spring会将返回的对象直接转换成HTTP响应体的Content,通常用于返回JSON或XML格式的数据。默认情况下,Spring MVC使用`HttpMessageConverter`来完成...
在Spring MVC框架中,JSON(JavaScript Object Notation)...通过以上步骤,我们就成功地在Spring MVC项目中加入了JSON支持,利用Jackson库实现JSON数据的高效交换。这极大地提高了开发效率,简化了前后端的交互流程。
3. **ModelAndView与ResponseBody**:在控制器方法中,我们可以通过`ModelAndView`对象返回视图和模型数据,但为了返回JSON,可以使用`@ResponseBody`注解。这个注解告诉Spring MVC直接将方法的返回值转换为HTTP响应...
JSON(JavaScript Object Notation)是一种轻量级的数据交换格式,它易于人阅读和编写,同时也易于机器解析和生成。在SpringMVC中,我们可以利用Jackson库来实现这一功能。 首先,SpringMVC提供了`@ResponseBody`...
在本项目"springmvc-demo08-返回JSON数据"中,我们将探讨如何在Spring MVC中配置和实现JSON数据的返回。 首先,为了处理JSON数据,我们需要引入相关的依赖库。Spring MVC本身支持JSON处理,但通常我们会使用Jackson...
SpringMVC支持JSON序列化和反序列化,允许服务器将Java对象转换为JSON字符串发送给客户端,以及将客户端发送的JSON数据转换回Java对象。这个过程中,Jackson库扮演了关键角色。 Jackson是Java领域中广泛使用的JSON...