本月博客排行
-
第1名
Xeden -
第2名
fantaxy025025 -
第3名
bosschen - paulwong
- johnsmith9th
年度博客排行
-
第1名
青否云后端云 -
第2名
宏天软件 -
第3名
gashero - gengyun12
- wy_19921005
- vipbooks
- e_e
- benladeng5225
- ranbuijj
- wallimn
- javashop
- jickcai
- fantaxy025025
- zw7534313
- qepwqnp
- robotmen
- 解宜然
- ssydxa219
- sam123456gz
- zysnba
- sichunli_030
- tanling8334
- arpenker
- gaojingsong
- xpenxpen
- kaizi1992
- wiseboyloves
- jh108020
- xyuma
- ganxueyun
- wangchen.ily
- xiangjie88
- Jameslyy
- luxurioust
- mengjichen
- lemonhandsome
- jbosscn
- nychen2000
- zxq_2017
- lzyfn123
- wjianwei666
- forestqqqq
- ajinn
- siemens800
- hanbaohong
- 狂盗一枝梅
- java-007
- zhanjia
- 喧嚣求静
- Xeden
最新文章列表
Introducing AXIOM: The Axis Object Model
2006-08-02
Introducing AXIOM: The Axis Object Model
http://today.java.net/pub/a/today/2005/05/10/axiom.html
Introduction
XML has become one of the major technologies used today for business integra ...
使用ThreadLocal一些发现
在hibernate 类ThreadLocalSessionContext中有两段source code
public final Session currentSession(); throws HibernateException {
Session current = existingSession( factory );;
if (current == null); {
...
存储过程(Stored Procedures)编写规范
编写格式(个人的编程习惯)。良好的习惯有助于日后的维护, 欢迎添加, 修改.
文件名命名规则:
文件名: xxx_web_rp_Hotel_info.sql
xxx 公司名
web 这存储过程在WEB 中运用, 如MIS 中用, 刚用MIS.
rp 为存储过程功能, rp,为选出操作, ip为插入操作, dp为删除操作.
Hotel_Info 为具体信息.
例子: 如MIS 要用一个从Ro ...
Handling Errors Using Exceptions
Everyone tries to avoid them, but it's an unfortunate fact: Errors occur in software programs. However, if you handle errors properly, you'll greatly improve programs' readability, reliability and main ...