博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Java高并发秒杀Api-web 层
阅读量:5920 次
发布时间:2019-06-19

本文共 4511 字,大约阅读时间需要 15 分钟。

章节目录

  • 前端交互设计
  • Restful
  • Spring MVC理论
  • 整合配置MVC框架
  • bootstrap+jquery
  • 福利彩蛋

前端交互设计

img_dd7f5512848b65d0995d7037e2f3bf23.png
前端交互设计
img_b11c848b4b9a41c9b06ed66b0e84bbec.png
详情页流程逻辑

Restful接口

什么是Restful

  • Restful 是接口设计规范
  • 一种优雅的URI表达方式
  • 资源的状态和状态转移
    获取的是资源的状态,删除的时候,其实是更改资源的状态 put、post、delete

Restful示例

img_5230ba4f8e0c247059c563fb6aaad44a.png
image.png
img_d77ea22552c5b3203458bf9e25803100.png
image.png
img_9bfe87d8d11434b9c3b60411fec0c775.png

不同的请求方法代表着对资源的不同操作类型。操作类型应与资源的接下来发生的状态状态转移对应起来

GET 请求是幂等性的

URL设计

img_b66677b74ea1b6dd3f9b4893aedf3c28.png
url设计

img_d08d0c90c6365a1919ec4dc474fd8501.png
秒杀Api设计

Spring MVC理论

理论部分

围绕handler开发

img_2d3691ba15298fc2dddf810e100ab91c.png
image.png

Spring mvc 的运行流程

img_0e806ce739f3de0e7263b5aef43f2cf3.png
image.png
解释:
用户请求->前端控制器->寻找对应处理请求的handler,默认为DefaultAnnotationHandlerMapping->DefaultAnnotationHandlerAdapter->寻找处理请求的Controller->请求生成ModelAndView至中央控制器->中央控制器将数据转发给InternalResourceViewResolver去解析->解析完成的数据及页面结构,组合后,被生成资源,返回给用户。

HTTP请求映射的原理

img_ad061cca14a88e4b19b20a2861ecdbcc.png
image.png
默认使用DefaultAnnotationHandlerMapping->handler方法

注解映射技巧

  • @RequestMapping 注解

    (1) 支持标准标准的URL
    (2) Ant风格URL
    (3) 带{xxx}占位符的URL

    img_be00719059ceeac2ed1be97196d6169a.png
    注解映射技巧
  • 请求方法细节处理

    (1) 请求参数绑定
    (2) 请求方式限制
    (3) 请求转发与重定向
    (4) 数据模型赋值
    (5) 返回json数据
    (6) cookie的访问

img_7e09a68c615752d1116ebbb6ebd41801.png
请求参数绑定、重定向与转发、model数据绑定
img_0567c9627cf36578848b429f33c88632.png
返回json数据
img_5488d4a915121fd48360b05f3e7fe50f.png
cookie 数据

整合配置Spring MVC配置文件

seckill-dispatcher
org.springframework.web.servlet.DispatcherServlet
contextConfigLocation
classpath:spring/spring-*.xml
seckill-dispatcher
/

Spring MVC 配置 spring-web.xml

**SecKillController **

package org.seckill.web;import org.seckill.domain.SecKill;import org.seckill.dto.Exposer;import org.seckill.dto.SecKillResult;import org.seckill.service.SecKillService;import org.slf4j.Logger;import org.slf4j.LoggerFactory;import org.springframework.beans.factory.annotation.Autowired;import org.springframework.stereotype.Controller;import org.springframework.ui.Model;import org.springframework.web.bind.annotation.PathVariable;import org.springframework.web.bind.annotation.RequestMapping;import org.springframework.web.bind.annotation.RequestMethod;import org.springframework.web.bind.annotation.ResponseBody;import java.util.List;@Controller@RequestMapping("/seckill") //url:/模块/资源/{id}/细分public class SecKillController {    private final Logger logger = LoggerFactory.getLogger(this.getClass());    @Autowired    private SecKillService secKillService;    /**     * 获取秒杀商品list     *     * @param model     * @return     */    @RequestMapping(value = "/list", method = RequestMethod.GET)    public String list(Model model) {        //1.获取列表页面        List
secKillList = secKillService.getSecKillList(); model.addAttribute("list", secKillList); //2.返回页面并携带model 数据list.jsp + model = ModelAndView return "list"; } /** * 接收参数、参数验证、业务逻辑调用并处理 * 获取秒杀商品详情 * * @param model * @param secKillId * @return */ @RequestMapping(value = "/{secKillId}/detial", method = RequestMethod.GET) public String detial(Model model, @PathVariable("secKillId") Long secKillId) { if (secKillId == null) {//请求重定向到list页面 return "redirect:/seckill/list"; } SecKill secKill = secKillService.getSecKillById(secKillId); if (secKill == null) { return "forward:/seckill/list"; } model.addAttribute("seckill", secKill); return "detial"; } /** * ajax接口-返回类型 json * 获取秒杀曝露地址 * * @param secKillId */ @RequestMapping(value = "/{secKillId}/exposer", method = RequestMethod.POST, produces = {"application/json;charset=UTF-8"}//告诉浏览器返回数据类型是json ) @ResponseBody public SecKillResult
/*TODO*/ exposer(@PathVariable("secKillId") Long secKillId) { SecKillResult
result; try { Exposer exposer = secKillService.exportSecKillUrl(secKillId);//返回秒杀地址 result = new SecKillResult
(true, exposer); } catch (Exception e) { logger.error(e.getMessage()); result = new SecKillResult
(false, e.getMessage()); } return result; }}

福利彩蛋

职位:腾讯OMG 广告后台高级开发工程师;

Base:深圳;
场景:海量数据,To B,To C,场景极具挑战性。
基础要求:
熟悉常用数据结构与算法;
熟悉常用网络协议,熟悉网络编程;
熟悉操作系统,有线上排查问题经验;
熟悉MySQL,oracle;
熟悉JAVA,GoLang,c++其中一种语言均可;
可内推,欢迎各位优秀开发道友私信[微笑]
期待关注我的开发小哥哥,小姐姐们私信我,机会很好,平台对标抖音,广告生态平台,类似Facebook 广告平台,希望你们用简历砸我~
联系方式 微信 13609184526

转载地址:http://zsbvx.baihongyu.com/

你可能感兴趣的文章
SQL Server 2016 Failover Cluster + ALwaysOn
查看>>
不疯魔,不成活!——二叉树的创建、遍历(递归实现)等操作。
查看>>
Xilinx Zynq-7000 嵌入式系统设计与实现
查看>>
Axure教程
查看>>
myeclipse开启后卡死、building workspace缓慢 问题解决
查看>>
php信息导航栏的代码编写
查看>>
[转载]斐讯K2 A2版免TTL刷BREED不死Bootloader
查看>>
[转载]WinRAR 3.8中文版 注册码
查看>>
二十八 错误、调试和测试
查看>>
js实现读秒
查看>>
HTML5
查看>>
文本域防止拖拽或者取消边框的做法
查看>>
如何监控wifi,3g,gps的流量
查看>>
I.MX6 bq27441 GPOUT interrupt
查看>>
Android 系统 reboot
查看>>
python2升级到python3 yum不可用解决方案
查看>>
手机端白屏前端优化的方法,5 种以上
查看>>
【转】如何把Json格式字符写进text文件中
查看>>
【BZOJ1703】【usaco2007margold】ranking the cows 奶牛的魅力排名
查看>>
浏览器 页面报错
查看>>