Spring MVC:带有CNVR卷的REST应用程序。 2

在上一篇文章中,我快速概述了带有CNVR的Spring MVC REST项目的设置环境。 在这一部分中,我可以直接关注控制器和REST服务的演示。 通常,我将做一个简短的介绍,然后我将介绍控制器方法并解释所有关键时刻。

由于我将进一步讨论REST服务,因此我需要说一些有关REST基本概念的句子。 您可能之前听说过提供API来使用其功能的站点。 借助REST或SOAP,这成为可能,但是在本文中,我将讨论REST。

例如,您想为大学图书馆开发一个可以与学生和书籍一起使用的应用程序。 您可以使用REST实现所有控制器。 该决定将使您的应用程序打开,以便与可以使用该应用程序API的其他应用程序进行协作。 有关REST功能的更多信息,您需要访问特殊站点 。

Spring MVC REST控制器

Smartphone应用程序面向HTTP客户端(例如浏览器)和JSON客户端。 JSON格式可由各种类型的客户端使用,但现在不再重要。

让我们考虑整个控制器代码:

@Controller
@RequestMapping(value="/smartphones")
public class SmartphoneController {@Autowiredprivate SmartphoneService smartphoneService;@RequestMapping(value="/create", method=RequestMethod.GET)public ModelAndView createSmartphonePage() {ModelAndView mav = new ModelAndView("phones/new-phone");mav.addObject("sPhone", new Smartphone());return mav;}@RequestMapping(value="/create", method=RequestMethod.POST)public ModelAndView createSmartphone(@ModelAttribute Smartphone smartphone,final RedirectAttributes attributes) {ModelAndView mav = new ModelAndView("redirect:/index.html");createSmartphone(smartphone);attributes.addFlashAttribute("msg", "New Smartphone "+smartphone+" was successfully created.");return mav;}@RequestMapping(value="/create", method=RequestMethod.POST, produces = "application/json", consumes = "application/json")@ResponseBodypublic Smartphone createSmartphone(@RequestBody Smartphone smartphone) {return smartphoneService.create(smartphone);}@RequestMapping(value="/edit/{id}", method=RequestMethod.GET)public ModelAndView editSmartphonePage(@PathVariable int id) {ModelAndView mav = new ModelAndView("phones/edit-phone");Smartphone smartphone = smartphoneService.get(id);mav.addObject("sPhone", smartphone);return mav;}@RequestMapping(value="/edit/{id}", method=RequestMethod.PUT, produces = "application/json", consumes = "application/json")@ResponseBodypublic Smartphone editSmartphone(@PathVariable int id, @RequestBody Smartphone smartphone) {smartphone.setId(id);return smartphoneService.update(smartphone);}@RequestMapping(value="/edit/{id}", method=RequestMethod.PUT)public ModelAndView editSmartphone(@PathVariable int id,@ModelAttribute Smartphone smartphone,final RedirectAttributes attributes) {ModelAndView mav = new ModelAndView("redirect:/index.html");editSmartphone(id, smartphone);attributes.addFlashAttribute("msg", "The Smartphone "+smartphone+" was successfully updated.");return mav;}@RequestMapping(value="/delete/{id}", method=RequestMethod.DELETE, produces = "application/json", consumes = "application/json")@ResponseBodypublic Smartphone deleteSmartphone(@PathVariable int id) {return smartphoneService.delete(id);}@RequestMapping(value="/delete/{id}", method=RequestMethod.GET)public ModelAndView deleteSmartphone(@PathVariable int id,final RedirectAttributes attributes) {ModelAndView mav = new ModelAndView("redirect:/index.html");Smartphone deletedSphone = deleteSmartphone(id);attributes.addFlashAttribute("msg", "The Smartphone "+deletedSphone+" was successfully deleted.");return mav;}@RequestMapping(value="", method=RequestMethod.GET,produces = "application/json", consumes = "application/json")@ResponseBodypublic List< Smartphone > allPhones() {return smartphoneService.getAll();}@RequestMapping(value="", method=RequestMethod.GET)public ModelAndView allPhonesPage() {ModelAndView mav = new ModelAndView("phones/all-phones");List< Smartphone > smartphones = new ArrayList< Smartphone >();smartphones.addAll(allPhones());mav.addObject("smartphones", smartphones);return mav;}}

Smartphone控制器确实很冗长,并且有很多方法。 在控制器的开头,您可以看到自动连线的SmartphoneService 。 反过来,SmartphoneService具有五种方法:

  • 公共智能手机创建(Smartphone sp);
  • 公用智能手机get(整数id);
  • 公共列表<Smartphone> getAll();
  • 公共智能手机更新(Smartphone sp)抛出SmartphoneNotFoundException;
  • 公共智能手机delete(Integer id)抛出SmartphoneNotFoundException;

控制器中的每种方法都对应于服务的特定方法。 因此,让我们在以下部分中检查这种对应关系。

REST:创建

以下代码段负责创建新的智能手机实体:

...@RequestMapping(value="/create", method=RequestMethod.POST)public ModelAndView createSmartphone(@ModelAttribute Smartphone smartphone,final RedirectAttributes attributes) {ModelAndView mav = new ModelAndView("redirect:/index.html");createSmartphone(smartphone);attributes.addFlashAttribute("msg", "New Smartphone "+smartphone+" was successfully created.");return mav;}@RequestMapping(value="/create", method=RequestMethod.POST, produces = "application/json", consumes = "application/json")@ResponseBodypublic Smartphone createSmartphone(@RequestBody Smartphone smartphone) {return smartphoneService.create(smartphone);}
...

第一种方法是简单的Spring MVC控制器。 我在以前的文章中多次解释了如何使用Spring MVC控制器。 但是您会注意到该方法是不寻常的,因为它包含第二个方法的调用。 第二种方法是具有标准REST注释的REST方法: @ResponseBody和@RequestBody 。

当您将包含有关新智能手机的数据的表单提交到“ ../smartphones/create.html”进行处理时, 内容协商视图解析器将确定您需要接收html页面。 如果您将URL称为“ ../smartphones/create.json”,则会返回JSON文档。 因为我在WebAppConfig中指定CNVR需要根据URL sufix做出决定。

您可以问:如果我们仍然需要为同一操作创建几种方法,那么使用CNVR的原因是什么? 让我们假设智能手机应用程序必须支持2种额外的内容类型:XML和PDF。 在这种情况下,CNVR将使我们的生活更轻松,并且我们不会开发其他方法,只需在WebAppConfig中添加适当的视图解析器即可 。 如果我们开始在应用程序中使用AJAX,这种情况将变得非常理想。 这意味着我们可以消除返回ModelAndView对象的方法。

REST:获取所有记录

在上一段中,我对CNVR原则进行了详细的概述。 因此,现在我将发布与相应操作相对应的具体代码段。

...@RequestMapping(value="", method=RequestMethod.GET,produces = "application/json", consumes = "application/json")@ResponseBodypublic List< Smartphone > allPhones() {return smartphoneService.getAll();}@RequestMapping(value="", method=RequestMethod.GET)public ModelAndView allPhonesPage() {ModelAndView mav = new ModelAndView("phones/all-phones");List< Smartphone > smartphones = new ArrayList< Smartphone >();smartphones.addAll(allPhones());mav.addObject("smartphones", smartphones);return mav;}
...

这些方法负责检索智能手机列表。

REST:更新

以下是执行现有智能手机更新的方法。

...@RequestMapping(value="/edit/{id}", method=RequestMethod.PUT, produces = "application/json", consumes = "application/json")@ResponseBodypublic Smartphone editSmartphone(@PathVariable int id, @RequestBody Smartphone smartphone) {smartphone.setId(id);return smartphoneService.update(smartphone);}@RequestMapping(value="/edit/{id}", method=RequestMethod.PUT)public ModelAndView editSmartphone(@PathVariable int id,@ModelAttribute Smartphone smartphone,final RedirectAttributes attributes) {ModelAndView mav = new ModelAndView("redirect:/index.html");editSmartphone(id, smartphone);attributes.addFlashAttribute("msg", "The Smartphone "+smartphone+" was successfully updated.");return mav;}
...

休息:删除

以下是执行删除现有智能手机的方法。

...@RequestMapping(value="/delete/{id}", method=RequestMethod.DELETE, produces = "application/json", consumes = "application/json")@ResponseBodypublic Smartphone deleteSmartphone(@PathVariable int id) {return smartphoneService.delete(id);}@RequestMapping(value="/delete/{id}", method=RequestMethod.GET)public ModelAndView deleteSmartphone(@PathVariable int id,final RedirectAttributes attributes) {ModelAndView mav = new ModelAndView("redirect:/index.html");Smartphone deletedSphone = deleteSmartphone(id);attributes.addFlashAttribute("msg", "The Smartphone "+deletedSphone+" was successfully deleted.");return mav;}
...

摘要

我希望这部分对您来说很清楚。 无疑,您需要具备Spring和REST的一些基本知识才能完全理解本文。 不要忽略我在文章中提供的链接以获取更多信息。 在第三部分中,我将演示此应用程序的工作方式。

参考: Spring MVC:具有CNVR卷的REST应用程序。 2来自我们的JCG合作伙伴 Alexey Zvolinskiy,在Fruzenshtein的笔记博客中。

翻译自: https://www.javacodegeeks.com/2013/07/spring-mvc-rest-application-with-cnvr-vol-2.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/366974.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

SCP 报错 not a regular file

在 scp 后 加 -r转载于:https://www.cnblogs.com/LYliangying/p/9815534.html

H5页面滚动阻尼效果实现

功能描述 要求 页面分为AB两个区域 当手机可视区的底部接触到 “阻尼带” 的时候&#xff0c;有个上拉弹性过程 当上拉到一定阈值程度就直接把B区顶部弹到手机可视区的顶部&#xff0c;让可视区从B区开始显示当上拉程度未到阈值&#xff0c;就回弹复原 当手机可视区从B区向上…

java面试题(杨晓峰)---第五讲String、StringBuffer、StringBuilder有什么区别?

线程 字符 操作频繁度 1 String &#xff08;1&#xff09;String的创建机制 由于String在java世界中使用过于频繁&#xff0c;java为了避免在一个系统中产生大量重复的String对象&#xff0c;引入了字符串常量池&#xff0c;其运行机制是&#xff1a;创建一个字符串时&am…

mysql怎么按年份分组_mysql - MYSQL按ID分组,但根据最近的年份进行拉取 - SO中文参考 - www.soinside.com...

我有一个包含以下内容的表&#xff1a;StudID Name Year SubjectID SubjectName MTFlag51280 ALOYSIUS 2019 42 CHINESE LANGUAGE 151280 ALOYSIUS 2020 70 ENGLISH LANGUAGE 051280 ALOYSIUS 2020 95 CHINESE B 151280 ALOYSIUS 2020 75 MATHEMATICS 051290 AMIL 2020 70 ENGL…

面向 Web 前端的原生语言总结手册

这一系列文章旨在让具有 Web 前端背景的开发者快速上手原生语言。 背景与动机 从 WebView 到 Hybrid 再到 React Native&#xff0c;移动端主流技术方案中前端同学的施展空间越来越大。但传统 Web 前端背景的同学所熟悉的编程语言主要是 JavaScript&#xff0c;在与 Native 协…

Java 8的新增功能(第二部分–可能会出现什么)

免责声明&#xff1a;我不为Oracle工作&#xff0c;也不以任何方式代表Oracle。 此功能列表不是官方的。 作为“局外人”&#xff0c;这只是我研究的一部分。 这是由三部分组成的系列文章的第二部分。 在第一部分中 &#xff0c;我谈到了Oracle正式让开发人员知道JavaFX 8中应…

MariaDB卸载

二进制安装方式的MariaDB卸载 关闭mysql服务service mysql stop 或 /etc/init.d/mysql stop 或 mysqladmin shutdown -uroot -p 删除数据文件和目录whereis mysql find / -name mysql rm -rf xxx 删除软链接&#xff0c;二进文件&#xff08;如有必要&#xff09;cd /usr/local…

aix系统java堆_浅谈AIX环境下的Java性能调优

1、什么是JavaJava 是一种面向对象的编程语言。它以 C 为模型&#xff0c;被设计成小的、简单的、在源和二进制级别跨平台的可移植的语言&#xff0c;Java 程序(applets 和应用程序)可以运行于任何已经安装了 Java 虚拟机(JVM)的机器上。Java 相对其它计算机语言有显著的优势&a…

web 前端 html

1&#xff0c;什么是web 在网络中&#xff0c;大量的数据需要有一个载体&#xff0c;而很多人都能够访问这个载体&#xff0c;利用浏览器的这个窗口链接一个有一个载体&#xff0c;这个载体就是网站也就是web的前身。  1&#xff0c;web标准&#xff1a;结构标准&#xff0c;表…

cf 1060e 树形dp 树上任意两点的距离和

题意&#xff1a; 给出一个树&#xff0c;把树上任意两个相隔一个点的点加一条边&#xff0c;问加完边之后任意两点的距离和是多少. 参考博客 &#xff1a;https://blog.csdn.net/Mr_Treeeee/article/details/82960566 思路&#xff1a;枚举边的贡献 算出所有点与点之间的距离&…

再谈前后端分离

前段时间我针对手头上的项目前端配置进行了反思以及总结并且写了两篇文章: webpack传统后端渲染的项目前端配置, webpack配置之前后端不分离, 很显然这些配置能满足一时的需求, 但是也有不足. 今天继续总结, 这里应该不涉及到具体后端语言, 只对前端配置进行描述. 毕竟配置工程…

JAVA中带有数字签名的XML安全性

介绍 如您所知&#xff0c;XML在我们的产品或项目开发中起着重要作用&#xff0c;并且从XML文档中我们收集了很多信息&#xff0c;而且我们可以对XML文件执行CRUD操作。 但是&#xff0c;关于如何确保XML文件中可用的数据是真实的以及数据来自受信任的可靠来源&#xff0c;这是…

mysql的命令行常用命令_mysql命令行常用命令

第一招、mysql服务的启动和停止net stop mysqlnet start mysql第二招、登陆mysql语法如下&#xff1a; mysql -u用户名 -p用户密码键入命令mysql -uroot -p&#xff0c; 回车后提示你输入密码&#xff0c;输入12345&#xff0c;然后回车即可进入到mysql中了&#xff0c;mysql的…

Python - day1 借鉴洪卫

一、了解开发语言 1、高级语言&#xff1a;Python&#xff0c;Java&#xff0c;C&#xff0c;C#&#xff0c;PHP&#xff0c;JS&#xff0c;Go&#xff0c;Ruby&#xff0c;SQL&#xff0c;Swift&#xff0c;Perl&#xff0c;Objective-C&#xff0c;R等等&#xff1b; 2、低级…

返回一个二维整数数组最大子数组的和

要求&#xff1a; 1&#xff0c;输入一个二维整形数组&#xff0c;数组里有正数也有负数。 2&#xff0c;二维数组中连续的一个子矩阵组成一个子数组&#xff0c;每个子数组都有一个和, 3&#xff0c;求所有子数组的和的最大值。 设计思路&#xff1a; 参照一维整数数组求解最大…

基于React的表单开发的分析(上)

本文主要讲解后台系统与表单相关的页面开发&#xff0c;并分析如何才能更好地、高效地开发。 技术栈 ReactAntd 背景 Antd 以下我都将Ant Design 简称为 Antd Ant Design是个服务于企业级产品的UI框架&#xff0c;主要可以用于中后台系统,它有基于React、Vue和Angular的实现…

50个Servlet面试问答

Servlet是Java EE的一个非常重要的主题&#xff0c;所有Web应用程序框架&#xff08;例如Spring和Struts&#xff09;都建立在它之上。 这使servlet成为Java访谈中的热门话题。 在这里&#xff0c;我提供了50个servlet面试问题的列表&#xff0c;并提供了答案&#xff0c;以帮…

在vue中使用font-awesome

1、安装 cnpm i font-awesome -S 2、在main.js中引入 import font-awesome/css/font-awesome.min.css 转载于:https://www.cnblogs.com/wuln/p/9072084.html

深入浅出的webpack4构建工具--webpack4+react构建环境(二十)

下面我们来配置下webpack4react的开发环境&#xff0c;之前都是针对webpack4vue的。下面我们也是在之前项目结构的基础之上进行配置下。 首先看下如下是我为 webpack4react 基本的项目结构如下&#xff1a; ### 目录结构如下&#xff1a; demo1 …

Webpack 4进阶--从前的日色变得慢 ,一下午只够打一次包

从前的日色变得慢&#xff0c;车&#xff0c;马&#xff0c;邮件都慢&#xff0c;一生只够爱一个人 -- 《从前慢》 近期在团队项目里把Webpack升级到4.4.1&#xff0c;过程中发现现存的升级文档十分有限&#xff0c;踩了不少坑&#xff0c;好在升级之后提升还算显著&#xff0c…