- 浏览: 1115616 次
最新评论
-
Lixh1986:
Java并发编程:自己动手写一把可重入锁https://blo ...
Java之多线程之Lock与Condition -
Lixh1986:
http://win.51apps.com.cn/https: ...
temp -
ztwsl:
不错,支持很好
HttpServletRequest和ServletRequest的区别 -
guodongkai:
谢谢您能将知识精华汇编总结,让初学者们从原理中学会和提高。
javaScript之function定义 -
kangwen23:
谢谢了,顶顶
struts2中的ValueStack学习
文章列表
From: http://www.cnblogs.com/cosiray/archive/2012/04/19/2456910.html
mysql-front5.1的注册码
在用mysql-front的时候可能会遇到显示:程序注册时间到期 程序将被限制模式下运行 这时候先打开你的mysql-front文件夹下的PAD-File.xml 中有<program-Info>下的<program-version>就是你的版本号。在帮助菜单下的点登记-->把以下的key一一试试,应该会有需要的。
gNBpPFgyOw9Rwt/ozsnjgM7tJNo2
bhaaATh ...
机器学习 - 微积分
1、什么是微积分
Calculus (from Latin calculus, literally "small pebble used for counting on an abacus")[1] is the mathematical study of continuous change
微积分是用数学方法研究连续的变换。
It has two major branches:
- differential calculus (concerning rates of change and slopes of curves)
- integ ...
点此查看全部:
http://es6-features.org
Constants
Constants
Support for constants (also known as "immutable variables"), i.e., variables which cannot be re-assigned new content. Notice: this only makes the variable itself immutable, not its assigned content (for instance, in case the content is ...
jQuery 3.2.1 Support
Desktop
Chrome: (Current - 1) and Current
Edge: (Current - 1) and Current
Firefox: (Current - 1) and Current
Internet Explorer: 9+
Safari: (Current - 1) and Current
Opera: Current
Mobile
Stock browser on Android 4.0+
Safari on iOS 7+
Any problem with jQuery in the above ...
https://www.zhihu.com/question/22704113
这个世界是如何运作的?
这个想法在我的脑海中转了好多年了,我自己都不确定它到底是不是一个“问题”,
更没有把握用文字将它描述出来,尝试一下吧…不求有答案…只求不被关闭……
首先 ...
引用:
http://www.iteye.com/news/32550" target="_blank">http://www.iteye.com/news/32550
写在前面
生活就像海洋,只有意志坚强的人才能到达彼岸。已经很久没有发文章了呀,想必大家都挂念我了,哈哈。温故而知新,今天一起来复习一下spring mvc的内容吧。
spring mvc简介与运行原理
Spring的模型-视图-控制器(MVC)框架是围绕一个DispatcherServlet来设计的,这个Servlet会把请求分发给各个处理器,并支持可配置的处理器映射、视图渲染、 ...
效果图:
注意以下要点:
1、提示框的箭头效果,且箭头随位置变动。
2、提示框的关闭按钮,且提示框内容高度随意。
3、阴影效果
测试网址:
https://www.w3schools.com/cssref/tryit.asp?filename=trycss3_box-shadow
代码:
<!DOCTYPE HTML>
<HTML>
<HEAD>
<script src="https://code.jquery.com/jquery-3.2.1.min.js"></script&g ...
https://docs.adobe.com/docs/en/aem/6-3/administer/content/package-manager.html
How to Work With Packages
Packages enable the importing and exporting of repository content.
For example, you can use packages to install new functionality, transfer content between instances, and back up repository co ...
一、一些常见的SQL实践
(1)负向条件查询不能使用索引
select * from order where status!=0 and stauts!=1
not in/not exists都不是好习惯
可以优化为in查询:
select * from order where status in(2,3)
(2)前导模糊查询不能使用索引
select * from order where desc like '%XX'
而非前导模糊查询则可以:
select * from order where desc like 'XX%'
(3)数据区分度不大的字段不宜使用索引
select * ...
1. What is "Apache Sling"?
Apache Sling is a web framework that uses a Java Content Repository, such as Apache Jackrabbit, to store and manage content.
Sling applications use either scripts or Java servlets, selected based on simple name conventions, to process HTTP requests in a RESTful ...
第一篇:Maven 的 Lifecycle 和 plugins
Maven 通过生命周期和配置插件构建项目
一、【生命周期】和【阶段】的概念
Maven 是基于插件的项目,这与其基于阶段的构建过程是分不开的。
Maven 的每一个构建阶段,都有对应绑定的插件。
注意:
构建阶段和插件是相互独立的。
构建阶段的默认执行插件及目标是通过 packaging 的类型指定的。
packaging 的类型中定义了一系列的阶段,及每个阶段要执行哪个插件的哪个目标。
Maven 把构建项目的过程,总体分为三个生命周期(lifecycle):
1、默认构建:default
2、项目清 ...
xmlns, xmlns:xsi, xsi:schemaLocation, and targetNamespace?
在 MAVEN 的 POM.xml 中,有这样的标签定义:
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 ...
IP,DNS,HostName
1、IP 与 DNS
无论是局域网还是广域网,每台主机都需要有一个网卡用来网络通信。
每个网卡都有一个IP地址,IP是用来区分网卡,是网卡的地址,它是唯一的。
没有2块网卡的IP地址相同。
但是IP地址不方便记忆 ...
SHELL 是用户用来方便操控【操作系统】的一个接口程序。
对于【操作系统】来说,这个接口程序就象是包在其外的一个壳:SHELL
----------------
下面对 shell 的基本命令:export 进行解释
-----------------
Bash has several commands that comes with the shell (i.e built inside the bash shell).
When you execute a built-in command, bash shell executes it immediately, without ...
pom.xml中build标签
pom.xml 中的 build 标签是用于配置 pom 的,
相当于 pom 的 configuration,主要用于:
1、定义(或声明)项目的目录结构
2、使用maven的插件(maven plugins)。
1、分类
根据 POM 4.00 XSD,build 元素可以划分为两种级别的构建:
1、基本构建:BaseBuild
2、正常构建:Build
正常构建包含基本构建,除此之外,还包含其它构建元素。
正常构建:Build 标签也分为两种:
1、project build ...