- 浏览: 19350 次
- 性别:
- 来自: 广州
最新评论
文章列表
原文件来自http://yangshangchuan.iteye.com/blog/1841150
/**
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this fi ...
redis主从一些资料
- 博客分类:
- redis 缓存
http://www.cnblogs.com/lulu/archive/2013/06/10/3130878.html
http://blog.csdn.net/voyage_mh1987/article/details/8545966
http://heylinux.com/archives/1942.html
<bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
<property name="dataSource" ref="dataSource" />
<property name="typeAliasesPackage" value="com.zhidian3g.nextad.domain" />
<propert ...
原文链接http://yjy840326.blog.163.com/blog/static/53831948201242344940950/
Web app root system property already set to different value: 'webapp.root'
Tomcat发布多个项目时抛的webAppRootKey错误,部署到WAS控制台单独一个项目可以运行,两个项目同时运行先启动的可以运行,后启动的项目不会读本项目的web.xml信息。
异常信息
Web app root system property alrea ...
mysql开启远程连接
- 博客分类:
- mysql 知识点
解决方法:
1、改表法:
可能是你的帐号不允许从远程登陆,只能在localhost。这个时候只要在localhost的那台电脑,登入mysql后,更改 “mysql” 数据库里的 “user” 表里的 “host” 项,从“localhost”改称“%”
x:\>mysql -u root -pvmware
mysql> use mysql;
mysql> update user set host = ‘%’ where user = ‘root’;
mysql> select host, user from user;
mysql> flush priv ...
线程关键字volatile目的是为了保证数据的安全性,实际上这种方法也是存在漏洞的,一般不建议用。参考http://www.cnblogs.com/aigongsi/archive/2012/04/01/2429166.html
interrupt()方法使用注意:一般如果线程正常运行,没遇到wait, sleep,jion等阻塞现象,interrupt起不到停止线程作用,如果遇到阻塞现象那么interrupt()就起作用,通过抛异常来停止线程的运行状态。参考http://blog.csdn.net/wxwzy738/article/details/8516253
wait()和sleep( ...
集合的线性安全的解析与测试
- 博客分类:
- java 集合
Vector和ArrayList的本质区别到底是什么?http://flashing.iteye.com/blog/924440#bc2340031
ArrayList 和 CopyOnWriteArrayList 线程安全测试
http://zy116494718.iteye.com/blog/1701777
第一种:
通过jsp跳转到spring mvc 配置好的controller
web.xml文件
<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
index.jsp
<%@ page contentType="text/html;charset=utf-8"%>
<%@ taglib prefix="c" uri="http://java.sun.com/ ...
doc命令行打不开,用管理员打开命令行安装nexus install
nexus安装http://woshixy.blog.51cto.com/5637578/1325000
nexus服务启动不起来,看nexus安装目录下的日志具体原因解决,启动不起来原因有很多,如;jdk环境,端口被占用等;
端口占用查询:http://blog.csdn.net/jallin2001/article/details/7051804
原文来自:http://blog.csdn.net/cs78799662/article/details/5632173
原文来自2:http://www.cnblogs.com/Yogurshine/archive/2013/03/28/2986098.html
下面介绍怎样让Eclipse智能提示开发JSp的内置对象。
这是因为项目中没有添加Server Runtime的库。
在项目的Properties -> Java Build Path -> Libraries -> Add Library -> Server Runtime里选入所需的库(需 ...
java equals 与 hashcode的理解
http://blog.csdn.net/lishehe/article/details/18839495
java 类的equals方法重写例子
public boolean equals(Object o) {
if(o == null) {
return false;
}
if (o == this){
return true;
}
if (getClass() != ...
java 动态代理的几个demo
- 博客分类:
- java 动态代理的处理
基本的动态代理
http://blog.csdn.net/icecream0/article/details/7682513
含有代理工厂的动态代理http://xuxiaohongok.iteye.com/admin/blogs/new
原文来自:http://dylanxu.iteye.com/blog/1450069
package com.util;
import java.text.ParseException;
import java.text.ParsePosition;
import java.text.SimpleDateFormat;
import java.util.Calendar;
import java.util.Date;
import java.util.GregorianCalendar;
import org.apache.commons.lang.StringUti ...
保持顺序的 Java Properties 类
import java.util.Collections;
import java.util.Enumeration;
import java.util.LinkedHashSet;
import java.util.Properties;
import java.util.Set;
/**
* OrderedProperties
*/
public class OrderedProperties extends Properties {
private static final long serial ...
用eclipse,在编辑页面中按住【ctrl】点击你关心的class
左边的Project Explorer中沟中 右上角的【双向箭头】按钮。
这个时候Project Explorer中就能看到类属于哪个jar