- 浏览: 183050 次
- 性别:
- 来自: 北京
最新评论
-
小黄牛:
基于支付系统真实场景的分布式事务解决方案效果演示:http:/ ...
spring 7 种分布式事务实现 -
blue2048:
看看两个实例的端口要不一样,另外,看看日志提示有没有错误
elasticsearch 单机部署 集群 -
mtsw2011:
我改了# Set the bind address speci ...
elasticsearch 单机部署 集群
文章列表
package com.sankuai.meituan.waimai.common;
import org.apache.commons.lang.ArrayUtils;
import sun.misc.BASE64Decoder;
import sun.misc.BASE64Encoder;
import sun.security.rsa.RSAPrivateKeyImpl;
import sun.security.rsa.RSAPublicKeyImpl;
import sun.security.util.DerValue;
import javax.crypto.C ...
月嫂服务合同
雇用(甲方): 电话 身份证号:
月嫂(乙方): 电话 身份证号:
由于____________(甲方)有雇用母婴护理员(简称月嫂)方面的需求,___________(乙方)愿意为甲方提供“月嫂”服务,并承诺为甲方提供专业、优质、安全的“月嫂”服务。为了明确双方权利和义务,经平等协商,特订立如下合同,双方共同遵守:
一 甲乙双方约定事项
1 服务期限:
______年______月______日起至______年______月______日止,共计___天。
2 服务费用:
甲方应支付乙方服务费共计元整人民币。签订本合同之日起甲方向乙方预交定金 元整 ...
Http的Cache机制总共有4个组成部分: Cache-Control: max-age=N(seconds) Last-Modified: Date, If-Modified-Since: Date Etag: "xxxx" Expires: Date 它们都存在于Request或者Response的Header中 按照作用来分可以分为浏览器端和服务器端。 浏览器端: ...
这是前几天在看类加载器机制时搜到的一篇旧文,网上搜了搜相应的中文资料,感觉很多意思没有翻译出来,这两天我试着自己翻译了一下,供同道参考。英文文章地址:Find a way out of the ClassLoader maze
走出类加载器迷宫(本人翻译,转载请注明出处)
系统类加载器, 当前类加载器, 上下文类加载器? 你应该用哪一个?
By Vladimir Roubtsov, JavaWorld.com, 06/06/03
June 6, 2003
Q:我什么时候该用Thread.getContextClassLoader()?
1.Java对象的强、软、弱和虚引用
在JDK 1.2以前的版本中,若一个对象不被任何变量引用,那么程序就无法再使用这个对象。也就是说,只有对象处于可触及(reachable)状态,程序才能使用它。这 就像在日常生活中,从商店购买了某样物品后,如果有用,就一直保留它,否则就把它扔到垃圾箱,由清洁工人收走。一般说来,如果物品已经被扔到垃圾箱,想再 把它捡回来使用就不可能了。
但有时候情况并不这么简单,你可能会遇到类似鸡肋一样的物品,食之无味,弃之可惜。这种物品现在已经无用了,保留它会占空间,但是立刻扔掉它也不划算,因 为也许将来还会派用场。对于这样的可有可无的物品,一种折衷的处理 ...
本文将介绍Solr查询中涉及到的Cache使用及相关的实现。Solr查询的核心类就是SolrIndexSearcher,每个core通常在同一时刻只由当前的SolrIndexSearcher供上层的handler使用(当切换SolrIndexSearcher时可能会有两个同时提供服务),而Solr的各种Cache是依附于SolrIndexSearcher的,SolrIndexSearcher在则Cache生,SolrIndexSearcher亡则Cache被清空close掉。Solr中的应用Cache有filterCache、queryResultCache、documentCache等,这 ...
solrconfig.xml配置文件主要定义了SOLR的一些处理规则,包括索引数据的存放位置,更新,删除,查询的一些规则配置。
可以在tomcat的安装路径下找到这个文件C:\Program Files\Apache Software Foundation\Tomcat 8.0\solr\collection1\conf
1.datadir节点
1.<dataDir>${solr.data.dir:d:/Server/Solr/data}</dataDir>定义了索引数据和日志文件的存放位置
...
Solr调研总结
开发类型
全文检索相关开发
Solr版本
4.2
文件内容
本文介绍solr的功能使用及相关注意事项;主要包括以下内容:环境搭建及调试;两个核心配置文件介绍;维护索引;查询索引,和在查询中可以应用的高亮显示、拼写检查、搜索建议、分组统计、拼音检索等功能的使用方法。
版本
作者/修改人
日期
V1.0
gzk
2013-06-04
绝对路径文件读取,最简单,最直接的方式
/**
* 从绝对路径读取文件,最基本的文件读取方式
成员名称
说明
Continue
等效于 HTTP 状态 100。Continue 指示客户端可能继续其请求。
SwitchingProtocols
等效于 HTTP 状态 101。SwitchingProtocols 指示正在更改协议版本或协议。
OK
等效于 HTTP 状态 200。OK 指示请求成功,且请求的信息包含在响应中。这是最常接收的状态代码。
Created
等效于 HTTP 状态 201。Created 指示请求导致在响应被发送前创建新资源。
Accepted
等效于 HTTP 状态 202。Accepted 指示请求已被接受做进一步处理 ...
/**
* Definition for binary tree
* public class TreeNode {
* int val;
* TreeNode left;
* TreeNode right;
* TreeNode(int x) { val = x; }
* }
*/
public class Solution {
public boolean isSameTree(TreeNode p, TreeNode q) {
if(p==null ...
/**
* Definition for binary tree
* public class TreeNode {
* int val;
* TreeNode left;
* TreeNode right;
* TreeNode(int x) { val = x; }
* }
*/
public class Solution {
public boolean isSymmetric(TreeNode root) {
if(root==null){
...
根据后序集合找到根,再根据根,在中序集合中找到索引号,采用递归的构建子树的方法
/**
* Definition for binary tree
* public class TreeNode {
* int val;
* TreeNode left;
* TreeNode right;
* TreeNode(int x) { val = x; }
* }
*/
public class Solution {
public TreeNode buildTree(int[] in ...
根据先序集合找到根,再根据根,在中序集合中找到索引号,采用递归的构建子树的方法
/**
* Definition for binary tree
* public class TreeNode {
* int val;
* TreeNode left;
* TreeNode right;
* TreeNode(int x) { val = x; }
* }
*/
public class Solution {
public TreeNode buildTree(int[] p ...
/**
* Definition for binary tree
* public class TreeNode {
* int val;
* TreeNode left;
* TreeNode right;
* TreeNode(int x) { val = x; }
* }
*/
public class Solution {
public int maxDepth(TreeNode root) {
if(root==null){
...