- 浏览: 148171 次
- 性别:
- 来自: 杭州
最新评论
-
hacker_zxf:
最近再去看quartz实现,job都是new出来的,如果需要自 ...
Quartz--JAVA计划任务 -
hacker_zxf:
quartz 的扩展型做的不好,本来试图将表达式扩展成支持毫秒 ...
Quartz--JAVA计划任务 -
piaoxue_x:
嗯,看看。。。。貌似不错,谢谢了。。。
Quartz--JAVA计划任务 -
673341766:
麻烦你看一下 红色的信息是报错好吧.
Quartz--JAVA计划任务 -
helong0904:
...
spring quartz配置定时器
文章列表
Java与模式(附光盘软件工程研究院)
66.0元
最近看了这本书,感觉讲的不错;
JAVA的容器---List Map Set
Collection
├List
│├LinkedList
│├ArrayList
│└Vector
│ └Stack
└Set
Map
├Hashtable
├HashMap
└WeakHashMap
Collection接口
Collection是最基本的集合接口,一个Collection代表一组Object,即Collection的元素(Elements)。一些 Collection允许相同的元素而另一些不行。一些能排序而另一些不行。Java SDK不提供直接继承自Collection的类,Java SDK提供的类都是继承自Col ...
@Retention : RetentionPolicy. SOURCE,CLASS,RUNTIME
@Target :ElementType.TYPE,FIELD,METHOD,PARAMETER,CONSTRUCTOR,LOCAL_VARIABLE,ANNOTATION_TYPE,PACKAGE
@Retention(RetentionPolicy.RUNTIME)
@Target(value = ElementType.FIELD)
public @interface In {
/**
* 范围
*
* @return
...
- 2009-11-28 05:29
- 浏览 979
- 评论(0)
http://subclipse.tigris.org/update_1.6.x
- 2009-11-15 21:17
- 浏览 733
- 评论(0)
想找几jar库访问地址: http://repo1.maven.org/maven2,里面的库很全,版本也很多.
摘自: http://www.cnblogs.com/baoguo/archive/2009/03/04/1402701.html
前段时间研究过一下maven,中途因为工作忙搁置了一段时间,重新再看时发现安装过程基本忘光。只好找资料看然后再来一遍,将 maven,artifactory和m2eclipse安装使用的全过程记录整理出来,备忘。另外我想这些资料应该比较适合maven的入门新手,照做 一遍就可以完成三个东西的安装设置,然后就可以学习和使用了。
一. 安装mave ...
- 2009-11-10 09:37
- 浏览 1058
- 评论(0)
创建普通应用项目:
mvn archetype:create -DgroupId=com.byread -DartifactId=blog
创建WEB项目:
mvn archetype:create -DgroupId=com.byread -DartifactId=blogweb -DarchetypeArtifactId=maven-archetype-webapp
创建appfuse项目:
mvn archetype:create -DarchetypeGroupId=org.appfuse.arche ...
- 2009-11-10 09:27
- 浏览 824
- 评论(0)
永远只能更新对象的成员变量时加锁
永远只能在访问有可能被更新对象的成员变量时加锁
永远不要在调用其他对象的方法时加锁
- 2009-11-09 21:36
- 浏览 705
- 评论(0)
下载:
http://maven.apache.org/download.html
超级pom.xml (pom 语法 maven 权威指南 9.3)
${M2_HOME}/lib 中的 maven-2.0.9-uber.jar
在 org.apache.maven.project 下一个名为 pom-4.0.0.xml 的文件
这是所有pom的父配置;
命令:
生成普通工程:
mvn archetype:create -DgroupId=com.sefer.employ -DartifactId=Employ-sys -DpackageName=com.sefer.employ ...
- 2009-11-09 21:30
- 浏览 1004
- 评论(0)
sudo apt-get install subversion
ubuntu svn 升级
Step 1: 下载安装包(两个)
wget http://subversion.tigris.org/downloads/subversion-deps-1.6.2.tar.gz
wget http://subversion.tigris.org/downloads/subversion-1.6.2.tar.gz
Step 2: 安装,将上面的2个包拷贝到同一目录,然后解压缩
$ tar xvzf subversion-1.6.2.tar.gz;tar xvzf subversion-dep ...
- 2009-11-09 20:03
- 浏览 3462
- 评论(0)
我本地用的是1.6.2,脚本如下:
#!/bin/sh
echo "This script will reconfigure subversion to work with certs correctly."
echo "Steps outlined by dcrooke and compiled into this script by Kalosaurusrex"
echo "Please see the ubuntuforums.org thread for more information, questions o ...
- 2009-11-09 12:53
- 浏览 1370
- 评论(0)
转自:http://www.sinojava.com/bbs/redirect.php?tid=1316&goto=lastpost
JAVA中枚举(Enum)的系列文章 - 反向查找、总结
在就是一个类一文中说到枚举也可以自定义构造函数,可以用属性来关联更多的数据。那如果我们有这样的一种需要该怎么 ...
- 2009-05-12 14:00
- 浏览 1859
- 评论(0)
定义一个用户,作为被反射对象;
public class User {
public String username;
private String password;
public static int age = 12;
public User(String username, String password) {
super();
this.username = username;
this.password = password;
}
pub ...
- 2009-04-20 20:18
- 浏览 1029
- 评论(0)
HashMap map = new HashMap();
Class c = this.getClass();
// 根据子类声明的field循环取值
for (int i = 0; i < c.getDeclaredFields().length; i++) {
try {
// 获取field
Field f = c.getDeclaredFields()[i];
String key = f.getName();
// 执行对应的get方法
...
- 2009-04-15 16:04
- 浏览 935
- 评论(0)
配置:
<beans>
<import resource="classpath:org/codehaus/xfire/spring/xfire.xml" />
<bean id="webAnnotations"
class="org.codehaus.xfire.annotations.jsr181.Jsr181WebAnnotations" lazy-init="false"/>
<bean id="handlerMapping&q ...
- 2009-01-22 12:31
- 浏览 3058
- 评论(3)
utf转UnicodeBig
- 博客分类:
- java基础
今天遇到一个奇怪的问题,代码如下:
public static String utfToUni(String str) {
if (str == null) {
return str;
}
try {
byte[] ss = str.getBytes("UTF-8");
str = new String(ss, "UnicodeBig");
} catch (UnsupportedEncoding ...
- 2008-12-23 20:06
- 浏览 941
- 评论(1)