- 浏览: 562590 次
- 性别:
- 来自: 长沙
最新评论
-
yubao2008:
[size=x-small]为什么我也这样试了, 就是没有生效 ...
javax.servlet.http.HttpServletResponse 得到 status_code -
chenrl:
...
SpringMVC杂记(十五) spring-mvc controller 的切面 -
LONGTENGLONG:
你好,这样配置的,得到的集合为空,是什么原因?
apache-shiro杂记(一) 统计在线用户数目 -
xiafengfeiwu:
[flash=200,200][url]引用[/url][/f ...
apache-shiro 学习笔记 -
3108493554:
你好 ,有些问题想请教下,加下我qq310849354,你这上 ...
SpringMVC杂记(十二) 自定义Interceptor从Active Directory得到域信息
文章列表
乾隆丁亥冬,葬三妹素文于上元之羊山而奠以文曰:
呜呼!汝生于浙而葬于斯,离吾乡七百里矣;当时虽觭梦幻想,宁知此为归骨所耶!
汝以一念之贞,遇人仳离,致孤危讬落;虽命之所存,天实为之,然而累汝至此者, ...
本小节讲如何使用dom4j解析一个xml文件
以读取books.xml位例
<?xml version="1.0" encoding="UTF-8"?>
<books>
<!-- this is a test for dom4j. -->
<book title="My Book">
<author sex="male">
<first-name>Zhuo</first-name>
<las ...
本节主要介绍如何用dom4j生成一个xml文档
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE catalog SYSTEM "file://x:/dtd/catalog.dtd">
<books>
<!-- this is a test for dom4j. -->
<book title="My Book">
<author sex="male">
...
整理的一些常用的正则表达式
[\u4e00-\u9fa5] 一个汉字
[^\x00-\xff] 一个双字节子
(^\s*)|(\s*$) 首有白字符或者尾有白字符
\w+([-+.]\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)* 电子邮件地址
http://([\w-]+\.)+[\w-]+(/[\w- ./?%&=]*)? 网址的URL
((2[0-4]\d|25[0-5]|[01]?\d\d?)\.){3}(2[0-4]\d|25[0-5]|[01]?\d\d?) IP地址
^\d+$ 匹配非负整数(正整数 + 0)
^[0-9]*[1-9][0-9]*$ ...
一,在Spring中配置事务管理器
1.事务管理器bean的声明
<bean id="transactionManager"
class="org.springframework.orm.hibernate3.HibernateTransactionManager">
<property name="sessionFactory" ref="sessionFactory" />
</bean>
2.如果你需要以标注驱动的方式管理的话,必须在application ...
一,选择缓存EHCache
毫无疑问ehcache.1.2.4.jar,这个发行包必须加入项目。
二,ehcache.xml 加入classpath
<?xml version="1.0" encoding="UTF-8"?>
<ehcache xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="ehcache.xsd">
<defaultCache ...
一,原来一贯用的properties配置文件
log4j.properties
log4j.rootLogger = WARN, stdout
#, file, html
#----------------------------------------------------------------
# Console
log4j.appender.stdout = org.apache.log4j.ConsoleAppender
log4j.appender.stdout.layout = org.apache.log4j.PatternLayout
log4j.appe ...
搜到一篇辞职信,诚以为不卑不亢,言语简练。参考之。
尊敬的唐总,尊敬的南姐:
承蒙厚爱,我得忝居XXX语音部二月有余。工作以来,虽兢兢业业,也拓展了几个小渠道。然天资不逮,不能承托领导期待。
虽才能浅薄,亦有不素餐之明,故请交接工作,结算工资,终止一切劳务关系。
请准。
XX
...
1)加载需要的properties配置文件
applicationContext.xml (spring2.5.6)
<bean class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer"
parent="properties"
/>
<bean id="properties"
class="org.springframework.beans.factory.config.Propertie ...
一,服务器端
1.真正的业务interface
package cn.com.legendapl.spring.service;
public interface OperationService {
public int add(int a, int b);
public int sub(int a, int b);
public int mul(int a, int b);
public int div(int a, int b);
}
2.RMI interface
需要特别注意的是RMI interface 与真正的业务interf ...