<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>form表单</title> </head> <!-- 所有标签都有的属性 id 用来标识元素的唯一性 name 用来提交数据时的参数名称 style 设置元素的css行内样式 c ...
分类:
其他好文 时间:
2021-01-25 11:39:18
阅读次数:
0
SpringMVC View 从jsp =》现代前端; C 从Servlet =》Controller; Model 包括数据和行为:dao+service,vo/dto DispatcherServlet 请求分发 dispatcher程序调度 SpringMVC执行流程: (找个清楚的图。。) ...
分类:
编程语言 时间:
2021-01-25 11:04:12
阅读次数:
0
T serviceClass=xxx.Class.newInstance(); Method xxxMethod = serviceClass.getMethod(methodName, requestClass); Object xxx = xxxMethod.invoke(serviceInst ...
分类:
其他好文 时间:
2021-01-25 10:36:12
阅读次数:
0
class EventBus { constructor(){} handlerBus={} //注册 $on(eventName,handler){ if(!this.handlerBus.hasOwnProperty(eventName)){ this.handlerBus[eventName] ...
分类:
Web程序 时间:
2021-01-22 12:01:16
阅读次数:
0
无意发现一个dateformat的问题 DateFormat dateFormat = new SimpleDateFormat("yyyyMMddHHmmss"); Date eventDate = dateFormat.parse("2021-01-22 12:34:22"); System.o ...
分类:
其他好文 时间:
2021-01-22 11:45:51
阅读次数:
0
一、开发模式 1、前后端不分离 前后端放在一块写 2、前后端分离 2.1、前端开发 2.2、后端开发 为前端提供API开发 永远返回HttpResponse 3、Django FBV、 CBV 3.1、FBV def users(request): if request.method == 'GET ...
分类:
其他好文 时间:
2021-01-21 10:44:00
阅读次数:
0
Sentinel上下文创建及执行,入口示例代码: public static void fun() { Entry entry = null; try { entry = SphU.entry(SOURCE_KEY); } catch (BlockException e1) { } finally ...
分类:
其他好文 时间:
2021-01-20 11:51:13
阅读次数:
0
Creational Patterns Factory Method : Factory Method Abstract Factory : Abstract Factory Builder : Builder Prototype : Prototype Singleton : Singleton ...
分类:
其他好文 时间:
2021-01-18 11:35:19
阅读次数:
0
字节码解释器工作时就是通过改变这个计数器的值来选取下一条需要执行的字节码指令。如果线程正在执行的是一个Java方法,这个计数器记录的是正在执行的虚拟机字节码指令的地址;如果正在执行的是本地(Native)方法,这个计数器值则应为空(Undefined)。 方法区(Method Area)别名叫作“非 ...
分类:
其他好文 时间:
2021-01-18 11:34:30
阅读次数:
0
spring MVC是一个基于MVC模式的表现层框架,在spring2.5以后增加了注解功能。使得开发变得更加高效、快捷。由于spring MVC是spring框架的一个模块,springmvc和spring无需通过中间整合层进行整合,可以达到无缝整合。 springMVC的特点有: 1、基于的是s ...
分类:
编程语言 时间:
2021-01-18 11:33:30
阅读次数:
0