1.JavaWeb中服务器的分类: HTTP服务器,提供了静态网页的运行支持. Web服务器,提供了动态和静态网页运行的能力.比如:Tomcat,Jetty等. 2.Tomcat服务器: Apache组织提供的开源的,由Java语言编写的,实现了JavaEE中部分的规范.解析JSP最快的服务器,使用 ...
分类:
其他 时间:
2019-01-25 13:35:22
收藏:
0 评论:
0 赞:
0 阅读:
167
要专业系统地学习EF推荐《你必须掌握的Entity Framework 6.x与Core 2.0》。这本书作者(汪鹏,Jeffcky)的博客:https://www.cnblogs.com/CreateMyself/ 格式化日志输出 上次我们知道了利用ctx.Database.Log来进行简单的日志 ...
分类:
其他 时间:
2019-01-25 13:35:02
收藏:
0 评论:
0 赞:
0 阅读:
421
算法描述: Given a linked list, remove the n-th node from the end of list and return its head. Example: Given linked list: 1->2->3->4->5, and n = 2. After ...
分类:
其他 时间:
2019-01-25 13:34:41
收藏:
0 评论:
0 赞:
0 阅读:
175
本文主要考虑单点登录场景,登录由其他系统负责,业务子系统只使用shiro进行菜单和功能权限校验,登录信息通过token从redis取得,这样登录验证和授权就相互解耦了。 用户、角色、权限进行集中式管理。 参考: https://blog.csdn.net/qq_26321411/article/de ...
分类:
编程语言 时间:
2019-01-25 13:34:23
收藏:
0 评论:
0 赞:
0 阅读:
1113
字母表和串 定义 字母表:指一个有限的非空符号集∑,∑中元素称为字母 串:∑*为所有由∑中元素生成的有限长度序列全体,∑*中元素称为∑上的词(world)或串(string),即串是有限长度的符号序列 空串:∑*中的空序列称为空串,习惯上使用λ或ε表示,用Λ表示集合{λ} 概念 串的长度:串w中所含 ...
分类:
编程语言 时间:
2019-01-25 13:33:51
收藏:
0 评论:
0 赞:
0 阅读:
234
artillery_buzzer_pressed artillery_buzzer ...
分类:
移动平台 时间:
2019-01-25 13:32:45
收藏:
0 评论:
0 赞:
0 阅读:
318
算法描述: Given n pairs of parentheses, write a function to generate all combinations of well-formed parentheses. For example, given n = 3, a solution set ...
分类:
其他 时间:
2019-01-25 13:32:26
收藏:
0 评论:
0 赞:
0 阅读:
158
0. 写在最前面 一直想成为讲故事很厉害,无奈自己从小语文就不好,讲话写东西也是流水账的风格,如果各位大佬觉得无聊,直接拉到最后看面经即可。 大概去年的一月份左右,我也比较迷茫。这份迷茫源于,不清楚自己要怎么做,要怎么准备,对于来临的春招秋招毫不知情,不知如何才能找到一份不错的实习,一份相对不错的工 ...
分类:
其他 时间:
2019-01-25 13:32:08
收藏:
0 评论:
0 赞:
0 阅读:
238
WEB浏览器与WEB服务器之间的一问一答的交互过程必须遵循一定的规则,这个规则就是HTTP协议。HTTP是hypertext transfer protocol(超文本传输协议)的简写,它是TCP/IP协议之上的一个应用层协议,用于定义WEB浏览器与WEB服务器之间交换数据的过程以及数据本身的格式。 ...
分类:
Web开发 时间:
2019-01-25 13:31:39
收藏:
0 评论:
0 赞:
0 阅读:
160
算法描述: Given n non-negative integers a1, a2, ..., an , where each represents a point at coordinate (i, ai). n vertical lines are drawn such that the tw ...
分类:
其他 时间:
2019-01-25 13:30:58
收藏:
0 评论:
0 赞:
0 阅读:
156
1.iostream处理控制台IO 1 #include<iostream> 2 #include<string> 3 using namespace std; 4 istream& Test(istream &in) { //IO对象没有拷贝或者赋值,所以形参和返回值都不能设置为流类型,通常用引用 ...
分类:
编程语言 时间:
2019-01-25 13:30:36
收藏:
0 评论:
0 赞:
0 阅读:
239
Oracle中通过修改SQL语句,达到将查询的内容拼接为指定的字符串格式 eg: select '<ta:datagridItem id="' || column_name || '" key="' || comments || '" align="center" dataAlign="center ...
分类:
数据库技术 时间:
2019-01-25 13:30:18
收藏:
0 评论:
0 赞:
0 阅读:
188
算法描述: Implement atoi which converts a string to an integer. The function first discards as many whitespace characters as necessary until the first non ...
分类:
其他 时间:
2019-01-25 13:30:00
收藏:
0 评论:
0 赞:
0 阅读:
158
没想到是能开三维的 ...
分类:
其他 时间:
2019-01-25 13:29:17
收藏:
0 评论:
0 赞:
0 阅读:
158
属性查找与绑定方法 属性查找 类有两种属性:数据属性和函数属性 类的数据属性是共享的,在内存中只存在一份。 类的函数属性是绑定给对象用的,绑定到对象的内存地址都不一样。 python 类中的函数属性:是绑定给对象,绑定到不同对象 print(LuffyStudent,) print(s1.learn ...
分类:
其他 时间:
2019-01-25 13:29:00
收藏:
0 评论:
0 赞:
0 阅读:
143
算法描述: Given a string containing digits from 2-9 inclusive, return all possible letter combinations that the number could represent. A mapping of digit ...
分类:
其他 时间:
2019-01-25 13:28:25
收藏:
0 评论:
0 赞:
0 阅读:
170
一、MMM简介1、MMM(Master-MasterreplicationmanagerforMySQL,MySQL主主复制管理器)是一套支持双主故障切换和双主日常管理的脚本程序。2、MMM是一套灵活的脚本程序,基于perl实现,用来对mysqlreplication进行监控和故障转移,并能管理MySQLMaster-Master复制的配置。3、关于MMM高可用架构的说明如下:(1)mmm-mon
分类:
数据库技术 时间:
2019-01-25 12:47:35
收藏:
0 评论:
0 赞:
0 阅读:
208
1
分类:
其他 时间:
2019-01-25 12:46:13
收藏:
0 评论:
0 赞:
0 阅读:
171
一:mysql的源码编译安装①yuminstall-ygccgcc-c++makeopensslopenssl-develcmakencursesncurses-develbisonbison-devellibaiolibaio-devel②#创建mysql用户:useradd-M-s/sbin/nologinmysqlcd/usr/local/srcwget‘https://cdn.my
分类:
数据库技术 时间:
2019-01-25 12:45:39
收藏:
0 评论:
0 赞:
0 阅读:
198
LocationServices续1月23日
分类:
其他 时间:
2019-01-25 12:45:26
收藏:
0 评论:
0 赞:
0 阅读:
144