1、springmvc框架 1.1 什么是springmvc springmvc是spring框架的一个模块,springmvc和spring无需通过中间整合层进行整合。 springmvc是一个基于mvc的web框架。 1.2 Web MVC mvc设计模式在b/s系统下应用: 用户发起reque ...
分类:
编程语言 时间:
2021-03-17 14:41:09
阅读次数:
0
Python简易项目--购物车 项目拆分 # 目录文件结构 - ATM - conf - settings.py - core - src.py - db - db_handler.py - interface - admin_interface.py - bank_interface.py - s ...
分类:
编程语言 时间:
2021-03-16 14:07:47
阅读次数:
0
一首页热点数据放到缓存(不经常修改的数据) 1.轮播图 2.热门课程 3.名师 代码实现 1.导入依赖 <!-- redis --> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-st ...
分类:
其他好文 时间:
2021-03-12 12:15:40
阅读次数:
0
可修改性: 刺激源:程序员 刺激:修改主题、轮播图、活动等等 制品:淘宝主界面活动展示等。 环境:淘宝正常运行 响应:程序员修改对应的程序,不影响其他部分 响应度量:程序员后台更新,用户登录即可使用 性能: 刺激源:淘宝用户 刺激:购买商品 制品:生成订单 环境:淘宝正常运行 响应:生成订单,提示用 ...
分类:
其他好文 时间:
2021-03-11 20:53:24
阅读次数:
0
###基于vue2的垂直跑马灯(广播消息轮播组件) npm install vue-marquee new Vue({ el: 'body', data: function(){ return { listData: ['item1', 'item2', 'item3'] } }, componen ...
分类:
其他好文 时间:
2021-03-09 13:56:40
阅读次数:
0
ThreadLocal,这个东西到底是干嘛的,很多文章都有介绍,一般是先介绍一下这个类,然后再把它的set方法,和get方法说一遍。 但是说完了,你懂了吗,你知道这玩意儿是干什么用的了吗,好像还是迷迷糊糊的。 那么我今天也来说一说,那么切入点是什么,Handler消息机制。 是个人都知道Handle ...
分类:
其他好文 时间:
2021-03-08 13:53:38
阅读次数:
0
var index=1; left.onclick=function () { index++ if (index>3) { index=0 } one.style.left=-index*800+"px" } right.onclick=function () { index-- if (inde ...
分类:
其他好文 时间:
2021-03-08 13:34:42
阅读次数:
0
先给出接口 type Handler interface { do() SetNext(handler Handler) Handler Run() } // 用以复用 type Next struct { nextHandler Handler } func (n *Next) SetNext(h ...
分类:
其他好文 时间:
2021-03-06 14:47:05
阅读次数:
0
轮播图 <!DOCTYPE html> <html lang="ch-zn"> <head> <meta charset="UTF-8"> <link rel="" href=""> <meta name="viewport" content="width=device-width, initial ...
分类:
其他好文 时间:
2021-03-01 13:31:47
阅读次数:
0
手机屏展示这样的效果,用swiper去实现, <template> <view class="container"> <view class="mas-promo-swiper-scroll-wrapper" :style="{ transform:'translateX(' +swiperMarg ...
分类:
移动开发 时间:
2021-02-25 11:49:26
阅读次数:
0