上一页 1 ··· 21 22 23 24 25 26 27 28 29 ··· 101 下一页
摘要: context root确定了Tomcat将那些URL请求转发到Web应用. 如果应用的context root 设置为 myapp,除非存在更为明确context root的Web应用,那么所有 /myapp or /myapp/* 的请求将被转发到你的应用进行处理,. 如果第二个应用contex 阅读全文
posted @ 2019-08-02 11:32 zzfx 阅读(2701) 评论(0) 推荐(0)
摘要: Spring,Spring MVC,Spring Boot 三者比较 Spring 框架就像一个家族,有众多衍生产品例如 boot、security、jpa等等。但他们的基础都是Spring 的 ioc和 aop ioc 提供了依赖注入的容器 aop ,解决了面向横切面的编程,然后在此两者的基础上实 阅读全文
posted @ 2019-07-29 21:58 zzfx 阅读(949) 评论(0) 推荐(0)
摘要: 函数式编程:函数作为变量和函数的计算结果 查看函数的引用方式: 1、以函数签名的方式对函数进行引用; 2、以函数输出值的形式对函数进行引用; 函数作为变量 vs 函数作为计算求值 惰性求值 阅读全文
posted @ 2019-07-29 11:08 zzfx 阅读(359) 评论(0) 推荐(0)
摘要: 函数式编程:面向可复用的map和pipeline机制的编程语言 阅读全文
posted @ 2019-07-29 10:33 zzfx 阅读(342) 评论(0) 推荐(0)
摘要: 1、用冗余代码实现额外信息的传递; 2、分离正常和异常的处理逻辑; 阅读全文
posted @ 2019-07-26 19:29 zzfx 阅读(190) 评论(0) 推荐(0)
摘要: Stack unwinding is just the process of navigating up the stack looking for the handler. Wikipedia summarizes it as follows: Some languages call for un 阅读全文
posted @ 2019-07-26 19:21 zzfx 阅读(167) 评论(0) 推荐(0)
摘要: 历史来源 讲述历史来源,不喜欢的可以跳过。但是我个人认为这对理解有帮助。 在计算机的世界中,有两位巨擘对问题的可计算性做了模型化描述[4]。 一位是阿兰.图灵(Alan Turing),他提出的图灵机。计算机系的各种学科中都充斥着这个概念,假设有一个纸带和一个打孔机,然后有一套指令,能够控制打孔机在 阅读全文
posted @ 2019-07-26 18:52 zzfx 阅读(271) 评论(0) 推荐(0)
摘要: 命令式编程 = 计算步骤 + 状态 函数式编程 = 函数(映射)构造 + 输入、输出 https://www.cnblogs.com/feng9exe/p/10179364.html 阅读全文
posted @ 2019-07-26 18:14 zzfx 阅读(304) 评论(0) 推荐(0)
摘要: 面向过程:把大象关进冰箱里: 把冰箱门打开=> 大象放冰箱里=> 冰箱门关上 面向对象: 冰箱.开门() 冰箱.放入(大象) 冰箱.关门() 函数式: 关进(冰箱,大象): 关门(放入(开门(冰箱),大象)) http://www.aichengxu.com/other/3730832.htm 阅读全文
posted @ 2019-07-26 16:54 zzfx 阅读(489) 评论(0) 推荐(0)
摘要: 函数式编程函数的组合方式 1、高阶函数 2、尾调用+返回偏函数; 3、monad类型链 函数式编程的最大问题是复杂映射表述能力。 阅读全文
posted @ 2019-07-26 16:28 zzfx 阅读(374) 评论(0) 推荐(0)
摘要: 语言的本质是对世界的表达能力。 函数式编程语言强于计算流的表达; 映射(函数) 域 组合(连接、结合) monand 函数式编程强于计算流的表达,弱于其他方面的表达。 函数式编程强调使用函数机制解决问题的方案,而不是对世界状态(以及状态维护)的描述。 编程范式 编程语言主要有三种类型[3]: 命令式 阅读全文
posted @ 2019-07-26 16:25 zzfx 阅读(345) 评论(0) 推荐(0)
摘要: https://www.cnblogs.com/chenpi/p/5652555.html https://github.com/peterchenhdu/webbf 阅读全文
posted @ 2019-07-25 16:47 zzfx 阅读(265) 评论(0) 推荐(0)
摘要: REmote DIctionary Server(Redis) 是一个由Salvatore Sanfilippo写的key-value存储系统。 Redis是一个开源的使用ANSI C语言编写、遵守BSD协议、支持网络、可基于内存亦可持久化的日志型、Key-Value数据库,并提供多种语言的API。 阅读全文
posted @ 2019-07-22 18:23 zzfx 阅读(182) 评论(0) 推荐(0)
摘要: <sql id="Base_Column_List" > collegeID, collegeName </sql> <select id="selectByPrimaryKey" resultMap="BaseResultMap" parameterType="java.lang.Long" > 阅读全文
posted @ 2019-07-22 18:00 zzfx 阅读(3387) 评论(1) 推荐(0)
摘要: 作用域:可见范围 阅读全文
posted @ 2019-07-22 15:02 zzfx 阅读(148) 评论(0) 推荐(0)
摘要: “Unlike stored instance properties, you must always give stored type properties a default value. This is because the type itself does not have an init 阅读全文
posted @ 2019-07-22 14:46 zzfx 阅读(220) 评论(0) 推荐(0)
摘要: In Swift, however, type properties are written as part of the type’s definition, within the type’s outer curly braces, and each type property is expli 阅读全文
posted @ 2019-07-22 14:44 zzfx 阅读(391) 评论(0) 推荐(0)
摘要: The foundation of Aspect Oriented Programming is the intercept pattern. We start with a crosscutting requirement - something that needs to occur in ma 阅读全文
posted @ 2019-07-22 14:19 zzfx 阅读(277) 评论(0) 推荐(0)
摘要: 线程创建数据库的连接后,所有通过这个连接操作数据库的上下文都会进入此线程的上下文; 通过其他线程修改当前线程的上下文为非法操作。 阅读全文
posted @ 2019-07-22 12:06 zzfx 阅读(368) 评论(0) 推荐(0)
摘要: 顶级抽象:protocol 具体类型:值类型、引用类型 类型操作:扩展 其他: 范型、函数式类型:function、monand 阅读全文
posted @ 2019-07-22 12:03 zzfx 阅读(269) 评论(0) 推荐(0)
上一页 1 ··· 21 22 23 24 25 26 27 28 29 ··· 101 下一页