一.创建项目项目名称:spring092901二.添加jar包commons-logging.jarjunit-4.4.jarlog4j.jarspring-beans-3.2.0.RELEASE.jarspring-context-3.2.0.RELEASE.jarspring-core-3.2.0.RELEASE.jarspring-expression-3.2.0.RELEASE.jar三.添加配置文件1.在项目中创建conf目录/conf2.在..
分类:
编程语言 时间:
2014-09-29 21:21:31
阅读次数:
227
一.创建项目项目名称:spring092901二.添加jar包commons-logging.jarjunit-4.4.jarlog4j.jarspring-beans-3.2.0.RELEASE.jarspring-context-3.2.0.RELEASE.jarspring-core-3.2.0.RELEASE.jarspring-expression-3.2.0.RELEASE.jar三.添加配置文件1.在项目中创建conf目录/conf2.在..
分类:
编程语言 时间:
2014-09-29 21:05:01
阅读次数:
181
一.创建项目项目名称:spring092901二.添加jar包commons-logging.jarjunit-4.4.jarlog4j.jarspring-beans-3.2.0.RELEASE.jarspring-context-3.2.0.RELEASE.jarspring-core-3.2.0.RELEASE.jarspring-expression-3.2.0.RELEASE.jar三.添加配置文件1.在项目中创建conf目录/conf2.在..
分类:
编程语言 时间:
2014-09-29 20:47:31
阅读次数:
222
一.创建项目项目名称:spring092901二.添加jar包commons-logging.jarjunit-4.4.jarlog4j.jarspring-beans-3.2.0.RELEASE.jarspring-context-3.2.0.RELEASE.jarspring-core-3.2.0.RELEASE.jarspring-expression-3.2.0.RELEASE.jar三.添加配置文件1.在项目中创建conf目录/conf2.在..
分类:
编程语言 时间:
2014-09-29 20:47:21
阅读次数:
203
一.创建项目项目名称:spring092901二.添加jar包commons-logging.jarjunit-4.4.jarlog4j.jarspring-beans-3.2.0.RELEASE.jarspring-context-3.2.0.RELEASE.jarspring-core-3.2.0.RELEASE.jarspring-expression-3.2.0.RELEASE.jar三.添加配置文件1.在项目中创建conf目录/conf2.在..
分类:
编程语言 时间:
2014-09-29 20:47:11
阅读次数:
151
一.创建项目项目名称:spring092901二.添加jar包commons-logging.jarjunit-4.4.jarlog4j.jarspring-beans-3.2.0.RELEASE.jarspring-context-3.2.0.RELEASE.jarspring-core-3.2.0.RELEASE.jarspring-expression-3.2.0.RELEASE.jar三.添加配置文件1.在项目中创建conf目录/conf2.在..
分类:
编程语言 时间:
2014-09-29 19:41:51
阅读次数:
260
一.创建项目项目名称:spring092901二.添加jar包commons-logging.jarjunit-4.4.jarlog4j.jarspring-beans-3.2.0.RELEASE.jarspring-context-3.2.0.RELEASE.jarspring-core-3.2.0.RELEASE.jarspring-expression-3.2.0.RELEASE.jar三.添加配置文件1.在项目中创建conf目录/conf2.在..
分类:
编程语言 时间:
2014-09-29 19:41:11
阅读次数:
170
原因: Sever1上是单网卡,Sever2上是多网卡。而服务A未指定注册RMI的IP。导致其它服务不能找到相应的RMI服务。 解决办法: <bean class="org.springframework.beans.factory.config.MethodInvokingFactoryBean"...
分类:
其他好文 时间:
2014-09-29 18:20:01
阅读次数:
165
直接lucas降到10w以内搞组合数
#include
#include
typedef __int64 LL;
LL f[110010];
LL pow(LL a, LL b, LL c)
{
LL ans = 1;
while(b)
{
if(b&1)
ans = (ans*a) % c;
b >>= 1;
a = (a*a) % c;
}
return an...
分类:
其他好文 时间:
2014-09-28 21:49:55
阅读次数:
216
访问JavaBean属性的两种方式1)直接调用bean的setXXX或getXXX方法;2)通过内省技术访问(java.beans包提供了内省的API),内省技术访问也提供了两种方式: a)通过PropertyDescriptor类操作Bean的属性; b)通过Introspector类获得Be.....
分类:
编程语言 时间:
2014-09-27 16:29:39
阅读次数:
227