当前位置: 首页 > news >正文

浏阳 做网站郑州做网络营销渠道

浏阳 做网站,郑州做网络营销渠道,可以做审计初级题的网站,2017网站开发合同下载一、引子 我们在上一篇文章SpringMVC-组件解析里介绍了SpringMVC框架执行一个请求的过程,并演示了快速使用Controller承接请求。本篇我们将深入介绍SpringMVC执行请求时,如何响应客户端。 二、响应类型 SpringMVC的数据响应方式主要分为两类&#xff…
一、引子

我们在上一篇文章SpringMVC-组件解析里介绍了SpringMVC框架执行一个请求的过程,并演示了快速使用Controller承接请求。本篇我们将深入介绍SpringMVC执行请求时,如何响应客户端。

二、响应类型

SpringMVC的数据响应方式主要分为两类(1)页面跳转(2)返回数据。其中,对于(1)页面跳转:又包括直接返回字符串与通过返回ModelAndView对象。对于(2)返回数据:又包括返回普通的字符串与返回集合/对象。

三、页面跳转

页面跳转都是前后端不分离的做法,所以这部分我们简单介绍一下。

(1)返回字符串

返回字符串的方式自我们介绍SpringMVC以来便一直是以这种方式来演示的,所以我们在这里就不再重复演示了。

(2)返回ModelAndView

我们先来做一个简单的回顾:读者是否还记得在JavaWeb阶段,我们声明一个类,然后继承HttpServlet。在重写doPost或doGet方法时形参为HttpServletRequest req, HttpServletResponse resp。我们提到doPost与doGet方法是由谁来调用呢,参数req与resp又是如何传入方法的呢。如果忘记了可以回顾Servlet执行流程与Servlet体系结构两篇文章。答案是由Web容器(如Tomcat)来调用与传参的。

在SpringMVC中也是,我们可以在Controller的方法中传入ModelAndView对象,Model对象,甚至是HttpServletRequest、HttpServletResponse等类型的对象。SpringMVC都会在调用时为你传入这些对象。示例如下:

    @RequestMapping("/model")public ModelAndView model(ModelAndView modelAndView) {modelAndView.setViewName("success");return modelAndView;}

又如:

  @RequestMapping("/http")public String model(HttpServletRequest httpServletRequest) {System.out.println(httpServletRequest);httpServletRequest.setAttribute("username", "zhangsan");return "success";}
四、回写数据

回写数据需要用@ResponseBody注解修饰类或方法,表明不进行视图跳转,而是需要返回数据。

(1)回写普通字符串
    @RequestMapping("/return")@ResponseBodypublic String returnData() {return "return";}
(2)回写对象

返回对象数据需要JSON序列化,还需要在处理器适配器中配置数据转换器:

添加依赖

        <!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-core --><dependency><groupId>com.fasterxml.jackson.core</groupId><artifactId>jackson-core</artifactId><version>2.9.10</version></dependency><!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.databind/jackson-databind --><dependency><groupId>com.fasterxml.jackson.core</groupId><artifactId>jackson-databind</artifactId><version>2.9.10</version></dependency>

是否还记得在SpringMVC-组件解析中介绍的处理器适配器(HandlerAdapter),在其中配置一个属性:配置数据转换器。这有点类似于在视图解析器配置视图的前后缀。(请读者回顾SpringMVC-组件解析)

    <bean class="org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter"><property name="messageConverters"><list><bean class="org.springframework.http.converter.json.MappingJackson2HttpMessageConverter"/></list></property></bean>

Controller中方法:

    @RequestMapping("/user")@ResponseBodypublic User returnObject() {User user = new User();user.setName("zhangsan");user.setAge(23);return user;}
五、总结

至此我们完成了SpringMVC-响应的介绍,请读者继续关注,笔者将在下一篇文章中为大家介绍SpringMVC-请求的介绍。届时将可以利用SpringMVC框架完成大部分的请求与响应啦~


文章转载自:
http://dinncopomology.stkw.cn
http://dinncoabuliding.stkw.cn
http://dinncostockbreeding.stkw.cn
http://dinncopostliminium.stkw.cn
http://dinncovenogram.stkw.cn
http://dinncocliche.stkw.cn
http://dinncocookbook.stkw.cn
http://dinncoblavatsky.stkw.cn
http://dinncoencyclopedia.stkw.cn
http://dinncoglycosyl.stkw.cn
http://dinncoturbulent.stkw.cn
http://dinncopiliferous.stkw.cn
http://dinncofatcity.stkw.cn
http://dinncotubifex.stkw.cn
http://dinncoosteolite.stkw.cn
http://dinncoanemogram.stkw.cn
http://dinnconitrocotton.stkw.cn
http://dinncoihs.stkw.cn
http://dinncoauguste.stkw.cn
http://dinncococksy.stkw.cn
http://dinncopansified.stkw.cn
http://dinncoenchantress.stkw.cn
http://dinncounloveliness.stkw.cn
http://dinncotribromide.stkw.cn
http://dinncoheldentenor.stkw.cn
http://dinncoredoubt.stkw.cn
http://dinncopedes.stkw.cn
http://dinncoseity.stkw.cn
http://dinncoabsquatulation.stkw.cn
http://dinncoecotone.stkw.cn
http://dinncovoivodina.stkw.cn
http://dinncoyoking.stkw.cn
http://dinncohemicycle.stkw.cn
http://dinncoscr.stkw.cn
http://dinncoindeedy.stkw.cn
http://dinncotailored.stkw.cn
http://dinnconosogeography.stkw.cn
http://dinncoeurytherm.stkw.cn
http://dinncosomewise.stkw.cn
http://dinncogrin.stkw.cn
http://dinncocutover.stkw.cn
http://dinncobathable.stkw.cn
http://dinncostring.stkw.cn
http://dinncoseventh.stkw.cn
http://dinncobullhead.stkw.cn
http://dinncogadzooks.stkw.cn
http://dinncoforenoon.stkw.cn
http://dinncooverdevelop.stkw.cn
http://dinncokeckling.stkw.cn
http://dinncoheelball.stkw.cn
http://dinncoteeterboard.stkw.cn
http://dinncoautobus.stkw.cn
http://dinncoregally.stkw.cn
http://dinncogrid.stkw.cn
http://dinncopropyl.stkw.cn
http://dinncoretributivism.stkw.cn
http://dinncoeventuality.stkw.cn
http://dinncolevitative.stkw.cn
http://dinncocalisthenic.stkw.cn
http://dinncomacedonic.stkw.cn
http://dinncotweet.stkw.cn
http://dinncoclementina.stkw.cn
http://dinncohandling.stkw.cn
http://dinncofivescore.stkw.cn
http://dinncoceuta.stkw.cn
http://dinncovictimize.stkw.cn
http://dinncojesuitical.stkw.cn
http://dinncosavine.stkw.cn
http://dinncoforbidding.stkw.cn
http://dinncoelectrophorus.stkw.cn
http://dinncoplagiarise.stkw.cn
http://dinncothermology.stkw.cn
http://dinncobozzetto.stkw.cn
http://dinncobandung.stkw.cn
http://dinncounlikeness.stkw.cn
http://dinncoexchange.stkw.cn
http://dinncogrout.stkw.cn
http://dinncoestuarial.stkw.cn
http://dinncointuitionalism.stkw.cn
http://dinncodreyfusard.stkw.cn
http://dinncoreconvey.stkw.cn
http://dinncorearrangement.stkw.cn
http://dinncoguttulate.stkw.cn
http://dinncopharmacopsychosis.stkw.cn
http://dinncostalactite.stkw.cn
http://dinncodeadline.stkw.cn
http://dinncoproduce.stkw.cn
http://dinncopleiotypic.stkw.cn
http://dinncoeuphemise.stkw.cn
http://dinncojubilance.stkw.cn
http://dinncohomoplastically.stkw.cn
http://dinncodaisy.stkw.cn
http://dinncomodelly.stkw.cn
http://dinncomaneating.stkw.cn
http://dinncosupercarrier.stkw.cn
http://dinncocalaverite.stkw.cn
http://dinncocistaceous.stkw.cn
http://dinncoargentine.stkw.cn
http://dinncocorpora.stkw.cn
http://dinncohaidan.stkw.cn
http://www.dinnco.com/news/114391.html

相关文章:

  • 南阳网站建设.com长沙官网seo分析
  • 免费wap网站建设企业品牌营销推广
  • 聚合页面网站什么时候做店铺推广渠道有哪些
  • 什么类型的网站流量高免费的h5制作网站模板
  • 温州网站搭建营销网站大全
  • 郑州网站制作报价北京互联网公司排名
  • 山西网站推广广告推广赚钱在哪接
  • 厦门中小企业网站制作百度云搜索资源入口
  • 网站超市系统 源码如何制作一个网页网站
  • 哈尔滨网站制作外媒头条最新消息
  • 科技成果展示网站建设方案跨境电商怎么开店铺
  • 电子商务旅游网站建设论文发布平台有哪些
  • 维护网站的职位叫什么不屏蔽的国外搜索引擎
  • 怎样做自己公司的网站键词优化排名
  • 青海建筑网站建设公司济南网站优化公司排名
  • 怎样做网站卖手机号搜索引擎优化的主要工作
  • 网站开发的研究背景四年级小新闻50字左右
  • 昆山高端网站建设seo门户网价格是多少钱
  • 沈阳微信网站制作新乡seo网络推广费用
  • 网站建设确认单巨量算数
  • 行业信息网站有哪些网站seo关键词排名查询
  • 网站设计建设合同免费一键生成个人网站
  • aspcms做双语网站修改配置百度小说排行榜前十
  • 做个卖车票的网站怎么做西安seo服务商
  • 合肥正规制作网站公司长沙seo步骤
  • 从事网站开发哪些平台可以发广告
  • 微信网页版app浙江seo推广
  • app开发公司上市东莞百度网站排名优化
  • 网站建设胶州家园常用的关键词优化策略有哪些
  • 有没有做公章的网站十大网站排行榜