文章列表
[10-7-19 8:25:24:493 GMT+08:00] 634a40 SystemErr R javax.transaction.TransactionRolledbackException: CORBA TRANSACTION_ROLLEDBACK 0x0 No; nested exception is:
org.omg.CORBA.TRANSACTION_ROLLEDBACK: javax.transaction.TransactionRolledbackException: vmcid: 0x0 minor code: 0 completed: No
WebService
多线程机制
缓存应用
定时任务
多功能报表
xml高级应用
性能优化(SQL、代码执行速度)
最近因为某些事心中莫名的有种失落。
想了很多,也许这是种好事,因为自己的懵懂,尝尝苦头也是应该的。
总是抱着侥幸的心里,想象着自己和别人可能不同,能把握好一切。
现在发现我错了,而且错得很离谱。
我该好好的反思一下,原来自己内心也是这么的脆弱。
别奢望这种春秋大梦了,还是踏踏实实的工作,生活需要平静,经不起这种波涛汹涌。
哎~
也许幸运离自己还是很远、很远、很远...
/**
* Notes:扩展的ArrayList类,方便在页面上进行显示.
* @author:
* @version:
*/
public class CommonArrayList extends ArrayList{
Class clazz; // 容器内保存的类
/**
* 私有构造函数,保证外界无法直接实例化
*/
private CommonArrayList() {
}
public CommonArrayList(Class clazz) {
this.clazz = clazz;
}
/**
* save the updates o ...
<a name="top" id="top"></a>
<Script Language="JavaScript">
document.getElementById("top").scrollIntoView()
</Script>
/**
* Notes:获取提交的数据
* @param object
* @throws ITException
*/
public void disposeSpecialChar(Object object) throws ITException {
String name = null;//对象属性
String value = null;//对象值
String[] values = null;//对象数组值
try {
if(null != object && !"".equals(object)){
...
<%
String showInfo = "showInfo("+index.intValue()+")";
%>
<html:select property="phytype" onchange='<%=showInfo%>'>
<html:option value="ESN">ESN</html:option>
<html:option value="MEID">MEID& ...
/**
*Notes:根据页面所选条件,弹出具体的对话框内容
*
*/
function alertWin(_index){
var array = getPageSize();//获取页面实际大小
var w = 650;
var h = 150;
var s=document.getElementsByTagName("select"); //--------------把所有select标签捉住
for(var j=0;j<12;j++){s[j].style.display="none";} //--- ...
//获取页面实际大小
function getPageSize(){
var xScroll,yScroll;
if (window.innerHeight && window.scrollMaxY){
xScroll = document.body.scrollWidth;
yScroll = window.innerHeight + window.scrollMaxY;
} else if (document.body.scrollHeight > document.body.offsetHeight){
sScroll = document ...
//显示客户列表窗口
function showUserInfo(){
var region = document.biddingConstractForm.region_Id.value;
var country = document.biddingConstractForm.country.value;
var group = document.biddingConstractForm.group.value;
var customer = document.biddingConstractForm.customerName.value;
var date = new ...