spring mvc怎么处理返回值

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了spring mvc怎么处理返回值相关的知识,希望对你有一定的参考价值。

  以下是SpringMvc原生支持的返回类型,如果返回Json,可以用Json String或者Map,

  ModelAndView

  Model

  ModelMap

  Map

  View

  String

  Void

  还可以返回类,操作步骤见下面介绍。

  

  需要注意的是,SpringMvc与Jackson结合使用时,如果返回的是一个
Object、或者返回的Map中是Object型的,就需要对Object中的成员变量加注解,否则会报
错:org.springframework.web.HttpMediaTypeNotAcceptableException: Could not
find acceptable representation,500 code error。

  原因是 Jackson 默认情况下不知道怎么去序列化,方法有:

  1.为成员变量增加getter、setter方法

  2. 或者也可以给field加上 @JsonProperty 注解,(也可在getter上加)  , 还能用它指定序列化时的属性名

  

  @JsonProperty可以标注在field或者getter上,

  Defines name of the logical property, i.e.
Json object field name to use for the
property(i.e. @JsonProperty("GID") ): if empty String (which is the
default), will use name of the field that is annotated.

  

  代码示例:

 

 class ItemContent 
  private int gid;
  private int sid;
  private Date createTime;
  private String gname;
  private String name;
  private String nologinUrl;
  
  @JsonProperty
  int getGid() 
  return gid;
  
  
  void setGid(int gid) 
  this.gid = gid;
  
  
  @JsonProperty
  int getSid() 
  return sid;
  
  .............................
  
  @RequestMapping(value = "/dissert/getServerList.do")
  @ResponseBody
  public Object getServerList(HttpServletRequest request) 
  Map<String, Object> resultMap = new HashMap<String, Object>();
  ..................................
  List<ItemContent> tempList = new ArrayList<ItemContent>();
  for (GameServer gameServer : listServers) 
  ......................
  ItemContent item = new ItemContent();
  item.setGid(gameServer.getGid());
  item.setGname(gameServer.getGname());
  item.setSid(gameServer.getSid());
  item.setName(gameServer.getName());
  item.setCreateTime(gameServer.getCreateTime());
  
  
  tempList.add(item);
  
  
  resultMap.put("open", tempList);
  return resultMap;
  
  
参考技术A 对于springMVC处理方法支持支持一系列的返回方式:
ModelAndView
Model
ModelMap
Map
View
String
Void

具体内容可以参考:https://my.oschina.net/bosscheng/blog/126941

asp.net mvc 中怎么给普通方法定义特性获取返回值并处理?

假如我在Controller中定义了几个方法,这几个方法都返回某个对象,我不想在每个方法放回前去把返回值写入日志,我想定义一个特性去获取方法的返回值然后处理返回值写入日志文件,请问这个需要怎么实现呢?
我试了MVC 的 OnActionExecuted ,但是这个应该是只能用在返回ActionResult 的控制器上面,然后我又试了 System.Web.Http.Filters 的OnActionExecuted ,但是进不了这个过滤器中。那我需要怎么定义才能实现呢?

参考技术A Using Middleware in .NET 5.0 to Log Requests and Responses
github.com exceptionnotfound/AspNetCoreRequestResponseMiddlewareDemo

以上是关于spring mvc怎么处理返回值的主要内容,如果未能解决你的问题,请参考以下文章

JavaWeb学习笔记之spring mvc处理方法支持如下的返回方式

如果 Spring MVC 控制器方法不返回值,返回啥?

jquery ajax向spring mvc controller中传值并接受及解析返回值

jquery ajax向spring mvc controller中传值并接受及解析返回值

jquery ajax向spring mvc controller中传值并接受及解析返回值

jquery ajax向spring mvc controller中传值并接受及解析返回值