本月博客排行
-
第1名
龙儿筝 -
第2名
lerf -
第3名
fantaxy025025 - johnsmith9th
- xiangjie88
- zysnba
年度博客排行
-
第1名
青否云后端云 -
第2名
宏天软件 -
第3名
gashero - wy_19921005
- vipbooks
- benladeng5225
- e_e
- wallimn
- javashop
- ranbuijj
- fantaxy025025
- jickcai
- gengyun12
- zw7534313
- qepwqnp
- 解宜然
- ssydxa219
- zysnba
- sam123456gz
- sichunli_030
- arpenker
- tanling8334
- gaojingsong
- kaizi1992
- xpenxpen
- 龙儿筝
- jh108020
- wiseboyloves
- ganxueyun
- xyuma
- xiangjie88
- wangchen.ily
- Jameslyy
- luxurioust
- lemonhandsome
- mengjichen
- jbosscn
- zxq_2017
- lzyfn123
- nychen2000
- forestqqqq
- wjianwei666
- ajinn
- zhanjia
- siemens800
- Xeden
- hanbaohong
- java-007
- 喧嚣求静
- mwhgJava
最新文章列表
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 ...