facebook

confused problem about weblogic 8.1.2

  1. MyEclipse IDE
  2.  > 
  3. General Development
Viewing 12 posts - 16 through 27 (of 27 total)
  • Author
    Posts
  • #241427

    sinosupe
    Member

    BTW:”hot deploy” “hot code replacement” and “hot-swap” has any differents?

    #241567

    Scott Anderson
    Participant

    Append to library path:lib-C:/bea/weblogic81/server/lib
    lib-C:/bea/weblogic81/common/lib

    Can you modify the connector settings to remove these two directories from the path. They’re not needed and may cause a conflict.

    why remote debugging cant support j2ee app(my proj include 13 ejbs and 1 web)?

    It can. The example is simply using a web project but you can use your enterprise project just the same.

    BTW:”hot deploy” “hot code replacement” and “hot-swap” has any differents?

    hot deploy => deploying / redeploying a full application while a server is running
    hot code replacement == hot swap => Updating code in the running server’s VM in response to editing changes in the workspace.

    #242499

    sinosupe
    Member

    Thanks!

    I havn’t solve this troubled problem.If has any help,i provide source code.The following is the
    source code witch fall across trouble.

    package new97.pub.util;

    import java.util.*;
    import net.sf.hibernate.*;
    import net.sf.hibernate.cfg.Configuration;
    import org.apache.commons.logging.*;
    import net.sf.hibernate.cfg.Configuration;
    import net.sf.hibernate.SessionFactory;
    import javax.naming.InitialContext;

    public class HibernateUtil {
    /**
    *hibernate的query
    */
    protected Query query;
    private static Log log = LogFactory.getLog(HibernateUtil.class);
    public HibernateUtil() {

    }

    public HibernateUtil(Query q) {
    query = q;

    }
    /**
    * 根据查询总数query(如select count…),取得记录总数
    * @param q Query
    * @throws HibernateUtilException
    * @return int
    */
    public static int getCount(Query q) throws HibernateUtilException{
    int total = 0;
    try{
    total = ( (Integer) q.iterate().next()).intValue();
    }catch(HibernateException he){
    throw new HibernateUtilException(“hibernate util getcount exception\n Cause by:”+he.getMessage() +”\n”+he.getCause().toString());
    }
    return total;
    }
    /**
    * 创建hibernate的sessionFactory
    * @throws HibernateUtilException
    */
    public static void createSessionFactory(String jdniStr) throws HibernateUtilException{
    SessionFactory sf = null;
    if(log.isDebugEnabled()) log.debug(“createSessionFactory1”);
    try{
    sf = (SessionFactory)new InitialContext().lookup(
    jdniStr);
    }catch(javax.naming.NamingException ne){

    }
    if(log.isDebugEnabled()) log.debug(“createSessionFactory2”);
    try{
    if(sf==null){
    if(log.isDebugEnabled()) log.debug(“SessionFactory is null,and then begin create…“);
    Configuration conf = new Configuration();
    log.debug(“XXXXXXXXXXXXXXXXXXXXXXXXXXXX”);
    sf = conf.configure().buildSessionFactory();
    }else
    if(log.isDebugEnabled()) log.debug(“SessionFactory is not null,and use the old…”);
    }catch(HibernateException he){
    throw new HibernateUtilException(he);
    }

    }

    }

    give attention to the red word

    #242500

    sinosupe
    Member

    the whole weblogic console log:

    <2005-12-2 下午09时21分09秒 CST> <Info> <WebLogicServer> <BEA-000377> <Starting WebLogic Server with Java HotSpot(TM) Client VM Version 1.4.2_06-b03 from Sun Microsystems Inc.>
    <2005-12-2 下午09时21分15秒 CST> <Info> <Configuration Management> <BEA-150016> <This server is being started as the administration server.>
    <2005-12-2 下午09时21分15秒 CST> <Info> <Management> <BEA-141107> <Version: WebLogic Server 8.1 SP2 Fri Dec 5 15:01:51 PST 2003 316284
    WebLogic XMLX Module 8.1 SP2 Fri Dec 5 15:01:51 PST 2003 316284 >
    <2005-12-2 下午09时21分20秒 CST> <Notice> <Management> <BEA-140005> <Loading domain configuration from configuration repository at D:\bea\user_projects\domains\jdon\config.xml.>
    <2005-12-2 下午09时21分35秒 CST> <Notice> <Log Management> <BEA-170019> <The server log file D:\bea\user_projects\domains\jdon\myserver\myserver.log is opened. All server side log events will be written to this file.>
    <2005-12-2 下午09时21分42秒 CST> <Notice> <Security> <BEA-090082> <Security initializing using security realm myrealm.>
    <2005-12-2 下午09时21分43秒 CST> <Notice> <WebLogicServer> <BEA-000327> <Starting WebLogic Admin Server “myserver” for domain “jdon”>
    <2005-12-2 下午09时24分53秒 CST> <Warning> <HTTP> <BEA-101299> <The servlet-mapping for servlet-name “JSPClassServlet” will override the default mapping for *.jsp. This can lead to a show code vulnerability.>
    <2005-12-2 下午09时29分10秒 CST> <Warning> <EJB> <BEA-010212> <The EJB ‘SPSubEqptSVR(Application: new97app, EJBComponent: spejb)’ contains at least one method without an explicit transaction attribute setting. The default transaction attribute of Supports will be used for the following methods: remote[checkProdExcl(java.lang.Integer,java.util.List,java.lang.Integer), getProdList(java.lang.Integer,java.lang.Integer)] local[checkProdExcl(java.lang.Integer,java.util.List,java.lang.Integer), getProdList(java.lang.Integer,java.lang.Integer)] >
    <2005-12-2 下午09时29分10秒 CST> <Warning> <EJB> <BEA-010212> <The EJB ‘SPBatchPrintSVR(Application: new97app, EJBComponent: spejb)’ contains at least one method without an explicit transaction attribute setting. The default transaction attribute of Supports will be used for the following methods: remote[prtWorkItem(java.lang.Long,java.lang.Long,java.lang.String), qryPrintCltSimpInfo(java.lang.Integer,java.lang.String,new97.sp.ejb.vo.SPPrintVO), qryPrintWkItemInfo(java.lang.Integer,java.lang.Long,java.util.List,new97.sp.ejb.vo.SPPrintVO), initBatchPrint(java.lang.Integer,java.lang.String,java.lang.String,java.lang.String,new97.sp.ejb.vo.BatchPrintVO), qryWkItemIdBySoWkId(java.lang.Integer,java.lang.Long,java.lang.Long), printDMTJFSingle(java.lang.Integer,new97.sp.ejb.vo.SPPrintVO,java.lang.String), getWorkItemSoById(java.lang.String,java.lang.Integer), qryPrintJiaoJInfo(java.lang.Integer,java.lang.Long,java.lang.String,java.lang.String,java.lang.String,new97.sp.ejb.vo.PrintJiaoJVo), printCSJFSingle(java.lang.Integer,new97.sp.ejb.vo.SPPrintVO,java.lang.String), qryPrintCKSimpInfo(java.lang.Integer,java.lang.String,new97.sp.ejb.vo.SPPrintVO)] local[prtWorkItem(java.lang.Long,java.lang.Long,java.lang.String), qryPrintCltSimpInfo(java.lang.Integer,java.lang.String,new97.sp.ejb.vo.SPPrintVO), qryPrintWkItemInfo(java.lang.Integer,java.lang.Long,java.util.List,new97.sp.ejb.vo.SPPrintVO), initBatchPrint(java.lang.Integer,java.lang.String,java.lang.String,java.lang.String,new97.sp.ejb.vo.BatchPrintVO), qryWkItemIdBySoWkId(java.lang.Integer,java.lang.Long,java.lang.Long), printDMTJFSingle(java.lang.Integer,new97.sp.ejb.vo.SPPrintVO,java.lang.String), getWorkItemSoById(java.lang.String,java.lang.Integer), qryPrintJiaoJInfo(java.lang.Integer,java.lang.Long,java.lang.String,java.lang.String,java.lang.String,new97.sp.ejb.vo.PrintJiaoJVo), printCSJFSingle(java.lang.Integer,new97.sp.ejb.vo.SPPrintVO,java.lang.String), qryPrintCKSimpInfo(java.lang.Integer,java.lang.String,new97.sp.ejb.vo.SPPrintVO)] >
    <2005-12-2 下午09时29分10秒 CST> <Warning> <EJB> <BEA-010212> <The EJB ‘SPRollbackSVR(Application: new97app, EJBComponent: spejb)’ contains at least one method without an explicit transaction attribute setting. The default transaction attribute of Supports will be used for the following methods: remote[resendRollback(new97.sp.ejb.vo.RollbackInfoVO), retRollback(new97.sp.ejb.vo.RollbackInfoVO), findRollbackByVO(new97.sp.ejb.vo.RollbackInfoVO)] local[resendRollback(new97.sp.ejb.vo.RollbackInfoVO), retRollback(new97.sp.ejb.vo.RollbackInfoVO), findRollbackByVO(new97.sp.ejb.vo.RollbackInfoVO)] >
    <2005-12-2 下午09时29分10秒 CST> <Warning> <EJB> <BEA-010212> <The EJB ‘SPBatchInfoSVR(Application: new97app, EJBComponent: spejb)’ contains at least one method without an explicit transaction attribute setting. The default transaction attribute of Supports will be used for the following methods: remote[getExportData(java.lang.Integer,java.lang.String,java.lang.String), initSPBatchCommSpecTree(java.lang.Integer,java.lang.String), initSPProcessLevel(java.lang.Integer,java.lang.String), initSPBatchExch(java.lang.Integer,java.lang.String,java.lang.String), getSPBatchProcInfo(java.lang.Integer,java.lang.String), returnSPBatchWorkItem(java.lang.Integer,new97.sp.ejb.vo.SPBatchInfoVO), initSPBatchChangeSpec(java.lang.Integer,java.lang.String), findAllSoMeth(java.lang.Integer,java.lang.String), searchExch(java.lang.Integer,java.lang.String,java.lang.String,java.lang.String), initSPWorkAction(java.lang.Integer,java.lang.String), initSPBatchCommSpec(java.lang.Integer,java.lang.String), getSPBatchInfo(java.lang.Integer,new97.sp.ejb.vo.SPBatchInfoVO,int,int), countWorkItemNumber(java.lang.Integer,new97.sp.ejb.vo.SPBatchInfoVO), initSPCustLevel(java.lang.Integer,java.lang.String,java.util.List)] local[getExportData(java.lang.Integer,java.lang.String,java.lang.String), initSPBatchCommSpecTree(java.lang.Integer,java.lang.String), initSPProcessLevel(java.lang.Integer,java.lang.String), initSPBatchExch(java.lang.Integer,java.lang.String,java.lang.String), getSPBatchProcInfo(java.lang.Integer,java.lang.String), returnSPBatchWorkItem(java.lang.Integer,new97.sp.ejb.vo.SPBatchInfoVO), initSPBatchChangeSpec(java.lang.Integer,java.lang.String), findAllSoMeth(java.lang.Integer,java.lang.String), searchExch(java.lang.Integer,java.lang.String,java.lang.String,java.lang.String), initSPWorkAction(java.lang.Integer,java.lang.String), initSPBatchCommSpec(java.lang.Integer,java.lang.String), getSPBatchInfo(java.lang.Integer,new97.sp.ejb.vo.SPBatchInfoVO,int,int), countWorkItemNumber(java.lang.Integer,new97.sp.ejb.vo.SPBatchInfoVO), initSPCustLevel(java.lang.Integer,java.lang.String,java.util.List)] >
    <2005-12-2 下午09时29分10秒 CST> <Warning> <EJB> <BEA-010212> <The EJB ‘SPExceUncompleteSVR(Application: new97app, EJBComponent: spejb)’ contains at least one method without an explicit transaction attribute setting. The default transaction attribute of Supports will be used for the following methods: remote[getProcComInfo(new97.sp.ejb.vo.SPProcComVO), initWorkItemInfo(java.lang.String,java.lang.String,java.lang.String,java.lang.String), getCmpInfo(new97.sp.ejb.vo.SPCmpVO), getSPExceUncompleteInfo(java.lang.Integer,java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String)] local[getProcComInfo(new97.sp.ejb.vo.SPProcComVO), initWorkItemInfo(java.lang.String,java.lang.String,java.lang.String,java.lang.String), getCmpInfo(new97.sp.ejb.vo.SPCmpVO), getSPExceUncompleteInfo(java.lang.Integer,java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String)] >
    <2005-12-2 下午09时29分10秒 CST> <Warning> <EJB> <BEA-010212> <The EJB ‘SPQryStaffWorkSVR(Application: new97app, EJBComponent: spejb)’ contains at least one method without an explicit transaction attribute setting. The default transaction attribute of Supports will be used for the following methods: remote[qryStaffWork(java.lang.Long,java.lang.Long,java.util.Date,java.util.Date,java.lang.String,java.lang.String,java.lang.Integer,java.lang.String,java.lang.String), initStaffWork(java.lang.Long,java.lang.Integer,java.lang.Integer)] local[qryStaffWork(java.lang.Long,java.lang.Long,java.util.Date,java.util.Date,java.lang.String,java.lang.String,java.lang.Integer,java.lang.String,java.lang.String), initStaffWork(java.lang.Long,java.lang.Integer,java.lang.Integer)] >
    <2005-12-2 下午09时29分10秒 CST> <Warning> <EJB> <BEA-010212> <The EJB ‘SPBatchQuerySVR(Application: new97app, EJBComponent: spejb)’ contains at least one method without an explicit transaction attribute setting. The default transaction attribute of Supports will be used for the following methods: remote[addBatchQueryList(java.util.List,java.lang.Integer), updateBatchQuery(new97.ejb.vo.BatchQueryConfigVO,new97.ejb.vo.BatchQueryConfigVO,java.lang.Integer), addBatchQuery(new97.ejb.vo.BatchQueryConfigVO,java.lang.Integer), getProdTreeData(java.lang.Long,java.lang.Integer,java.lang.Integer,java.lang.Integer), getBatchQuery(java.lang.Long,java.lang.Integer), getCustCatList(java.lang.Integer), delBatchQuery(new97.ejb.vo.BatchQueryConfigVO,java.lang.Integer)] local[addBatchQueryList(java.util.List,java.lang.Integer), updateBatchQuery(new97.ejb.vo.BatchQueryConfigVO,new97.ejb.vo.BatchQueryConfigVO,java.lang.Integer), addBatchQuery(new97.ejb.vo.BatchQueryConfigVO,java.lang.Integer), getProdTreeData(java.lang.Long,java.lang.Integer,java.lang.Integer,java.lang.Integer), getBatchQuery(java.lang.Long,java.lang.Integer), getCustCatList(java.lang.Integer), delBatchQuery(new97.ejb.vo.BatchQueryConfigVO,java.lang.Integer)] >
    <2005-12-2 下午09时29分10秒 CST> <Warning> <EJB> <BEA-010212> <The EJB ‘SPJkHandleSVR(Application: new97app, EJBComponent: spejb)’ contains at least one method without an explicit transaction attribute setting. The default transaction attribute of Supports will be used for the following methods: remote[findJkByVO(new97.sp.ejb.vo.JkHandleInfoVO)] local[findJkByVO(new97.sp.ejb.vo.JkHandleInfoVO)] >
    <2005-12-2 下午09时29分10秒 CST> <Warning> <EJB> <BEA-010212> <The EJB ‘SPHastenHandleSVR(Application: new97app, EJBComponent: spejb)’ contains at least one method without an explicit transaction attribute setting. The default transaction attribute of Supports will be used for the following methods: remote[qryWorkItemSoSts(java.lang.Long,java.lang.Long,java.lang.Integer), qryZTCWaitPrintStr(java.util.List,java.lang.Integer), qryZTCWait(java.lang.Long,java.lang.Integer,java.lang.String), qryZTCWait(java.lang.Long,java.lang.Integer), qrySysConfig(java.lang.Long,java.lang.Integer,java.lang.Integer,java.lang.Long,java.lang.Integer), qryZTCWait(java.lang.Long,java.lang.Integer,java.lang.String,java.lang.String), retWorkItemSo(new97.wm.ejb.vo.WorkItemRetVO,java.lang.Integer)] local[qryWorkItemSoSts(java.lang.Long,java.lang.Long,java.lang.Integer), qryZTCWaitPrintStr(java.util.List,java.lang.Integer), qryZTCWait(java.lang.Long,java.lang.Integer,java.lang.String), qryZTCWait(java.lang.Long,java.lang.Integer), qrySysConfig(java.lang.Long,java.lang.Integer,java.lang.Integer,java.lang.Long,java.lang.Integer), qryZTCWait(java.lang.Long,java.lang.Integer,java.lang.String,java.lang.String), retWorkItemSo(new97.wm.ejb.vo.WorkItemRetVO,java.lang.Integer)] >
    <2005-12-2 下午09时29分10秒 CST> <Warning> <EJB> <BEA-010212> <The EJB ‘SPJkRuleSVR(Application: new97app, EJBComponent: spejb)’ contains at least one method without an explicit transaction attribute setting. The default transaction attribute of Supports will be used for the following methods: remote[addJkRuleList(java.util.List,java.lang.Integer), addJkRule(new97.ejb.vo.JkRuleVO,java.lang.Integer), updateJkRule(new97.ejb.vo.JkRuleVO,new97.ejb.vo.JkRuleVO,java.lang.Integer), qryAreaList(java.lang.Integer), getJkRule(java.lang.Integer,java.lang.Integer), delJkRule(new97.ejb.vo.JkRuleVO,java.lang.Integer)] local[addJkRuleList(java.util.List,java.lang.Integer), addJkRule(new97.ejb.vo.JkRuleVO,java.lang.Integer), updateJkRule(new97.ejb.vo.JkRuleVO,new97.ejb.vo.JkRuleVO,java.lang.Integer), qryAreaList(java.lang.Integer), getJkRule(java.lang.Integer,java.lang.Integer), delJkRule(new97.ejb.vo.JkRuleVO,java.lang.Integer)] >
    <2005-12-2 下午09时29分10秒 CST> <Warning> <EJB> <BEA-010212> <The EJB ‘SPRecHandleSVR(Application: new97app, EJBComponent: spejb)’ contains at least one method without an explicit transaction attribute setting. The default transaction attribute of Supports will be used for the following methods: remote[qryIntelItem(java.lang.Long,java.lang.Integer), recordHandle(java.util.List,java.lang.Integer,java.lang.Integer,java.lang.Long,java.lang.Long), getWkAreaStaff(java.lang.Long,java.lang.Integer)] local[qryIntelItem(java.lang.Long,java.lang.Integer), recordHandle(java.util.List,java.lang.Integer,java.lang.Integer,java.lang.Long,java.lang.Long), getWkAreaStaff(java.lang.Long,java.lang.Integer)] >
    <2005-12-2 下午09时29分10秒 CST> <Warning> <EJB> <BEA-010212> <The EJB ‘SPQryJiaoJSVR(Application: new97app, EJBComponent: spejb)’ contains at least one method without an explicit transaction attribute setting. The default transaction attribute of Supports will be used for the following methods: remote[qryFenLeiJiaoJList(java.lang.Long,java.lang.String,java.lang.String,java.util.Date,java.util.Date,java.lang.String,java.lang.Integer), qryJiaoJInfo(java.lang.Long,java.lang.String,java.lang.String,java.util.Date,java.util.Date,java.lang.String,java.lang.Integer)] local[qryFenLeiJiaoJList(java.lang.Long,java.lang.String,java.lang.String,java.util.Date,java.util.Date,java.lang.String,java.lang.Integer), qryJiaoJInfo(java.lang.Long,java.lang.String,java.lang.String,java.util.Date,java.util.Date,java.lang.String,java.lang.Integer)] >
    <2005-12-2 下午09时29分10秒 CST> <Warning> <EJB> <BEA-010212> <The EJB ‘SPRePrintSVR(Application: new97app, EJBComponent: spejb)’ contains at least one method without an explicit transaction attribute setting. The default transaction attribute of Supports will be used for the following methods: remote[getZtItemParameter(java.lang.Integer,java.lang.Long,java.lang.Integer), getWorkIdList(java.lang.Integer,java.lang.Long,java.lang.Integer), getWorkIdNbr(java.lang.Integer,java.lang.Long,java.lang.Integer), findItem(java.lang.Long,java.lang.Long,java.lang.Integer), getSendItemParameter(java.lang.Integer,java.lang.Long,java.lang.Integer), getRuntimePrintParameter(java.lang.Integer,java.lang.Long,java.lang.Integer), findItem(java.lang.Long,java.lang.Long,java.lang.Long,java.lang.Integer)] local[getZtItemParameter(java.lang.Integer,java.lang.Long,java.lang.Integer), getWorkIdList(java.lang.Integer,java.lang.Long,java.lang.Integer), getWorkIdNbr(java.lang.Integer,java.lang.Long,java.lang.Integer), findItem(java.lang.Long,java.lang.Long,java.lang.Integer), getSendItemParameter(java.lang.Integer,java.lang.Long,java.lang.Integer), getRuntimePrintParameter(java.lang.Integer,java.lang.Long,java.lang.Integer), findItem(java.lang.Long,java.lang.Long,java.lang.Long,java.lang.Integer)] >
    <2005-12-2 下午09时29分10秒 CST> <Warning> <EJB> <BEA-010212> <The EJB ‘SPProcInfoSVR(Application: new97app, EJBComponent: spejb)’ contains at least one method without an explicit transaction attribute setting. The default transaction attribute of Supports will be used for the following methods: remote[initSPProcInfo(java.lang.String,java.lang.Long,java.lang.Integer), saveSPProcInfo(java.lang.String,java.lang.Long,java.lang.Integer,new97.so.ejb.vo.MainPrptyInfoVO)] local[initSPProcInfo(java.lang.String,java.lang.Long,java.lang.Integer), saveSPProcInfo(java.lang.String,java.lang.Long,java.lang.Integer,new97.so.ejb.vo.MainPrptyInfoVO)] >
    <2005-12-2 下午09时29分10秒 CST> <Warning> <EJB> <BEA-010212> <The EJB ‘SPAccnbrJkSVR(Application: new97app, EJBComponent: spejb)’ contains at least one method without an explicit transaction attribute setting. The default transaction attribute of Supports will be used for the following methods: remote[retAccnbrJk(new97.sp.ejb.vo.AccNbrInfoVO), findAccNbrJkByBatch(new97.sp.ejb.vo.AccNbrInfoVO,java.lang.String), batchPrintList(java.util.List,new97.sp.ejb.vo.AccNbrInfoVO), findAccNbrJkByVO(new97.sp.ejb.vo.AccNbrInfoVO), resendAccnbrJk(new97.sp.ejb.vo.AccNbrInfoVO)] local[retAccnbrJk(new97.sp.ejb.vo.AccNbrInfoVO), findAccNbrJkByBatch(new97.sp.ejb.vo.AccNbrInfoVO,java.lang.String), batchPrintList(java.util.List,new97.sp.ejb.vo.AccNbrInfoVO), findAccNbrJkByVO(new97.sp.ejb.vo.AccNbrInfoVO), resendAccnbrJk(new97.sp.ejb.vo.AccNbrInfoVO)] >
    <2005-12-2 下午09时29分10秒 CST> <Warning> <EJB> <BEA-010212> <The EJB ‘SPBusinessSVR(Application: new97app, EJBComponent: spejb)’ contains at least one method without an explicit transaction attribute setting. The default transaction attribute of Supports will be used for the following methods: remote[getSoVOBySoNbr(java.lang.Integer,java.lang.String), getCustOrderBusinessVOBySoNbr(java.lang.Integer,java.lang.String), getLockedWorkItemSo(java.lang.Integer,java.lang.Integer)] local[getSoVOBySoNbr(java.lang.Integer,java.lang.String), getCustOrderBusinessVOBySoNbr(java.lang.Integer,java.lang.String), getLockedWorkItemSo(java.lang.Integer,java.lang.Integer)] >
    <2005-12-2 下午09时29分10秒 CST> <Warning> <EJB> <BEA-010212> <The EJB ‘SPImportCustSVR(Application: new97app, EJBComponent: spejb)’ contains at least one method without an explicit transaction attribute setting. The default transaction attribute of Supports will be used for the following methods: remote[addImportCust(new97.ejb.vo.ImportCustVO,java.lang.Integer), addImportCustList(java.util.List,java.lang.Integer), delImportCust(new97.ejb.vo.ImportCustVO,java.lang.Integer), qryAreaList(java.lang.Integer), updateImportCust(new97.ejb.vo.ImportCustVO,new97.ejb.vo.ImportCustVO,java.lang.Integer), getImportCust(java.lang.Integer,java.lang.Integer)] local[addImportCust(new97.ejb.vo.ImportCustVO,java.lang.Integer), addImportCustList(java.util.List,java.lang.Integer), delImportCust(new97.ejb.vo.ImportCustVO,java.lang.Integer), qryAreaList(java.lang.Integer), updateImportCust(new97.ejb.vo.ImportCustVO,new97.ejb.vo.ImportCustVO,java.lang.Integer), getImportCust(java.lang.Integer,java.lang.Integer)] >
    <2005-12-2 下午09时29分10秒 CST> <Warning> <EJB> <BEA-010212> <The EJB ‘SPJKHistorySVR(Application: new97app, EJBComponent: spejb)’ contains at least one method without an explicit transaction attribute setting. The default transaction attribute of Supports will be used for the following methods: remote[qryJKHistory(java.lang.Integer,java.lang.Integer,java.lang.Integer,java.util.Date,java.util.Date,java.lang.String,java.lang.String), updJKHistory(java.lang.Integer,java.lang.Long,java.lang.String,java.lang.Long,java.lang.Long,java.lang.Long,java.lang.String)] local[qryJKHistory(java.lang.Integer,java.lang.Integer,java.lang.Integer,java.util.Date,java.util.Date,java.lang.String,java.lang.String), updJKHistory(java.lang.Integer,java.lang.Long,java.lang.String,java.lang.Long,java.lang.Long,java.lang.Long,java.lang.String)] >
    <2005-12-2 下午09时29分12秒 CST> <Warning> <EJB> <BEA-010202> <Call-by-reference is not enabled for the EJB ‘SPJkQrySVR’. The server will have better performance if it is enabled. To enable call-by-reference, set the enable-call-by-reference element to True in the weblogic-ejb-jar.xml deployment descriptor for this EJB.>
    <2005-12-2 下午09时29分12秒 CST> <Warning> <EJB> <BEA-010202> <Call-by-reference is not enabled for the EJB ‘SPSVR’. The server will have better performance if it is enabled. To enable call-by-reference, set the enable-call-by-reference element to True in the weblogic-ejb-jar.xml deployment descriptor for this EJB.>
    <2005-12-2 下午09时29分12秒 CST> <Warning> <EJB> <BEA-010202> <Call-by-reference is not enabled for the EJB ‘SPSubEqptSVR’. The server will have better performance if it is enabled. To enable call-by-reference, set the enable-call-by-reference element to True in the weblogic-ejb-jar.xml deployment descriptor for this EJB.>
    <2005-12-2 下午09时29分12秒 CST> <Warning> <EJB> <BEA-010202> <Call-by-reference is not enabled for the EJB ‘SPBatchPrintSVR’. The server will have better performance if it is enabled. To enable call-by-reference, set the enable-call-by-reference element to True in the weblogic-ejb-jar.xml deployment descriptor for this EJB.>
    <2005-12-2 下午09时29分12秒 CST> <Warning> <EJB> <BEA-010202> <Call-by-reference is not enabled for the EJB ‘SPRollbackSVR’. The server will have better performance if it is enabled. To enable call-by-reference, set the enable-call-by-reference element to True in the weblogic-ejb-jar.xml deployment descriptor for this EJB.>
    <2005-12-2 下午09时29分12秒 CST> <Warning> <EJB> <BEA-010202> <Call-by-reference is not enabled for the EJB ‘SPBatchInfoSVR’. The server will have better performance if it is enabled. To enable call-by-reference, set the enable-call-by-reference element to True in the weblogic-ejb-jar.xml deployment descriptor for this EJB.>
    <2005-12-2 下午09时29分12秒 CST> <Warning> <EJB> <BEA-010202> <Call-by-reference is not enabled for the EJB ‘SPExceUncompleteSVR’. The server will have better performance if it is enabled. To enable call-by-reference, set the enable-call-by-reference element to True in the weblogic-ejb-jar.xml deployment descriptor for this EJB.>
    <2005-12-2 下午09时29分12秒 CST> <Warning> <EJB> <BEA-010202> <Call-by-reference is not enabled for the EJB ‘SPQryStaffWorkSVR’. The server will have better performance if it is enabled. To enable call-by-reference, set the enable-call-by-reference element to True in the weblogic-ejb-jar.xml deployment descriptor for this EJB.>
    <2005-12-2 下午09时29分12秒 CST> <Warning> <EJB> <BEA-010202> <Call-by-reference is not enabled for the EJB ‘SPSingleInfoSVR’. The server will have better performance if it is enabled. To enable call-by-reference, set the enable-call-by-reference element to True in the weblogic-ejb-jar.xml deployment descriptor for this EJB.>
    <2005-12-2 下午09时29分12秒 CST> <Warning> <EJB> <BEA-010202> <Call-by-reference is not enabled for the EJB ‘SPBatchQuerySVR’. The server will have better performance if it is enabled. To enable call-by-reference, set the enable-call-by-reference element to True in the weblogic-ejb-jar.xml deployment descriptor for this EJB.>
    <2005-12-2 下午09时29分12秒 CST> <Warning> <EJB> <BEA-010202> <Call-by-reference is not enabled for the EJB ‘SPJkHandleSVR’. The server will have better performance if it is enabled. To enable call-by-reference, set the enable-call-by-reference element to True in the weblogic-ejb-jar.xml deployment descriptor for this EJB.>
    <2005-12-2 下午09时29分12秒 CST> <Warning> <EJB> <BEA-010202> <Call-by-reference is not enabled for the EJB ‘SPHastenHandleSVR’. The server will have better performance if it is enabled. To enable call-by-reference, set the enable-call-by-reference element to True in the weblogic-ejb-jar.xml deployment descriptor for this EJB.>
    <2005-12-2 下午09时29分13秒 CST> <Warning> <EJB> <BEA-010202> <Call-by-reference is not enabled for the EJB ‘SPJkRuleSVR’. The server will have better performance if it is enabled. To enable call-by-reference, set the enable-call-by-reference element to True in the weblogic-ejb-jar.xml deployment descriptor for this EJB.>
    <2005-12-2 下午09时29分13秒 CST> <Warning> <EJB> <BEA-010202> <Call-by-reference is not enabled for the EJB ‘SPRecHandleSVR’. The server will have better performance if it is enabled. To enable call-by-reference, set the enable-call-by-reference element to True in the weblogic-ejb-jar.xml deployment descriptor for this EJB.>
    <2005-12-2 下午09时29分13秒 CST> <Warning> <EJB> <BEA-010202> <Call-by-reference is not enabled for the EJB ‘SPQryJiaoJSVR’. The server will have better performance if it is enabled. To enable call-by-reference, set the enable-call-by-reference element to True in the weblogic-ejb-jar.xml deployment descriptor for this EJB.>
    <2005-12-2 下午09时29分13秒 CST> <Warning> <EJB> <BEA-010202> <Call-by-reference is not enabled for the EJB ‘SPRePrintSVR’. The server will have better performance if it is enabled. To enable call-by-reference, set the enable-call-by-reference element to True in the weblogic-ejb-jar.xml deployment descriptor for this EJB.>
    <2005-12-2 下午09时29分13秒 CST> <Warning> <EJB> <BEA-010202> <Call-by-reference is not enabled for the EJB ‘SPProdNomaSVR’. The server will have better performance if it is enabled. To enable call-by-reference, set the enable-call-by-reference element to True in the weblogic-ejb-jar.xml deployment descriptor for this EJB.>
    <2005-12-2 下午09时29分13秒 CST> <Warning> <EJB> <BEA-010202> <Call-by-reference is not enabled for the EJB ‘SPProcInfoSVR’. The server will have better performance if it is enabled. To enable call-by-reference, set the enable-call-by-reference element to True in the weblogic-ejb-jar.xml deployment descriptor for this EJB.>
    <2005-12-2 下午09时29分13秒 CST> <Warning> <EJB> <BEA-010202> <Call-by-reference is not enabled for the EJB ‘SPAccnbrJkSVR’. The server will have better performance if it is enabled. To enable call-by-reference, set the enable-call-by-reference element to True in the weblogic-ejb-jar.xml deployment descriptor for this EJB.>
    <2005-12-2 下午09时29分13秒 CST> <Warning> <EJB> <BEA-010202> <Call-by-reference is not enabled for the EJB ‘SPBusinessSVR’. The server will have better performance if it is enabled. To enable call-by-reference, set the enable-call-by-reference element to True in the weblogic-ejb-jar.xml deployment descriptor for this EJB.>
    <2005-12-2 下午09时29分13秒 CST> <Warning> <EJB> <BEA-010202> <Call-by-reference is not enabled for the EJB ‘SPImportCustSVR’. The server will have better performance if it is enabled. To enable call-by-reference, set the enable-call-by-reference element to True in the weblogic-ejb-jar.xml deployment descriptor for this EJB.>
    <2005-12-2 下午09时29分13秒 CST> <Warning> <EJB> <BEA-010202> <Call-by-reference is not enabled for the EJB ‘SPJKHistorySVR’. The server will have better performance if it is enabled. To enable call-by-reference, set the enable-call-by-reference element to True in the weblogic-ejb-jar.xml deployment descriptor for this EJB.>
    21:34:24,390 INFO InitStrutsPlugIn:79 – init begin….
    21:34:24,437 DEBUG InitStrutsPlugIn:81 – isIniting———————-false
    21:34:24,453 INFO InitStrutsPlugIn:85 – init DataCache begin….
    21:34:24,609 DEBUG StoreSession:24 – 得到新的数据库工具
    21:34:24,953 DEBUG StoreSession:72 – 得到新连接
    21:34:25,703 DEBUG DataCache:1913 – DataCacheJndi———————-还没有绑定
    21:34:25,765 DEBUG DataCache:1922 – DataCacheJndi———————-绑定空的实例
    21:34:25,765 DEBUG DataCache:2007 – objName———————-conncilHouse
    21:34:25,843 DEBUG ReflectUtil:63 – fld.getType()———————-class java.util.HashMap
    21:34:25,859 DEBUG DataCache:1959 – isExist———————-true
    21:34:25,906 DEBUG DataCache:2013 – setHashMap———————-ok
    21:34:26,218 DEBUG DataCache:2007 – objName———————-product
    21:34:26,218 DEBUG ReflectUtil:63 – fld.getType()———————-class java.util.HashMap
    21:34:26,234 DEBUG DataCache:1959 – isExist———————-true
    21:34:26,296 DEBUG DataCache:2013 – setHashMap———————-ok
    21:34:26,375 DEBUG DataCache:2007 – objName———————-product_h
    21:34:26,390 DEBUG ReflectUtil:63 – fld.getType()———————-class java.util.HashMap
    21:34:26,406 DEBUG DataCache:1959 – isExist———————-true
    21:34:26,421 DEBUG DataCache:2013 – setHashMap———————-ok
    21:34:26,515 DEBUG DataCache:2007 – objName———————-changeServSpec
    21:34:26,515 DEBUG ReflectUtil:63 – fld.getType()———————-class java.util.HashMap
    21:34:26,562 DEBUG DataCache:1959 – isExist———————-true
    21:34:26,578 DEBUG DataCache:2013 – setHashMap———————-ok
    21:34:26,640 DEBUG DataCache:2007 – objName———————-changeServSpec_h
    21:34:26,640 DEBUG ReflectUtil:63 – fld.getType()———————-class java.util.HashMap
    21:34:26,656 DEBUG DataCache:1959 – isExist———————-true
    21:34:26,671 DEBUG DataCache:2013 – setHashMap———————-ok
    21:34:26,765 DEBUG DataCache:2007 – objName———————-commServSpec
    21:34:26,781 DEBUG ReflectUtil:63 – fld.getType()———————-class java.util.HashMap
    21:34:26,796 DEBUG DataCache:1959 – isExist———————-true
    21:34:26,812 DEBUG DataCache:2013 – setHashMap———————-ok
    21:34:26,937 DEBUG DataCache:2007 – objName———————-commServSpec_h
    21:34:26,937 DEBUG ReflectUtil:63 – fld.getType()———————-class java.util.HashMap
    21:34:27,031 DEBUG DataCache:1959 – isExist———————-true
    21:34:27,062 DEBUG DataCache:2013 – setHashMap———————-ok
    21:34:27,093 DEBUG DataCache:2007 – objName———————-certType
    21:34:27,093 DEBUG ReflectUtil:63 – fld.getType()———————-class java.util.HashMap
    21:34:27,125 DEBUG DataCache:1959 – isExist———————-true
    21:34:27,218 DEBUG DataCache:2013 – setHashMap———————-ok
    21:34:27,250 DEBUG DataCache:2007 – objName———————-certType_h
    21:34:27,250 DEBUG ReflectUtil:63 – fld.getType()———————-class java.util.HashMap
    21:34:27,312 DEBUG DataCache:1959 – isExist———————-true
    21:34:27,375 DEBUG DataCache:2013 – setHashMap———————-ok
    21:34:27,421 DEBUG DataCache:2007 – objName———————-unit
    21:34:27,437 DEBUG ReflectUtil:63 – fld.getType()———————-class java.util.HashMap
    21:34:27,468 DEBUG DataCache:1959 – isExist———————-true
    21:34:27,484 DEBUG DataCache:2013 – setHashMap———————-ok
    21:34:27,515 DEBUG DataCache:2007 – objName———————-area
    21:34:27,515 DEBUG ReflectUtil:63 – fld.getType()———————-class java.util.HashMap
    21:34:27,890 DEBUG DataCache:1959 – isExist———————-true
    21:34:27,921 DEBUG DataCache:2013 – setHashMap———————-ok
    21:34:27,937 DEBUG DataCache:2007 – objName———————-area_h
    21:34:27,937 DEBUG ReflectUtil:63 – fld.getType()———————-class java.util.HashMap
    21:34:27,968 DEBUG DataCache:1959 – isExist———————-true
    21:34:27,984 DEBUG DataCache:2013 – setHashMap———————-ok
    21:34:28,156 DEBUG DataCache:2007 – objName———————-handleType
    21:34:28,156 DEBUG ReflectUtil:63 – fld.getType()———————-class java.util.HashMap
    21:34:28,203 DEBUG DataCache:1959 – isExist———————-true
    21:34:28,218 DEBUG DataCache:2013 – setHashMap———————-ok
    21:34:28,421 DEBUG DataCache:2007 – objName———————-exch
    21:34:28,421 DEBUG ReflectUtil:63 – fld.getType()———————-class java.util.HashMap
    21:34:28,453 DEBUG DataCache:1959 – isExist———————-true
    21:34:28,484 DEBUG DataCache:2013 – setHashMap———————-ok
    21:34:28,515 DEBUG DataCache:2007 – objName———————-exch_h
    21:34:28,515 DEBUG ReflectUtil:63 – fld.getType()———————-class java.util.HashMap
    21:34:28,578 DEBUG DataCache:1959 – isExist———————-true
    21:34:28,609 DEBUG DataCache:2013 – setHashMap———————-ok
    21:34:28,734 DEBUG DataCache:2007 – objName———————-localNet
    21:34:28,750 DEBUG ReflectUtil:63 – fld.getType()———————-class java.util.HashMap
    21:34:28,781 DEBUG DataCache:1959 – isExist———————-true
    21:34:28,812 DEBUG DataCache:2013 – setHashMap———————-ok
    21:34:28,843 DEBUG DataCache:2007 – objName———————-localNet_h
    21:34:28,843 DEBUG ReflectUtil:63 – fld.getType()———————-class java.util.HashMap
    21:34:28,875 DEBUG DataCache:1959 – isExist———————-true
    21:34:30,265 DEBUG DataCache:2013 – setHashMap———————-ok
    21:34:30,359 DEBUG DataCache:2007 – objName———————-workArea
    21:34:30,359 DEBUG ReflectUtil:63 – fld.getType()———————-class java.util.HashMap
    21:34:30,390 DEBUG DataCache:1959 – isExist———————-true
    21:34:30,421 DEBUG DataCache:2013 – setHashMap———————-ok
    21:34:30,468 DEBUG DataCache:2007 – objName———————-workArea_h
    21:34:30,468 DEBUG ReflectUtil:63 – fld.getType()———————-class java.util.HashMap
    21:34:31,859 DEBUG DataCache:1959 – isExist———————-true
    21:34:31,906 DEBUG DataCache:2013 – setHashMap———————-ok
    21:34:31,953 DEBUG DataCache:2007 – objName———————-resourceSpec
    21:34:31,953 DEBUG ReflectUtil:63 – fld.getType()———————-class java.util.HashMap
    21:34:31,984 DEBUG DataCache:1959 – isExist———————-true
    21:34:32,031 DEBUG DataCache:2013 – setHashMap———————-ok
    21:34:32,078 DEBUG DataCache:2007 – objName———————-resourceSpec_h
    21:34:32,078 DEBUG ReflectUtil:63 – fld.getType()———————-class java.util.HashMap
    21:34:33,578 DEBUG DataCache:1959 – isExist———————-true
    21:34:33,609 DEBUG DataCache:2013 – setHashMap———————-ok
    21:34:33,687 DEBUG DataCache:2007 – objName———————-prodSpecCat
    21:34:33,687 DEBUG ReflectUtil:63 – fld.getType()———————-class java.util.HashMap
    21:34:34,093 DEBUG DataCache:1959 – isExist———————-true
    21:34:34,125 DEBUG DataCache:2013 – setHashMap———————-ok
    21:34:36,046 DEBUG DataCache:2007 – objName———————-prodSpecCat_h
    21:34:36,046 DEBUG ReflectUtil:63 – fld.getType()———————-class java.util.HashMap
    21:34:36,078 DEBUG DataCache:1959 – isExist———————-true
    21:34:36,109 DEBUG DataCache:2013 – setHashMap———————-ok
    21:34:36,171 DEBUG DataCache:2007 – objName———————-custType
    21:34:36,171 DEBUG ReflectUtil:63 – fld.getType()———————-class java.util.HashMap
    21:34:36,203 DEBUG DataCache:1959 – isExist———————-true
    21:34:36,250 DEBUG DataCache:2013 – setHashMap———————-ok
    21:34:36,343 DEBUG DataCache:2007 – objName———————-custCat
    21:34:36,343 DEBUG ReflectUtil:63 – fld.getType()———————-class java.util.HashMap
    21:34:36,375 DEBUG DataCache:1959 – isExist———————-true
    21:34:36,421 DEBUG DataCache:2013 – setHashMap———————-ok
    21:34:36,468 DEBUG DataCache:2007 – objName———————-custVoca
    21:34:36,484 DEBUG ReflectUtil:63 – fld.getType()———————-class java.util.HashMap
    21:34:36,515 DEBUG DataCache:1959 – isExist———————-true
    21:34:36,578 DEBUG DataCache:2013 – setHashMap———————-ok
    21:34:36,640 DEBUG DataCache:2007 – objName———————-custLevel
    21:34:36,640 DEBUG ReflectUtil:63 – fld.getType()———————-class java.util.HashMap
    21:34:36,671 DEBUG DataCache:1959 – isExist———————-true
    21:34:36,703 DEBUG DataCache:2013 – setHashMap———————-ok
    21:34:36,750 DEBUG DataCache:2007 – objName———————-payMeth
    21:34:36,750 DEBUG ReflectUtil:63 – fld.getType()———————-class java.util.HashMap
    21:34:38,140 DEBUG DataCache:1959 – isExist———————-true
    21:34:38,187 DEBUG DataCache:2013 – setHashMap———————-ok
    21:34:38,218 DEBUG DataCache:2007 – objName———————-payMeth_h
    21:34:38,218 DEBUG ReflectUtil:63 – fld.getType()———————-class java.util.HashMap
    21:34:38,265 DEBUG DataCache:1959 – isExist———————-true
    21:34:38,312 DEBUG DataCache:2013 – setHashMap———————-ok
    21:34:38,375 DEBUG DataCache:2007 – objName———————-resourceSpec
    21:34:38,375 DEBUG ReflectUtil:63 – fld.getType()———————-class java.util.HashMap
    21:34:39,796 DEBUG DataCache:1959 – isExist———————-true
    21:34:39,843 DEBUG DataCache:2013 – setHashMap———————-ok
    21:34:39,875 DEBUG DataCache:2007 – objName———————-resourceSpec_h
    21:34:39,875 DEBUG ReflectUtil:63 – fld.getType()———————-class java.util.HashMap
    21:34:39,921 DEBUG DataCache:1959 – isExist———————-true
    21:34:39,968 DEBUG DataCache:2013 – setHashMap———————-ok
    21:34:41,437 DEBUG DataCache:2007 – objName———————-rsSpecType
    21:34:41,437 DEBUG ReflectUtil:63 – fld.getType()———————-class java.util.HashMap
    21:34:41,468 DEBUG DataCache:1959 – isExist———————-true
    21:34:41,515 DEBUG DataCache:2013 – setHashMap———————-ok
    21:34:41,671 DEBUG DataCache:2007 – objName———————-specPrpty
    21:34:41,671 DEBUG ReflectUtil:63 – fld.getType()———————-class java.util.HashMap
    21:34:41,703 DEBUG DataCache:1959 – isExist———————-true
    21:34:43,171 DEBUG DataCache:2013 – setHashMap———————-ok
    21:34:43,250 DEBUG DataCache:2007 – objName———————-specPrpty_h
    21:34:43,250 DEBUG ReflectUtil:63 – fld.getType()———————-class java.util.HashMap
    21:34:43,328 DEBUG DataCache:1959 – isExist———————-true
    21:34:43,390 DEBUG DataCache:2013 – setHashMap———————-ok
    21:34:43,843 DEBUG DataCache:2007 – objName———————-specPrptyVal
    21:34:43,843 DEBUG ReflectUtil:63 – fld.getType()———————-class java.util.HashMap
    21:34:43,890 DEBUG DataCache:1959 – isExist———————-true
    21:34:43,968 DEBUG DataCache:2013 – setHashMap———————-ok
    21:34:44,046 DEBUG DataCache:2007 – objName———————-specPrptyVal_h
    21:34:44,046 DEBUG ReflectUtil:63 – fld.getType()———————-class java.util.HashMap
    21:34:45,437 DEBUG DataCache:1959 – isExist———————-true
    21:34:45,500 DEBUG DataCache:2013 – setHashMap———————-ok
    21:34:45,578 DEBUG DataCache:2007 – objName———————-relationType
    21:34:45,578 DEBUG ReflectUtil:63 – fld.getType()———————-class java.util.HashMap
    21:34:46,968 DEBUG DataCache:1959 – isExist———————-true
    21:34:47,031 DEBUG DataCache:2013 – setHashMap———————-ok
    21:34:47,093 DEBUG DataCache:2007 – objName———————-relationType_h
    21:34:47,093 DEBUG ReflectUtil:63 – fld.getType()———————-class java.util.HashMap
    21:34:48,500 DEBUG DataCache:1959 – isExist———————-true
    21:34:48,562 DEBUG DataCache:2013 – setHashMap———————-ok
    21:34:48,703 DEBUG DataCache:2007 – objName———————-prodSpec
    21:34:48,703 DEBUG ReflectUtil:63 – fld.getType()———————-class java.util.HashMap
    21:34:50,250 DEBUG DataCache:1959 – isExist———————-true
    21:34:50,328 DEBUG DataCache:2013 – setHashMap———————-ok
    21:34:51,812 DEBUG DataCache:2007 – objName———————-prodSpec_h
    21:34:51,828 DEBUG ReflectUtil:63 – fld.getType()———————-class java.util.HashMap
    21:34:52,031 DEBUG DataCache:1959 – isExist———————-true
    21:34:52,093 DEBUG DataCache:2013 – setHashMap———————-ok
    21:34:53,515 DEBUG DataCache:2007 – objName———————-acctItemType
    21:34:53,515 DEBUG ReflectUtil:63 – fld.getType()———————-class java.util.HashMap
    21:34:53,578 DEBUG DataCache:1959 – isExist———————-true
    21:34:53,640 DEBUG DataCache:2013 – setHashMap———————-ok
    21:34:55,125 DEBUG DataCache:2007 – objName———————-acctItemType_h
    21:34:55,125 DEBUG ReflectUtil:63 – fld.getType()———————-class java.util.HashMap
    21:34:55,218 DEBUG DataCache:1959 – isExist———————-true
    21:34:55,296 DEBUG DataCache:2013 – setHashMap———————-ok
    21:34:56,953 DEBUG DataCache:2007 – objName———————-groupType
    21:34:56,953 DEBUG ReflectUtil:63 – fld.getType()———————-class java.util.HashMap
    21:34:57,031 DEBUG DataCache:1959 – isExist———————-true
    21:34:57,156 DEBUG DataCache:2013 – setHashMap———————-ok
    21:34:57,281 DEBUG DataCache:2007 – objName———————-groupType_h
    21:34:57,281 DEBUG ReflectUtil:63 – fld.getType()———————-class java.util.HashMap
    21:34:57,343 DEBUG DataCache:1959 – isExist———————-true
    21:35:00,828 DEBUG DataCache:2013 – setHashMap———————-ok
    21:35:01,062 DEBUG DataCache:2007 – objName———————-custGroup
    21:35:01,468 DEBUG ReflectUtil:63 – fld.getType()———————-class java.util.HashMap
    21:35:01,828 DEBUG DataCache:1959 – isExist———————-true
    21:35:04,593 DEBUG DataCache:2013 – setHashMap———————-ok
    21:35:04,687 DEBUG DataCache:2007 – objName———————-custGroup_h
    21:35:04,703 DEBUG ReflectUtil:63 – fld.getType()———————-class java.util.HashMap
    21:35:05,015 DEBUG DataCache:1959 – isExist———————-true
    21:35:07,531 DEBUG DataCache:2013 – setHashMap———————-ok
    21:35:07,640 DEBUG DataCache:2007 – objName———————-msAgent
    21:35:07,640 DEBUG ReflectUtil:63 – fld.getType()———————-class java.util.HashMap
    21:35:09,406 DEBUG DataCache:1959 – isExist———————-true
    21:35:09,484 DEBUG DataCache:2013 – setHashMap———————-ok
    21:35:09,734 DEBUG DataCache:2007 – objName———————-msAgent_h
    21:35:09,734 DEBUG ReflectUtil:63 – fld.getType()———————-class java.util.HashMap
    21:35:11,203 DEBUG DataCache:1959 – isExist———————-true
    21:35:11,265 DEBUG DataCache:2013 – setHashMap———————-ok
    21:35:11,359 DEBUG DataCache:2007 – objName———————-partyRoleType
    21:35:11,359 DEBUG ReflectUtil:63 – fld.getType()———————-class java.util.HashMap
    21:35:12,937 DEBUG DataCache:1959 – isExist———————-true
    21:35:13,000 DEBUG DataCache:2013 – setHashMap———————-ok
    21:35:13,093 DEBUG DataCache:2007 – objName———————-partyRoleType_h
    21:35:13,093 DEBUG ReflectUtil:63 – fld.getType()———————-class java.util.HashMap
    21:35:14,531 DEBUG DataCache:1959 – isExist———————-true
    21:35:14,609 DEBUG DataCache:2013 – setHashMap———————-ok
    21:35:16,281 DEBUG DataCache:2007 – objName———————-step
    21:35:16,281 DEBUG ReflectUtil:63 – fld.getType()———————-class java.util.HashMap
    21:35:16,359 DEBUG DataCache:1959 – isExist———————-true
    21:35:16,437 DEBUG DataCache:2013 – setHashMap———————-ok
    21:35:18,140 DEBUG DataCache:2007 – objName———————-balanceType
    21:35:18,140 DEBUG ReflectUtil:63 – fld.getType()———————-class java.util.HashMap
    21:35:18,218 DEBUG DataCache:1959 – isExist———————-true
    21:35:18,343 DEBUG DataCache:2013 – setHashMap———————-ok
    21:35:20,468 DEBUG DataCache:2007 – objName———————-balanceType_h
    21:35:20,468 DEBUG ReflectUtil:63 – fld.getType()———————-class java.util.HashMap
    21:35:20,578 DEBUG DataCache:1959 – isExist———————-true
    21:35:22,250 DEBUG DataCache:2013 – setHashMap———————-ok
    21:35:22,250 DEBUG StoreSession:20 – 得到旧的数据库工具….
    21:35:22,281 DEBUG StoreSession:89 – 正常关闭数据库
    21:35:22,281 INFO InitStrutsPlugIn:93 – init DataCache end….
    21:35:22,281 INFO InitStrutsPlugIn:95 – init SessionFactory begin….
    21:35:22,531 DEBUG HibernateUtil:56 – createSessionFactory1
    21:35:22,593 DEBUG HibernateUtil:63 – createSessionFactory2
    21:35:22,593 DEBUG HibernateUtil:66 – SessionFactory is null,and then begin create…
    <2005-12-2 下午09时44分03秒 CST> <Error> <HTTP> <BEA-101216> <Servlet: “action” failed to preload on startup in Web application: “/new97web”.
    javax.servlet.ServletException
    at weblogic.servlet.internal.ServletStubImpl.createServlet(ServletStubImpl.java:884)
    at weblogic.servlet.internal.ServletStubImpl.createInstances(ServletStubImpl.java:848)
    at weblogic.servlet.internal.ServletStubImpl.prepareServlet(ServletStubImpl.java:787)
    at weblogic.servlet.internal.WebAppServletContext.preloadServlet(WebAppServletContext.java:3252)
    at weblogic.servlet.internal.WebAppServletContext.preloadServlets(WebAppServletContext.java:3197)
    at weblogic.servlet.internal.WebAppServletContext.preloadResources(WebAppServletContext.java:3174)
    at weblogic.servlet.internal.HttpServer.preloadResources(HttpServer.java:688)
    at weblogic.servlet.internal.WebService.preloadResources(WebService.java:483)
    at weblogic.servlet.internal.ServletInitService.resume(ServletInitService.java:30)
    at weblogic.t3.srvr.SubsystemManager.resume(SubsystemManager.java:131)
    at weblogic.t3.srvr.T3Srvr.resume(T3Srvr.java:964)
    at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:359)
    at weblogic.Server.main(Server.java:32)
    >
    21:44:06,078 DEBUG HibernateSession:63 – While trying to lookup ‘hibernate.session_factory’ didn’t find subcontext ‘hibernate’ Resolved
    new97.pub.util.HibernateSessionException: hibernate jndi exception:While trying to lookup ‘hibernate.session_factory’ didn’t find subcontext ‘hibernate’ Resolved
    at new97.pub.util.HibernateSession.openSession(HibernateSession.java:64)
    at new97.pub.util.sys.SysConfigHelper.findConfigCurValFromDB(SysConfigHelper.java:110)
    at new97.pub.util.sys.SysConfigHelper.getConfigVal(SysConfigHelper.java:86)
    at new97.pub.util.sys.SysConfigHelper.getIndexStartTime(SysConfigHelper.java:63)
    at new97.ms.search.doc.index.DocIndexTaskManager.beginTask(DocIndexTaskManager.java:28)
    at new97.ms.search.doc.index.DocIndexStartServlet.init(DocIndexStartServlet.java:21)
    at javax.servlet.GenericServlet.init(GenericServlet.java:258)
    at weblogic.servlet.internal.ServletStubImpl$ServletInitAction.run(ServletStubImpl.java:993)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:317)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:118)
    at weblogic.servlet.internal.ServletStubImpl.createServlet(ServletStubImpl.java:869)
    at weblogic.servlet.internal.ServletStubImpl.createInstances(ServletStubImpl.java:848)
    at weblogic.servlet.internal.ServletStubImpl.prepareServlet(ServletStubImpl.java:787)
    at weblogic.servlet.internal.WebAppServletContext.preloadServlet(WebAppServletContext.java:3252)
    at weblogic.servlet.internal.WebAppServletContext.preloadServlets(WebAppServletContext.java:3197)
    at weblogic.servlet.internal.WebAppServletContext.preloadResources(WebAppServletContext.java:3174)
    at weblogic.servlet.internal.HttpServer.preloadResources(HttpServer.java:688)
    at weblogic.servlet.internal.WebService.preloadResources(WebService.java:483)
    at weblogic.servlet.internal.ServletInitService.resume(ServletInitService.java:30)
    at weblogic.t3.srvr.SubsystemManager.resume(SubsystemManager.java:131)
    at weblogic.t3.srvr.T3Srvr.resume(T3Srvr.java:964)
    at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:359)
    at weblogic.Server.main(Server.java:32)
    21:44:06,187 DEBUG StoreSession:20 – 得到旧的数据库工具….
    21:44:06,187 DEBUG StoreSession:72 – 得到新连接
    21:44:08,937 DEBUG StoreSession:20 – 得到旧的数据库工具….
    21:44:08,953 DEBUG StoreSession:89 – 正常关闭数据库
    21:44:08,953 DEBUG ERRINFO:110 – Select * from sp_message where MSG_ID=
    21:44:08,968 DEBUG StoreSession:20 – 得到旧的数据库工具….
    21:44:08,968 DEBUG StoreSession:72 – 得到新连接
    21:44:09,000 DEBUG StoreSession:20 – 得到旧的数据库工具….
    21:44:09,000 DEBUG StoreSession:89 – 正常关闭数据库
    21:44:09,000 DEBUG SysException:115 – writeSysException begin
    21:44:09,015 DEBUG SysException:118 – id:
    21:44:09,015 DEBUG SysException:119 – msg:错误号无对应错误信息,请先定义错误信息!:取Session错误!
    21:44:09,015 DEBUG SysException:125 – new97.pub.util.HibernateSessionException: hibernate jndi exception:While trying to lookup ‘hibernate.session_factory’ didn’t find subcontext ‘hibernate’ Resolved
    at new97.pub.util.HibernateSession.openSession(HibernateSession.java:64)
    at new97.pub.util.sys.SysConfigHelper.findConfigCurValFromDB(SysConfigHelper.java:110)
    at new97.pub.util.sys.SysConfigHelper.getConfigVal(SysConfigHelper.java:86)
    at new97.pub.util.sys.SysConfigHelper.getIndexStartTime(SysConfigHelper.java:63)
    at new97.ms.search.doc.index.DocIndexTaskManager.beginTask(DocIndexTaskManager.java:28)
    at new97.ms.search.doc.index.DocIndexStartServlet.init(DocIndexStartServlet.java:21)
    at javax.servlet.GenericServlet.init(GenericServlet.java:258)
    at weblogic.servlet.internal.ServletStubImpl$ServletInitAction.run(ServletStubImpl.java:993)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:317)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:118)
    at weblogic.servlet.internal.ServletStubImpl.createServlet(ServletStubImpl.java:869)
    at weblogic.servlet.internal.ServletStubImpl.createInstances(ServletStubImpl.java:848)
    at weblogic.servlet.internal.ServletStubImpl.prepareServlet(ServletStubImpl.java:787)
    at weblogic.servlet.internal.WebAppServletContext.preloadServlet(WebAppServletContext.java:3252)
    at weblogic.servlet.internal.WebAppServletContext.preloadServlets(WebAppServletContext.java:3197)
    at weblogic.servlet.internal.WebAppServletContext.preloadResources(WebAppServletContext.java:3174)
    at weblogic.servlet.internal.HttpServer.preloadResources(HttpServer.java:688)
    at weblogic.servlet.internal.WebService.preloadResources(WebService.java:483)
    at weblogic.servlet.internal.ServletInitService.resume(ServletInitService.java:30)
    at weblogic.t3.srvr.SubsystemManager.resume(SubsystemManager.java:131)
    at weblogic.t3.srvr.T3Srvr.resume(T3Srvr.java:964)
    at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:359)
    at weblogic.Server.main(Server.java:32)

    21:44:09,062 ERROR SysConfigHelper:91 – 查询SYS_CONFIG失败!config_id:11001
    new97.pub.err.SysException: new97.pub.util.HibernateSessionException: hibernate jndi exception:While trying to lookup ‘hibernate.session_factory’ didn’t find subcontext ‘hibernate’ Resolved
    at new97.pub.util.sys.SysConfigHelper.findConfigCurValFromDB(SysConfigHelper.java:120)
    at new97.pub.util.sys.SysConfigHelper.getConfigVal(SysConfigHelper.java:86)
    at new97.pub.util.sys.SysConfigHelper.getIndexStartTime(SysConfigHelper.java:63)
    at new97.ms.search.doc.index.DocIndexTaskManager.beginTask(DocIndexTaskManager.java:28)
    at new97.ms.search.doc.index.DocIndexStartServlet.init(DocIndexStartServlet.java:21)
    at javax.servlet.GenericServlet.init(GenericServlet.java:258)
    at weblogic.servlet.internal.ServletStubImpl$ServletInitAction.run(ServletStubImpl.java:993)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:317)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:118)
    at weblogic.servlet.internal.ServletStubImpl.createServlet(ServletStubImpl.java:869)
    at weblogic.servlet.internal.ServletStubImpl.createInstances(ServletStubImpl.java:848)
    at weblogic.servlet.internal.ServletStubImpl.prepareServlet(ServletStubImpl.java:787)
    at weblogic.servlet.internal.WebAppServletContext.preloadServlet(WebAppServletContext.java:3252)
    at weblogic.servlet.internal.WebAppServletContext.preloadServlets(WebAppServletContext.java:3197)
    at weblogic.servlet.internal.WebAppServletContext.preloadResources(WebAppServletContext.java:3174)
    at weblogic.servlet.internal.HttpServer.preloadResources(HttpServer.java:688)
    at weblogic.servlet.internal.WebService.preloadResources(WebService.java:483)
    at weblogic.servlet.internal.ServletInitService.resume(ServletInitService.java:30)
    at weblogic.t3.srvr.SubsystemManager.resume(SubsystemManager.java:131)
    at weblogic.t3.srvr.T3Srvr.resume(T3Srvr.java:964)
    at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:359)
    at weblogic.Server.main(Server.java:32)
    Caused by: new97.pub.util.HibernateSessionException: hibernate jndi exception:While trying to lookup ‘hibernate.session_factory’ didn’t find subcontext ‘hibernate’ Resolved
    at new97.pub.util.HibernateSession.openSession(HibernateSession.java:64)
    at new97.pub.util.sys.SysConfigHelper.findConfigCurValFromDB(SysConfigHelper.java:110)
    … 21 more
    <2005-12-2 下午09时44分09秒 CST> <Error> <HTTP> <BEA-101216> <Servlet: “initDocIndex” failed to preload on startup in Web application: “/new97web”.
    javax.servlet.ServletException: 查询SYS_CONFIG失败!config_id:11001
    at weblogic.servlet.internal.ServletStubImpl.createServlet(ServletStubImpl.java:884)
    at weblogic.servlet.internal.ServletStubImpl.createInstances(ServletStubImpl.java:848)
    at weblogic.servlet.internal.ServletStubImpl.prepareServlet(ServletStubImpl.java:787)
    at weblogic.servlet.internal.WebAppServletContext.preloadServlet(WebAppServletContext.java:3252)
    at weblogic.servlet.internal.WebAppServletContext.preloadServlets(WebAppServletContext.java:3197)
    at weblogic.servlet.internal.WebAppServletContext.preloadResources(WebAppServletContext.java:3174)
    at weblogic.servlet.internal.HttpServer.preloadResources(HttpServer.java:688)
    at weblogic.servlet.internal.WebService.preloadResources(WebService.java:483)
    at weblogic.servlet.internal.ServletInitService.resume(ServletInitService.java:30)
    at weblogic.t3.srvr.SubsystemManager.resume(SubsystemManager.java:131)
    at weblogic.t3.srvr.T3Srvr.resume(T3Srvr.java:964)
    at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:359)
    at weblogic.Server.main(Server.java:32)
    >
    21:44:09,453 INFO PopMsgFactory:70 – 注册弹出消息实现:new97.ms.struts.work.remevent.MSRemEventPopMsgImpl成功!
    <2005-12-2 下午09时44分12秒 CST> <Notice> <WebLogicServer> <BEA-000331> <Started WebLogic Admin Server “myserver” for domain “jdon” running in Development Mode>
    <2005-12-2 下午09时44分12秒 CST> <Notice> <WebLogicServer> <BEA-000360> <Server started in RUNNING mode>
    <2005-12-2 下午09时44分12秒 CST> <Warning> <WebLogicServer> <BEA-000372> <HostName: 0.0.0.0, maps to multiple IP addresses:192.168.0.210,133.193.7.210>
    <2005-12-2 下午09时44分12秒 CST> <Notice> <WebLogicServer> <BEA-000355> <Thread “ListenThread.Default” listening on port 8001, ip address *.*>

    #242517

    Riyad Kalla
    Member

    21:44:06,078 DEBUG HibernateSession:63 – While trying to lookup ‘hibernate.session_factory’ didn’t find subcontext ‘hibernate’ Resolved
    new97.pub.util.HibernateSessionException: hibernate jndi exception:While trying to lookup ‘hibernate.session_factory’ didn’t find subcontext ‘hibernate’ Resolved
    at new97.pub.util.HibernateSession.openSession(HibernateSession.java:64)

    Luckily this error looks straight forward enough, it seems you might have not setup your JNDI data source in your app server correctly.

    I’m not farmiliar with WebLogic so I don’t know where that setting is, but if you login to the administrative console, can you find where the data source is configured and see if it is infact working and/or not missing?

    #242564

    sinosupe
    Member

    @support-rkalla wrote:

    21:44:06,078 DEBUG HibernateSession:63 – While trying to lookup ‘hibernate.session_factory’ didn’t find subcontext ‘hibernate’ Resolved
    new97.pub.util.HibernateSessionException: hibernate jndi exception:While trying to lookup ‘hibernate.session_factory’ didn’t find subcontext ‘hibernate’ Resolved
    at new97.pub.util.HibernateSession.openSession(HibernateSession.java:64)

    Luckily this error looks straight forward enough, it seems you might have not setup your JNDI data source in your app server correctly.

    I’m not farmiliar with WebLogic so I don’t know where that setting is, but if you login to the administrative console, can you find where the data source is configured and see if it is infact working and/or not missing?

    of course,i setup JNDI data source,otherwise how can i launch my project by startWeblogc.cmd ?

    #242565

    sinosupe
    Member

    I’m confused why new a Configuration() result in error

    #242576

    Riyad Kalla
    Member

    of course,i setup JNDI data source,otherwise how can i launch my project by startWeblogc.cmd ?

    As I mentioned I don’t know WebLogic, but why did you come to the assumption that your JNDI context is set correctly just because you can start WebLogic from the startWeblogic.cmd file?

    In your HibernateSession class, what is the JNDI name you are using to lookup the data source with?

    #242594

    sinosupe
    Member

    .
    CLASSPATH=d:\bea\JDK141~1\lib\tools.jar;d:\bea\WEBLOG~1\server\lib\weblogic_sp.jar;d:\bea\WEBLOG~1\server\lib\weblogic.jar;d:\bea\WEBLOG~1\server\lib\ojdbc14.jar;d:\bea\WEBLOG~1\common\eval\pointbase\lib\pbserver44.jar;d:\bea\WEBLOG~1\common\eval\pointbase\lib\pbclient44.jar;d:\bea\JDK141~1\jre\lib\rt.jar;d:\bea\WEBLOG~1\server\lib\webservices.jar;.;;D:\super\lib\cglib-2.0-rc2.jar;D:\super\lib\jgroups-2.2.jar;D:\super\lib\ant-optional-1.5.3.jar;D:\super\lib\jboss-system.jar;D:\super\lib\xml-apis.jar;D:\super\lib\new97pub.jar;D:\super\lib\proxool-0.8.3.jar;D:\super\lib\concurrent-1.3.2.jar;D:\super\lib\jboss-cache.jar;D:\super\lib\maxidejb.jar;D:\super\lib\hibernate2.jar;D:\super\lib\commons-beanutils-1.6.1.jar;D:\super\lib\ant-1.5.3.jar;D:\super\lib\commons-collections-2.1.jar;D:\super\lib\jboss-jmx.jar;D:\super\lib\jaas.jar;D:\super\lib\junit-3.8.1.jar;D:\super\lib\connector.jar;D:\super\lib\xerces-2.4.0.jar;D:\super\lib\xalan-2.4.0.jar;D:\super\lib\jdbc2_0-stdext.jar;D:\super\lib\c3p
    0-0.8.3.jar;D:\super\lib\commons-collections-2.1.1.jar;D:\super\lib\jta.jar;D:\super\lib\commons-lang-2.0.jar;D:\super\lib\jboss-common.jar;D:\super\lib\oscache-2.0.jar;D:\super\lib\ehcache-0.6.jar;D:\super\lib\odmg-3.0.jar;D:\super\lib\jcs-1.0-dev.jar;D:\super\lib\swarmcache-1.0rc2.jar;D:\super\lib\dom4j-1.4.jar;D:\super\lib\commons-pool-1.1.jar;D:\super\lib\commons-dbcp-1.1.jar;D:\super\lib\log4j-1.2.8.jar;D:\super\lib\commons-logging-1.0.4.jar;D:\super\lib\struts.jar;D:\super\lib\brms.jar;E:\nicegirl\new97_dev_test\classes;;
    .
    PATH=d:\bea\WEBLOG~1\server\bin;d:\bea\JDK141~1\jre\bin;d:\bea\JDK141~1\bin;D:\j2sdk1.4.2_06\bin;E:\oracle\ora90\bin;C:\Program Files\Oracle\jre\1.3.1\bin;C:\Program Files\Oracle\jre\1.1.8\bin;d:\sybase\JS-12_5\bin;d:\sybase\OCS-12_5\dll;d:\sybase\OCS-12_5\bin;d:\PROGRA~1\Borland\Delphi5\Projects\Bpl;d:\PROGRA~1\Borland\vbroker\jre\Bin;d:\PROGRA~1\Borland\vbroker\Bin;d:\PROGRA~1\Borland\Delphi5\Bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;d:\Program Files\Sybase\SQL Anywhere 8\win32;d:\Program Files\Sybase\Shared\win32;d:\Program Files\Sybase\Shared\Sybase Central 4.1;d:\Program Files\Sybase\Shared\PowerBuilder;d:\Program Files\Sybase\InfoMaker 9.0\Tutorial;d:\Program Files\Sybase\Shared\Web Targets;D:\ant\bin;C:\Program Files\CVSNT\;C:\Program Files\IDM Computer Solutions\UltraEdit-32;d:\bea\WEBLOG~1\server\bin\oci920_8
    .
    ***************************************************
    * To start WebLogic Server, use a username and *
    * password assigned to an admin-level user. For *
    * server administration, use the WebLogic Server *
    * console at http:\\[hostname]:[port]\console *
    ***************************************************
    <2005-12-4 下午15时58分42秒 CST> <Info> <WebLogicServer> <BEA-000377> <Starting WebLogic Server with Java HotSpot(TM) Client VM Version 1.4.1_05-b01 from Sun Microsystems Inc.>
    <2005-12-4 下午15时58分43秒 CST> <Info> <Configuration Management> <BEA-150016> <This server is being started as the administration server.>
    <2005-12-4 下午15时58分43秒 CST> <Info> <Management> <BEA-141107> <Version: WebLogic Server 8.1 SP2 Fri Dec 5 15:01:51 PST 2003 316284
    WebLogic XMLX Module 8.1 SP2 Fri Dec 5 15:01:51 PST 2003 316284 >
    <2005-12-4 下午15时58分44秒 CST> <Notice> <Management> <BEA-140005> <Loading domain configuration from configuration repository at D:\bea\user_projects\domains\jdon\.\config.xml.>
    <2005-12-4 下午15时58分53秒 CST> <Notice> <Log Management> <BEA-170019> <The server log file D:\bea\user_projects\domains\jdon\myserver\myserver.log is opened. All server side log events will be written to this file.>
    <2005-12-4 下午15时58分57秒 CST> <Notice> <Security> <BEA-090082> <Security initializing using security realm myrealm.>
    <2005-12-4 下午15时58分59秒 CST> <Notice> <WebLogicServer> <BEA-000327> <Starting WebLogic Admin Server “myserver” for domain “jdon”>
    <2005-12-4 下午15时59分28秒 CST> <Warning> <EJB> <BEA-010001> <While deploying EJB ‘CMCustGoldenClubCSVR’, class new97.cm.ejb.service.CMCustGoldenClubCSVRBean was loaded from the system classpath. As a result, this class cannot be reloaded while the server is running. To prevent this behavior in the future, make sure the class is not located in the server classpath.>
    <2005-12-4 下午15时59分28秒 CST> <Warning> <EJB> <BEA-010001> <While deploying EJB ‘CMCustGoldenClubCSVR’, class new97.cm.ejb.service.CMCustGoldenClubCSVRHome was loaded from the system classpath. As a result, this class cannot be reloaded while the server is running. To prevent this behavior in the future, make sure the class is not located in the server classpath.>
    <2005-12-4 下午15时59分28秒 CST> <Warning> <EJB> <BEA-010001> <While deploying EJB ‘CMCustGoldenClubCSVR’, class new97.cm.ejb.service.CMCustGoldenClubCSVR was loaded from the system classpath. As a result, this class cannot be reloaded while the server is running. To prevent this behavior in the future, make sure the class is not located in the server classpath.>
    <2005-12-4 下午15时59分28秒 CST> <Warning> <EJB> <BEA-010001> <While deploying EJB ‘CMCustGoldenClubCSVR’, class new97.cm.ejb.service.CMCustGoldenClubCSVRLocalHome was loaded from the system classpath. As a result, this class cannot be reloaded while the server is running. To prevent this behavior in the future, make sure the class is not located in the server classpath.>
    <2005-12-4 下午15时59分28秒 CST> <Warning> <EJB> <BEA-010001> <While deploying EJB ‘CMCustGoldenClubCSVR’, class new97.cm.ejb.service.CMCustGoldenClubCSVRLocal was loaded from the system classpath. As a result, this class cannot be reloaded while the server is running. To prevent this behavior in the future, make sure the class is not located in the server classpath.>
    <2005-12-4 下午15时59分29秒 CST> <Warning> <EJB> <BEA-010001> <While deploying EJB ‘CMCustDisctInfoSVR’, class new97.cm.ejb.service.CMCustDisctInfoSVRBean was loaded from the system classpath. As a result, this class cannot be reloaded while the server is running. To prevent this behavior in the future, make sure the class is not located in the server classpath.>
    <2005-12-4 下午15时59分29秒 CST> <Warning> <EJB> <BEA-010001> <While deploying EJB ‘CMCustDisctInfoSVR’, class new97.cm.ejb.service.CMCustDisctInfoSVRHome was loaded from the system classpath. As a result, this class cannot be reloaded while the server is running. To prevent this behavior in the future, make sure the class is not located in the server classpath.>
    <2005-12-4 下午15时59分29秒 CST> <Warning> <EJB> <BEA-010001> <While deploying EJB ‘CMCustDisctInfoSVR’, class new97.cm.ejb.service.CMCustDisctInfoSVR was loaded from the system classpath. As a result, this class cannot be reloaded while the server is running. To prevent this behavior in the future, make sure the class is not located in the server classpath.>
    <2005-12-4 下午15时59分29秒 CST> <Warning> <EJB> <BEA-010001> <While deploying EJB ‘CMCustDisctInfoSVR’, class new97.cm.ejb.service.CMCustDisctInfoSVRLocalHome was loaded from the system classpath. As a result, this class cannot be reloaded while the server is running. To prevent this behavior in the future, make sure the class is not located in the server classpath.>
    <2005-12-4 下午15时59分29秒 CST> <Warning> <EJB> <BEA-010001> <While deploying EJB ‘CMCustDisctInfoSVR’, class new97.cm.ejb.service.CMCustDisctInfoSVRLocal was loaded from the system classpath. As a result, this class cannot be reloaded while the server is running. To prevent this behavior in the future, make sure the class is not located in the server classpath.>
    <2005-12-4 下午15时59分29秒 CST> <Warning> <EJB> <BEA-010001> <While deploying EJB ‘CMCustChargeInfoSVR’, class new97.cm.ejb.service.CMCustChargeInfoSVRBean was loaded from the system classpath. As a result, this class cannot be reloaded while the server is running. To prevent this behavior in the future, make sure the class is not located in the server classpath.>
    <2005-12-4 下午15时59分29秒 CST> <Warning> <EJB> <BEA-010001> <While deploying EJB ‘CMCustChargeInfoSVR’, class new97.cm.ejb.service.CMCustChargeInfoSVRHome was loaded from the system classpath. As a result, this class cannot be reloaded while the server is running. To prevent this behavior in the future, make sure the class is not located in the server classpath.>
    <2005-12-4 下午15时59分29秒 CST> <Warning> <EJB> <BEA-010001> <While deploying EJB ‘CMCustChargeInfoSVR’, class new97.cm.ejb.service.CMCustChargeInfoSVR was loaded from the system classpath. As a result, this class cannot be reloaded while the server is running. To prevent this behavior in the future, make sure the class is not located in the server classpath.>
    <2005-12-4 下午15时59分29秒 CST> <Warning> <EJB> <BEA-010001> <While deploying EJB ‘CMCustChargeInfoSVR’, class new97.cm.ejb.service.CMCustChargeInfoSVRLocalHome was loaded from the system classpath. As a result, this class cannot be reloaded while the server is running. To prevent this behavior in the future, make sure the class is not located in the server classpath.>
    <2005-12-4 下午15时59分29秒 CST> <Warning> <EJB> <BEA-010001> <While deploying EJB ‘CMCustChargeInfoSVR’, class new97.cm.ejb.service.CMCustChargeInfoSVRLocal was loaded from the system classpath. As a result, this class cannot be reloaded while the server is running. To prevent this behavior in the future, make sure the class is not located in the server classpath.>
    <2005-12-4 下午15时59分29秒 CST> <Warning> <EJB> <BEA-010001> <While deploying EJB ‘CMCustEventSVR’, class new97.cm.ejb.service.CMCustEventSVRBean was loaded from the system classpath. As a result, this class cannot be reloaded while the server is running. To prevent this behavior in the future, make sure the class is not located in the server classpath.>
    <2005-12-4 下午15时59分29秒 CST> <Warning> <EJB> <BEA-010001> <While deploying EJB ‘CMCustEventSVR’, class new97.cm.ejb.service.CMCustEventSVRHome was loaded from the system classpath. As a result, this class cannot be reloaded while the server is running. To prevent this behavior in the future, make sure the class is not located in the server classpath.>
    <2005-12-4 下午15时59分29秒 CST> <Warning> <EJB> <BEA-010001> <While deploying EJB ‘CMCustEventSVR’, class new97.cm.ejb.service.CMCustEventSVR was loaded from the system classpath. As a result, this class cannot be reloaded while the server is running. To prevent this behavior in the future, make sure the class is not located in the server classpath.>
    <2005-12-4 下午15时59分29秒 CST> <Warning> <EJB> <BEA-010001> <While deploying EJB ‘CMCustEventSVR’, class new97.cm.ejb.service.CMCustEventSVRLocalHome was loaded from the system classpath. As a result, this class cannot be reloaded while the server is running. To prevent this behavior in the future, make sure the class is not located in the server classpath.>
    <2005-12-4 下午15时59分29秒 CST> <Warning> <EJB> <BEA-010001> <While deploying EJB ‘CMCustEventSVR’, class new97.cm.ejb.service.CMCustEventSVRLocal was loaded from the system classpath. As a result, this class cannot be reloaded while the server is running. To prevent this behavior in the future, make sure the class is not located in the server classpath.>
    <2005-12-4 下午15时59分29秒 CST> <Warning> <EJB> <BEA-010001> <While deploying EJB ‘CMCustCompetitorProdSVR’, class new97.cm.ejb.service.CMCustCompetitorProdSVRBean was loaded from the system classpath. As a result, this class cannot be reloaded while the server is running. To prevent this behavior in the future, make sure the class is not located in the server classpath.>
    <2005-12-4 下午15时59分29秒 CST> <Warning> <EJB> <BEA-010001> <While deploying EJB ‘CMCustCompetitorProdSVR’, class new97.cm.ejb.service.CMCustCompetitorProdSVRHome was loaded from the system classpath. As a result, this class cannot be reloaded while the server is running. To prevent this behavior in the future, make sure the class is not located in the server classpath.>
    <2005-12-4 下午15时59分29秒 CST> <Warning> <EJB> <BEA-010001> <While deploying EJB ‘CMCustCompetitorProdSVR’, class new97.cm.ejb.service.CMCustCompetitorProdSVR was loaded from the system classpath. As a result, this class cannot be reloaded while the server is running. To prevent this behavior in the future, make sure the class is not located in the server classpath.>
    <2005-12-4 下午15时59分29秒 CST> <Warning> <EJB> <BEA-010001> <While deploying EJB ‘CMCustCompetitorProdSVR’, class new97.cm.ejb.service.CMCustCompetitorProdSVRLocalHome was loaded from the system classpath. As a result, this class cannot be reloaded while the server is running. To prevent this behavior in the future, make sure the class is not located in the server classpath.>
    <2005-12-4 下午15时59分29秒 CST> <Warning> <EJB> <BEA-010001> <While deploying EJB ‘CMCustCompetitorProdSVR’, class new97.cm.ejb.service.CMCustCompetitorProdSVRLocal was loaded from the system classpath. As a result, this class cannot be reloaded while the server is running. To prevent this behavior in the future, make sure the class is not located in the server classpath.>
    <2005-12-4 下午15时59分29秒 CST> <Warning> <EJB> <BEA-010001> <While deploying EJB ‘CMCustVocaSVR’, class new97.cm.ejb.service.CMCustVocaSVRBean was loaded from the system classpath. As a result, this class cannot be reloaded while the server is running. To prevent this behavior in the future, make sure the class is not located in the server classpath.>
    <2005-12-4 下午15时59分29秒 CST> <Warning> <EJB> <BEA-010001> <While deploying EJB ‘CMCustVocaSVR’, class new97.cm.ejb.service.CMCustVocaSVRHome was loaded from the system classpath. As a result, this class cannot be reloaded while the server is running. To prevent this behavior in the future, make sure the class is not located in the server classpath.>
    <2005-12-4 下午15时59分29秒 CST> <Warning> <EJB> <BEA-010001> <While deploying EJB ‘CMCustVocaSVR’, class new97.cm.ejb.service.CMCustVocaSVR was loaded from the system classpath. As a result, this class cannot be reloaded while the server is running. To prevent this behavior in the future, make sure the class is not located in the server classpath.>
    <2005-12-4 下午15时59分29秒 CST> <Warning> <EJB> <BEA-010001> <While deploying EJB ‘CMCustVocaSVR’, class new97.cm.ejb.service.CMCustVocaSVRLocalHome was loaded from the system classpath. As a result, this class cannot be reloaded while the server is running. To prevent this behavior in the future, make sure the class is not located in the server classpath.>
    <2005-12-4 下午15时59分29秒 CST> <Warning> <EJB> <BEA-010001> <While deploying EJB ‘CMCustVocaSVR’, class new97.cm.ejb.service.CMCustVocaSVRLocal was loaded from the system classpath. As a result, this class cannot be reloaded while the server is running. To prevent this behavior in the future, make sure the class is not located in the server classpath.>
    <2005-12-4 下午15时59分29秒 CST> <Warning> <EJB> <BEA-010001> <While deploying EJB ‘CMCustTypeSVR’, class new97.cm.ejb.service.CMCustTypeSVRBean was loaded from the system classpath. As a result, this class cannot be reloaded while the server is running. To prevent this behavior in the future, make sure the class is not located in the server classpath.>
    <2005-12-4 下午15时59分29秒 CST> <Warning> <EJB> <BEA-010001> <While deploying EJB ‘CMCustTypeSVR’, class new97.cm.ejb.service.CMCustTypeSVRHome was loaded from the system classpath. As a result, this class cannot be reloaded while the server is running. To prevent this behavior in the future, make sure the class is not located in the server classpath.>
    <2005-12-4 下午15时59分29秒 CST> <Warning> <EJB> <BEA-010001> <While deploying EJB ‘CMCustTypeSVR’, class new97.cm.ejb.service.CMCustTypeSVR was loaded from the system classpath. As a result, this class cannot be reloaded while the server is running. To prevent this behavior in the future, make sure the class is not located in the server classpath.>
    <2005-12-4 下午15时59分29秒 CST> <Warning> <EJB> <BEA-010001> <While deploying EJB ‘CMCustTypeSVR’, class new97.cm.ejb.service.CMCustTypeSVRLocalHome was loaded from the system classpath. As a result, this class cannot be reloaded while the server is running. To prevent this behavior in the future, make sure the class is not located in the server classpath.>
    <2005-12-4 下午15时59分29秒 CST> <Warning> <EJB> <BEA-010001> <While deploying EJB ‘CMCustTypeSVR’, class new97.cm.ejb.service.CMCustTypeSVRLocal was loaded from the system classpath. As a result, this class cannot be reloaded while the server is running. To prevent this behavior in the future, make sure the class is not located in the server classpath.>
    <2005-12-4 下午15时59分30秒 CST> <Warning> <EJB> <BEA-010001> <While deploying EJB ‘CMCustLevelSVR’, class new97.cm.ejb.service.CMCustLevelSVRBean was loaded from the system classpath. As a result, this class cannot be reloaded while the server is running. To prevent this behavior in the future, make sure the class is not located in the server classpath.>
    <2005-12-4 下午15时59分30秒 CST> <Warning> <EJB> <BEA-010001> <While deploying EJB ‘CMCustLevelSVR’, class new97.cm.ejb.service.CMCustLevelSVRHome was loaded from the system classpath. As a result, this class cannot be reloaded while the server is running. To prevent this behavior in the future, make sure the class is not located in the server classpath.>
    <2005-12-4 下午15时59分30秒 CST> <Warning> <EJB> <BEA-010001> <While deploying EJB ‘CMCustLevelSVR’, class new97.cm.ejb.service.CMCustLevelSVR was loaded from the system classpath. As a result, this class cannot be reloaded while the server is running. To prevent this behavior in the future, make sure the class is not located in the server classpath.>
    <2005-12-4 下午15时59分30秒 CST> <Warning> <EJB> <BEA-010001> <While deploying EJB ‘CMCustLevelSVR’, class new97.cm.ejb.service.CMCustLevelSVRLocalHome was loaded from the system classpath. As a result, this class cannot be reloaded while the server is running. To prevent this behavior in the future, make sure the class is not located in the server classpath.>
    <2005-12-4 下午15时59分30秒 CST> <Warning> <EJB> <BEA-010001> <While deploying EJB ‘CMCustLevelSVR’, class new97.cm.ejb.service.CMCustLevelSVRLocal was loaded from the system classpath. As a result, this class cannot be reloaded while the server is running. To prevent this behavior in the future, make sure the class is not located in the server classpath.>
    <2005-12-4 下午15时59分30秒 CST> <Warning> <EJB> <BEA-010001> <While deploying EJB ‘CMCustSortRuleSVR’, class new97.cm.ejb.service.CMCustSortRuleSVRBean was loaded from the system classpath. As a result, this class cannot be reloaded while the server is running. To prevent this behavior in the future, make sure the class is not located in the server classpath.>
    <2005-12-4 下午15时59分30秒 CST> <Warning> <EJB> <BEA-010001> <While deploying EJB ‘CMCustSortRuleSVR’, class new97.cm.ejb.service.CMCustSortRuleSVRHome was loaded from the system classpath. As a result, this class cannot be reloaded while the server is running. To prevent this behavior in the future, make sure the class is not located in the server classpath.>
    <2005-12-4 下午15时59分30秒 CST> <Warning> <EJB> <BEA-010001> <While deploying EJB ‘CMCustSortRuleSVR’, class new97.cm.ejb.service.CMCustSortRuleSVR was loaded from the system classpath. As a result, this class cannot be reloaded while the server is running. To prevent this behavior in the future, make sure the class is not located in the server classpath.>
    <2005-12-4 下午15时59分30秒 CST> <Warning> <EJB> <BEA-010001> <While deploying EJB ‘CMCustSortRuleSVR’, class new97.cm.ejb.service.CMCustSortRuleSVRLocalHome was loaded from the system classpath. As a result, this class cannot be reloaded while the server is running. To prevent this behavior in the future, make sure the class is not located in the server classpath.>
    <2005-12-4 下午15时59分30秒 CST> <Warning> <EJB> <BEA-010001> <While deploying EJB ‘CMCustSortRuleSVR’, class new97.cm.ejb.service.CMCustSortRuleSVRLocal was loaded from the system classpath. As a result, this class cannot be reloaded while the server is running. To prevent this behavior in the future, make sure the class is not located in the server classpath.>
    <2005-12-4 下午15时59分30秒 CST> <Warning> <EJB> <BEA-010001> <While deploying EJB ‘CMPayMethSVR’, class new97.cm.ejb.service.CMPayMethSVRBean was loaded from the system classpath. As a result, this class cannot be reloaded while the server is running. To prevent this behavior in the future, make sure the class is not located in the server classpath.>
    <2005-12-4 下午15时59分30秒 CST> <Warning> <EJB> <BEA-010001> <While deploying EJB ‘CMPayMethSVR’, class new97.cm.ejb.service.CMPayMethSVRHome was loaded from the system classpath. As a result, this class cannot be reloaded while the server is running. To prevent this behavior in the future, make sure the class is not located in the server classpath.>
    <2005-12-4 下午15时59分30秒 CST> <Warning> <EJB> <BEA-010001> <While deploying EJB ‘CMPayMethSVR’, class new97.cm.ejb.service.CMPayMethSVR was loaded from the system classpath. As a result, this class cannot be reloaded while the server is running. To prevent this behavior in the future, make sure the class is not located in the server classpath.>
    <2005-12-4 下午15时59分30秒 CST> <Warning> <EJB> <BEA-010001> <While deploying EJB ‘CMPayMethSVR’, class new97.cm.ejb.service.CMPayMethSVRLocalHome was loaded from the system classpath. As a result, this class cannot be reloaded while the server is running. To prevent this behavior in the future, make sure the class is not located in the server classpath.>
    <2005-12-4 下午15时59分30秒 CST> <Warning> <EJB> <BEA-010001> <While deploying EJB ‘CMPayMethSVR’, class new97.cm.ejb.service.CMPayMethSVRLocal was loaded from the system classpath. As a result, this class cannot be reloaded while the server is running. To prevent this behavior in the future, make sure the class is not located in the server classpath.>
    <2005-12-4 下午15时59分30秒 CST> <Warning> <EJB> <BEA-010001> <While deploying EJB ‘CMBankCatalogSVR’, class new97.cm.ejb.service.CMBankCatalogSVRBean was loaded from the system classpath. As a result, this class cannot be reloaded while the server is running. To prevent this behavior in the future, make sure the class is not located in the server classpath.>
    <2005-12-4 下午15时59分30秒 CST> <Warning> <EJB> <BEA-010001> <While deploying EJB ‘CMBankCatalogSVR’, class new97.cm.ejb.service.CMBankCatalogSVRHome was loaded from the system classpath. As a result, this class cannot be reloaded while the server is running. To prevent this behavior in the future, make sure the class is not located in the server classpath.>
    <2005-12-4 下午15时59分30秒 CST> <Warning> <EJB> <BEA-010001> <While deploying EJB ‘CMBankCatalogSVR’, class new97.cm.ejb.service.CMBankCatalogSVR was loaded from the system classpath. As a result, this class cannot be reloaded while the server is running. To prevent this behavior in the future, make sure the class is not located in the server classpath.>
    <2005-12-4 下午15时59分30秒 CST> <Warning> <EJB> <BEA-010001> <While deploying EJB ‘CMBankCatalogSVR’, class new97.cm.ejb.service.CMBankCatalogSVRLocalHome was loaded from the system classpath. As a result, this class cannot be reloaded while the server is running. To prevent this behavior in the future, make sure the class is not located in the server classpath.>
    <2005-12-4 下午15时59分30秒 CST> <Warning> <EJB> <BEA-010001> <While deploying EJB ‘CMBankCatalogSVR’, class new97.cm.ejb.service.CMBankCatalogSVRLocal was loaded from the system classpath. As a result, this class cannot be reloaded while the server is running. To prevent this behavior in the future, make sure the class is not located in the server classpath.>
    <2005-12-4 下午15时59分30秒 CST> <Warning> <EJB> <BEA-010001> <While deploying EJB ‘CMBankBranchSVR’, class new97.cm.ejb.service.CMBankBranchSVRBean was loaded from the system classpath. As a result, this class cannot be reloaded while the server is running. To prevent this behavior in the future, make sure the class is not located in the server classpath.>
    <2005-12-4 下午15时59分30秒 CST> <Warning> <EJB> <BEA-010001> <While deploying EJB ‘CMBankBranchSVR’, class new97.cm.ejb.service.CMBankBranchSVRHome was loaded from the system classpath. As a result, this class cannot be reloaded while the server is running. To prevent this behavior in the future, make sure the class is not located in the server classpath.>
    <2005-12-4 下午15时59分30秒 CST> <Warning> <EJB> <BEA-010001> <While deploying EJB ‘CMBankBranchSVR’, class new97.cm.ejb.service.CMBankBranchSVR was loaded from the system classpath. As a result, this class cannot be reloaded while the server is running. To prevent this behavior in the future, make sure the class is not located in the server classpath.>
    <2005-12-4 下午15时59分30秒 CST> <Warning> <EJB> <BEA-010001> <While deploying EJB ‘CMBankBranchSVR’, class new97.cm.ejb.service.CMBankBranchSVRLocalHome was loaded from the system classpath. As a result, this class cannot be reloaded while the server is running. To prevent this behavior in the future, make sure the class is not located in the server classpath.>
    <2005-12-4 下午15时59分30秒 CST> <Warning> <EJB> <BEA-010001> <While deploying EJB ‘CMBankBranchSVR’, class new97.cm.ejb.service.CMBankBranchSVRLocal was loaded from the system classpath. As a result, this class cannot be reloaded while the server is running. To prevent this behavior in the future, make sure the class is not located in the server classpath.>
    <2005-12-4 下午15时59分31秒 CST> <Warning> <EJB> <BEA-010001> <While deploying EJB ‘CMCustContractTempletSVR’, class new97.cm.ejb.service.CMCustContractTempletSVRBean was loaded from the system classpath. As a result, this class cannot be reloaded while the server is running. To prevent this behavior in the future, make sure the class is not located in the server classpath.>
    <2005-12-4 下午15时59分31秒 CST> <Warning> <EJB> <BEA-010001> <While deploying EJB ‘CMCustContractTempletSVR’, class new97.cm.ejb.service.CMCustContractTempletSVRHome was loaded from the system classpath. As a result, this class cannot be reloaded while the server is running. To prevent this behavior in the future, make sure the class is not located in the server classpath.>
    <2005-12-4 下午15时59分31秒 CST> <Warning> <EJB> <BEA-010001> <While deploying EJB ‘CMCustContractTempletSVR’, class new97.cm.ejb.service.CMCustContractTempletSVR was loaded from the system classpath. As a result, this class cannot be reloaded while the server is running. To prevent this behavior in the future, make sure the class is not located in the server classpath.>
    <2005-12-4 下午15时59分31秒 CST> <Warning> <EJB> <BEA-010001> <While deploying EJB ‘CMCustContractTempletSVR’, class new97.cm.ejb.service.CMCustContractTempletSVRLocalHome was loaded from the system classpath. As a result, this class cannot be reloaded while the server is running. To prevent this behavior in the future, make sure the class is not located in the server classpath.>
    <2005-12-4 下午15时59分31秒 CST> <Warning> <EJB> <BEA-010001> <While deploying EJB ‘CMCustContractTempletSVR’, class new97.cm.ejb.service.CMCustContractTempletSVRLocal was loaded from the system classpath. As a result, this class cannot be reloaded while the server is running. To prevent this behavior in the future, make sure the class is not located in the server classpath.>
    <2005-12-4 下午15时59分31秒 CST> <Warning> <EJB> <BEA-010001> <While deploying EJB ‘CMContractRestrictSVR’, class new97.cm.ejb.service.CMContractRestrictSVRBean was loaded from the system classpath. As a result, this class cannot be reloaded while the server is running. To prevent this behavior in the future, make sure the class is not located in the server classpath.>
    <2005-12-4 下午15时59分31秒 CST> <Warning> <EJB> <BEA-010001> <While deploying EJB ‘CMContractRestrictSVR’, class new97.cm.ejb.service.CMContractRestrictSVRHome was loaded from the system classpath. As a result, this class cannot be reloaded while the server is running. To prevent this behavior in the future, make sure the class is not located in the server classpath.>
    <2005-12-4 下午15时59分31秒 CST> <Warning> <EJB> <BEA-010001> <While deploying EJB ‘CMContractRestrictSVR’, class new97.cm.ejb.service.CMContractRestrictSVR was loaded from the system classpath. As a result, this class cannot be reloaded while the server is running. To prevent this behavior in the future, make sure the class is not located in the server classpath.>
    <2005-12-4 下午15时59分31秒 CST> <Warning> <EJB> <BEA-010001> <While deploying EJB ‘CMContractRestrictSVR’, class new97.cm.ejb.service.CMContractRestrictSVRLocalHome was loaded from the system classpath. As a result, this class cannot be reloaded while the server is running. To prevent this behavior in the future, make sure the class is not located in the server classpath.>
    <2005-12-4 下午15时59分31秒 CST> <Warning> <EJB> <BEA-010001> <While deploying EJB ‘CMContractRestrictSVR’, class new97.cm.ejb.service.CMContractRestrictSVRLocal was loaded from the system classpath. As a result, this class cannot be reloaded while the server is running. To prevent this behavior in the future, make sure the class is not located in the server classpath.>
    <2005-12-4 下午15时59分31秒 CST> <Warning> <EJB> <BEA-010001> <While deploying EJB ‘CMCustAcctSVR’, class new97.cm.ejb.service.CMCustAcctSVRBean was loaded from the system classpath. As a result, this class cannot be reloaded while the server is running. To prevent this behavior in the future, make sure the class is not located in the server classpath.>
    <2005-12-4 下午15时59分31秒 CST> <Warning> <EJB> <BEA-010001> <While deploying EJB ‘CMCustAcctSVR’, class new97.cm.ejb.service.CMCustAcctSVRHome was loaded from the system classpath. As a result, this class cannot be reloaded while the server is running. To prevent this behavior in the future, make sure the class is not located in the server classpath.>
    <2005-12-4 下午15时59分31秒 CST> <Warning> <EJB> <BEA-010001> <While deploying EJB ‘CMCustAcctSVR’, class new97.cm.ejb.service.CMCustAcctSVR was loaded from the system classpath. As a result, this class cannot be reloaded while the server is running. To prevent this behavior in the future, make sure the class is not located in the server classpath.>
    <2005-12-4 下午15时59分31秒 CST> <Warning> <EJB> <BEA-010001> <While deploying EJB ‘CMCustAcctSVR’, class new97.cm.ejb.service.CMCustAcctSVRLocalHome was loaded from the system classpath. As a result, this class cannot be reloaded while the server is running. To prevent this behavior in the future, make sure the class is not located in the server classpath.>
    <2005-12-4 下午15时59分31秒 CST> <Warning> <EJB> <BEA-010001> <While deploying EJB ‘CMCustAcctSVR’, class new97.cm.ejb.service.CMCustAcctSVRLocal was loaded from the system classpath. As a result, this class cannot be reloaded while the server is running. To prevent this behavior in the future, make sure the class is not located in the server classpath.>
    <2005-12-4 下午15时59分31秒 CST> <Warning> <EJB> <BEA-010001> <While deploying EJB ‘CMCustAcctPayMethSVR’, class new97.cm.ejb.service.CMCustAcctPayMethSVRBean was loaded from the system classpath. As a result, this class cannot be reloaded while the server is running. To prevent this behavior in the future, make sure the class is not located in the server classpath.>
    <2005-12-4 下午15时59分31秒 CST> <Warning> <EJB> <BEA-010001> <While deploying EJB ‘CMCustAcctPayMethSVR’, class new97.cm.ejb.service.CMCustAcctPayMethSVRHome was loaded from the system classpath. As a result, this class cannot be reloaded while the server is running. To prevent this behavior in the future, make sure the class is not located in the server classpath.>
    <2005-12-4 下午15时59分31秒 CST> <Warning> <EJB> <BEA-010001> <While deploying EJB ‘CMCustAcctPayMethSVR’, class new97.cm.ejb.service.CMCustAcctPayMethSVR was loaded from the system classpath. As a result, this class cannot be reloaded while the server is running. To prevent this behavior in the future, make sure the class is not located in the server classpath.>
    <2005-12-4 下午15时59分31秒 CST> <Warning> <EJB> <BEA-010001> <While deploying EJB ‘CMCustAcctPayMethSVR’, class new97.cm.ejb.service.CMCustAcctPayMethSVRLocalHome was loaded from the system classpath. As a result, this class cannot be reloaded while the server is running. To prevent this behavior in the future, make sure the class is not located in the server classpath.>
    <2005-12-4 下午15时59分31秒 CST> <Warning> <EJB> <BEA-010001> <While deploying EJB ‘CMCustAcctPayMethSVR’, class new97.cm.ejb.service.CMCustAcctPayMethSVRLocal was loaded from the system classpath. As a result, this class cannot be reloaded while the server is running. To prevent this behavior in the future, make sure the class is not located in the server classpath.>
    <2005-12-4 下午15时59分31秒 CST> <Warning> <EJB> <BEA-010001> <While deploying EJB ‘CMCustAcctFundSVR’, class new97.cm.ejb.service.CMCustAcctFundSVRBean was loaded from the system classpath. As a result, this class cannot be reloaded while the server is running. To prevent this behavior in the future, make sure the class is not located in the server classpath.>
    <2005-12-4 下午15时59分31秒 CST> <Warning> <EJB> <BEA-010001> <While deploying EJB ‘CMCustAcctFundSVR’, class new97.cm.ejb.service.CMCustAcctFundSVRHome was loaded from the system classpath. As a result, this class cannot be reloaded while the server is running. To prevent this behavior in the future, make sure the class is not located in the server classpath.>
    <2005-12-4 下午15时59分31秒 CST> <Warning> <EJB> <BEA-010001> <While deploying EJB ‘CMCustAcctFundSVR’, class new97.cm.ejb.service.CMCustAcctFundSVR was loaded from the system classpath. As a result, this class cannot be reloaded while the server is running. To prevent this behavior in the future, make sure the class is not located in the server classpath.>
    <2005-12-4 下午15时59分31秒 CST> <Warning> <EJB> <BEA-010001> <While deploying EJB ‘CMCustAcctFundSVR’, class new97.cm.ejb.service.CMCustAcctFundSVRLocalHome was loaded from the system classpath. As a result, this class cannot be reloaded while the server is running. To prevent this behavior in the future, make sure the class is not located in the server classpath.>
    <2005-12-4 下午15时59分31秒 CST> <Warning> <EJB> <BEA-010001> <While deploying EJB ‘CMCustAcctFundSVR’, class new97.cm.ejb.service.CMCustAcctFundSVRLocal was loaded from the system classpath. As a result, this class cannot be reloaded while the server is running. To prevent this behavior in the future, make sure the class is not located in the server classpath.>
    <2005-12-4 下午15时59分31秒 CST> <Warning> <EJB> <BEA-010001> <While deploying EJB ‘CMCustSVR’, class new97.cm.ejb.service.CMCustSVRBean was loaded from the system classpath. As a result, this class cannot be reloaded while the server is running. To prevent this behavior in the future, make sure the class is not located in the server classpath.>
    <2005-12-4 下午15时59分32秒 CST> <Warning> <EJB> <BEA-010001> <While deploying EJB ‘CMCustSVR’, class new97.cm.ejb.service.CMCustSVRHome was loaded from the system classpath. As a result, this class cannot be reloaded while the server is running. To prevent this behavior in the future, make sure the class is not located in the server classpath.>
    <2005-12-4 下午15时59分32秒 CST> <Warning> <EJB> <BEA-010001> <While deploying EJB ‘CMCustSVR’, class new97.cm.ejb.service.CMCustSVR was loaded from the system classpath. As a result, this class cannot be reloaded while the server is running. To prevent this behavior in the future, make sure the class is not located in the server classpath.>
    <2005-12-4 下午15时59分32秒 CST> <Warning> <EJB> <BEA-010001> <While deploying EJB ‘CMCustSVR’, class new97.cm.ejb.service.CMCustSVRLocalHome was loaded from the system classpath. As a result, this class cannot be reloaded while the server is running. To prevent this behavior in the future, make sure the class is not located in the server classpath.>
    <2005-12-4 下午15时59分32秒 CST> <Warning> <EJB> <BEA-010001> <While deploying EJB ‘CMCustSVR’, class new97.cm.ejb.service.CMCustSVRLocal was loaded from the system classpath. As a result, this class cannot be reloaded while the server is running. To prevent this behavior in the future, make sure the class is not located in the server classpath.>
    <2005-12-4 下午15时59分32秒 CST> <Warning> <EJB> <BEA-010001> <While deploying EJB ‘CMCustGroupSVR’, class new97.cm.ejb.service.CMCustGroupSVRBean was loaded from the system classpath. As a result, this class cannot be reloaded while the server is running. To prevent this behavior in the future, make sure the class is not located in the server classpath.>
    <2005-12-4 下午15时59分32秒 CST> <Warning> <EJB> <BEA-010001> <While deploying EJB ‘CMCustGroupSVR’, class new97.cm.ejb.service.CMCustGroupSVRHome was loaded from the system classpath. As a result, this class cannot be reloaded while the server is running. To prevent this behavior in the future, make sure the class is not located in the server classpath.>
    <2005-12-4 下午15时59分32秒 CST> <Warning> <EJB> <BEA-010001> <While deploying EJB ‘CMCustGroupSVR’, class new97.cm.ejb.service.CMCustGroupSVR was loaded from the system classpath. As a result, this class cannot be reloaded while the server is running. To prevent this behavior in the future, make sure the class is not located in the server classpath.>
    <2005-12-4 下午15时59分32秒 CST> <Warning> <EJB> <BEA-010001> <While deploying EJB ‘CMCustGroupSVR’, class new97.cm.ejb.service.CMCustGroupSVRLocalHome was loaded from the system classpath. As a result, this class cannot be reloaded while the server is running. To prevent this behavior in the future, make sure the class is not located in the server classpath.>
    <2005-12-4 下午15时59分32秒 CST> <Warning> <EJB> <BEA-010001> <While deploying EJB ‘CMCustGroupSVR’, class new97.cm.ejb.service.CMCustGroupSVRLocal was loaded from the system classpath. As a result, this class cannot be reloaded while the server is running. To prevent this behavior in the future, make sure the class is not located in the server classpath.>
    <2005-12-4 下午15时59分32秒 CST> <Warning> <EJB> <BEA-010001> <While deploying EJB ‘CMCustGroupRuleParaSVR’, class new97.cm.ejb.service.CMCustGroupRuleParaSVRBean was loaded from the system classpath. As a result, this class cannot be reloaded while the server is running. To prevent this behavior in the future, make sure the class is not located in the server classpath.>
    <2005-12-4 下午15时59分32秒 CST> <Warning> <EJB> <BEA-010001> <While deploying EJB ‘CMCustGroupRuleParaSVR’, class new97.cm.ejb.service.CMCustGroupRuleParaSVRHome was loaded from the system classpath. As a result, this class cannot be reloaded while the server is running. To prevent this behavior in the future, make sure the class is not located in the server classpath.>
    <2005-12-4 下午15时59分32秒 CST> <Warning> <EJB> <BEA-010001> <While deploying EJB ‘CMCustGroupRuleParaSVR’, class new97.cm.ejb.service.CMCustGroupRuleParaSVR was loaded from the system classpath. As a result, this class cannot be reloaded while the server is running. To prevent this behavior in the future, make sure the class is not located in the server classpath.>
    <2005-12-4 下午15时59分32秒 CST> <Warning> <EJB> <BEA-010001> <While deploying EJB ‘CMCustGroupRuleParaSVR’, class new97.cm.ejb.service.CMCustGroupRuleParaSVRLocalHome was loaded from the system classpath. As a result, this class cannot be reloaded while the server is running. To prevent this behavior in the future, make sure the class is not located in the server classpath.>
    <2005-12-4 下午15时59分32秒 CST> <Warning> <EJB> <BEA-010001> <While deploying EJB ‘CMCustGroupRuleParaSVR’, class new97.cm.ejb.service.CMCustGroupRuleParaSVRLocal was loaded from the system classpath. As a result, this class cannot be reloaded while the server is running. To prevent this behavior in the future, make sure the class is not located in the server classpath.>
    <2005-12-4 下午15时59分32秒 CST> <Warning> <EJB> <BEA-010001> <While deploying EJB ‘CMCustGroupContentSVR’, class new97.cm.ejb.service.CMCustGroupContentSVRBean was loaded from the system classpath. As a result, this class cannot be reloaded while the server is running. To prevent this behavior in the future, make sure the class is not located in the server classpath.>
    <2005-12-4 下午15时59分32秒 CST> <Warning> <EJB> <BEA-010001> <While deploying EJB ‘CMCustGroupContentSVR’, class new97.cm.ejb.service.CMCustGroupContentSVRHome was loaded from the system classpath. As a result, this class cannot be reloaded while the server is running. To prevent this behavior in the future, make sure the class is not located in the server classpath.>
    <2005-12-4 下午15时59分32秒 CST> <Warning> <EJB> <BEA-010001> <While deploying EJB ‘CMCustGroupContentSVR’, class new97.cm.ejb.service.CMCustGroupContentSVR was loaded from the system classpath. As a result, this class cannot be reloaded while the server is running. To prevent this behavior in the future, make sure the class is not located in the server classpath.>
    <2005-12-4 下午15时59分33秒 CST> <Warning> <EJB> <BEA-010001> <While deploying EJB ‘CMCustGroupContentSVR’, class new97.cm.ejb.service.CMCustGroupContentSVRLocalHome was loaded from the system classpath. As a result, this class cannot be reloaded while the server is running. To prevent this behavior in the future, make sure the class is not located in the server classpath.>
    <2005-12-4 下午15时59分33秒 CST> <Warning> <EJB> <BEA-010001> <While deploying EJB ‘CMCustGroupContentSVR’, class new97.cm.ejb.service.CMCustGroupContentSVRLocal was loaded from the system classpath. As a result, this class cannot be reloaded while the server is running. To prevent this behavior in the future, make sure the class is not located in the server classpath.>
    <2005-12-4 下午15时59分33秒 CST> <Warning> <EJB> <BEA-010001> <While deploying EJB ‘CMCustGroupRuleSVR’, class new97.cm.ejb.service.CMCustGroupRuleSVRBean was loaded from the system classpath. As a result, this class cannot be reloaded while the server is running. To prevent this behavior in the future, make sure the class is not located in the server classpath.>
    <2005-12-4 下午15时59分33秒 CST> <Warning> <EJB> <BEA-010001> <While deploying EJB ‘CMCustGroupRuleSVR’, class new97.cm.ejb.service.CMCustGroupRuleSVRHome was loaded from the system classpath. As a result, this class cannot be reloaded while the server is running. To prevent this behavior in the future, make sure the class is not located in the server classpath.>
    <2005-12-4 下午15时59分33秒 CST> <Warning> <EJB> <BEA-010001> <While deploying EJB ‘CMCustGroupRuleSVR’, class new97.cm.ejb.service.CMCustGroupRuleSVR was loaded from the system classpath. As a result, this class cannot be reloaded while the server is running. To prevent this behavior in the future, make sure the class is not located in the server classpath.>
    <2005-12-4 下午15时59分33秒 CST> <Warning> <EJB> <BEA-010001> <While deploying EJB ‘CMCustGroupRuleSVR’, class new97.cm.ejb.service.CMCustGroupRuleSVRLocalHome was loaded from the system classpath. As a result, this class cannot be reloaded while the server is running. To prevent this behavior in the future, make sure the class is not located in the server classpath.>
    <2005-12-4 下午15时59分33秒 CST> <Warning> <EJB> <BEA-010001> <While deploying EJB ‘CMCustGroupRuleSVR’, class new97.cm.ejb.service.CMCustGroupRuleSVRLocal was loaded from the system classpath. As a result, this class cannot be reloaded while the server is running. To prevent this behavior in the future, make sure the class is not located in the server classpath.>
    <2005-12-4 下午15时59分33秒 CST> <Warning> <EJB> <BEA-010001> <While deploying EJB ‘CMCustContractSVR’, class new97.cm.ejb.service.CMCustContractSVRBean was loaded from the system classpath. As a result, this class cannot be reloaded while the server is running. To prevent this behavior in the future, make sure the class is not located in the server classpath.>
    <2005-12-4 下午15时59分33秒 CST> <Warning> <EJB> <BEA-010001> <While deploying EJB ‘CMCustContractSVR’, class new97.cm.ejb.service.CMCustContractSVRHome was loaded from the system classpath. As a result, this class cannot be reloaded while the server is running. To prevent this behavior in the future, make sure the class is not located in the server classpath.>
    <2005-12-4 下午15时59分33秒 CST> <Warning> <EJB> <BEA-010001> <While deploying EJB ‘CMCustContractSVR’, class new97.cm.ejb.service.CMCustContractSVR was loaded from the system classpath. As a result, this class cannot be reloaded while the server is running. To prevent this behavior in the future, make sure the class is not located in the server classpath.>
    <2005-12-4 下午15时59分33秒 CST> <Warning> <EJB> <BEA-010001> <While deploying EJB ‘CMCustContractSVR’, class new97.cm.ejb.service.CMCustContractSVRLocalHome was loaded from the system classpath. As a result, this class cannot be reloaded while the server is running. To prevent this behavior in the future, make sure the class is not located in the server classpath.>
    <2005-12-4 下午15时59分33秒 CST> <Warning> <EJB> <BEA-010001> <While deploying EJB ‘CMCustContractSVR’, class new97.cm.ejb.service.CMCustContractSVRLocal was loaded from the system classpath. As a result, this class cannot be reloaded while the server is running. To prevent this behavior in the future, make sure the class is not located in the server classpath.>
    <2005-12-4 下午15时59分33秒 CST> <Warning> <EJB> <BEA-010001> <While deploying EJB ‘CMCustContractTermSVR’, class new97.cm.ejb.service.CMCustContractTermSVRBean was loaded from the system classpath. As a result, this class cannot be reloaded while the server is running. To prevent this behavior in the future, make sure the class is not located in the server classpath.>
    <2005-12-4 下午15时59分33秒 CST> <Warning> <EJB> <BEA-010001> <While deploying EJB ‘CMCustContractTermSVR’, class new97.cm.ejb.service.CMCustContractTermSVRHome was loaded from the system classpath. As a result, this class cannot be reloaded while the server is running. To prevent this behavior in the future, make sure the class is not located in the server classpath.>
    <2005-12-4 下午15时59分33秒 CST> <Warning> <EJB> <BEA-010001> <While deploying EJB ‘CMCustContractTermSVR’, class new97.cm.ejb.service.CMCustContractTermSVR was loaded from the system classpath. As a result, this class cannot be reloaded while the server is running. To prevent this behavior in the future, make sure the class is not located in the server classpath.>
    <2005-12-4 下午15时59分33秒 CST> <Warning> <EJB> <BEA-010001> <While deploying EJB ‘CMCustContractTermSVR’, class new97.cm.ejb.service.CMCustContractTermSVRLocalHome was loaded from the system classpath. As a result, this class cannot be reloaded while the server is running. To prevent this behavior in the future, make sure the class is not located in the server classpath.>
    <2005-12-4 下午15时59分33秒 CST> <Warning> <EJB> <BEA-010001> <While deploying EJB ‘CMCustContractTermSVR’, class new97.cm.ejb.service.CMCustContractTermSVRLocal was loaded from the system classpath. As a result, this class cannot be reloaded while the server is running. To prevent this behavior in the future, make sure the class is not located in the server classpath.>
    <2005-12-4 下午15时59分33秒 CST> <Warning> <EJB> <BEA-010001> <While deploying EJB ‘CMCustContractPartySVR’, class new97.cm.ejb.service.CMCustContractPartySVRBean was loaded from the system classpath. As a result, this class cannot be reloaded while the server is running. To prevent this behavior in the future, make sure the class is not located in the server classpath.>
    <2005-12-4 下午15时59分33秒 CST> <Warning> <EJB> <BEA-010001> <While deploying EJB ‘CMCustContractPartySVR’, class new97.cm.ejb.service.CMCustContractPartySVRHome was loaded from the system classpath. As a result, this class cannot be reloaded while the server is running. To prevent this behavior in the future, make sure the class is not located in the server classpath.>
    <2005-12-4 下午15时59分33秒 CST> <Warning> <EJB> <BEA-010001> <While deploying EJB ‘CMCustContractPartySVR’, class new97.cm.ejb.service.CMCustContractPartySVR was loaded from the system classpath. As a result, this class cannot be reloaded while the server is running. To prevent this behavior in the future, make sure the class is not located in the server classpath.>
    <2005-12-4 下午15时59分33秒 CST> <Warning> <EJB> <BEA-010001> <While deploying EJB ‘CMCustContractPartySVR’, class new97.cm.ejb.service.CMCustContractPartySVRLocalHome was loaded from the system classpath. As a result, this class cannot be reloaded while the server is running. To prevent this behavior in the future, make sure the class is not located in the server classpath.>
    <2005-12-4 下午15时59分33秒 CST> <Warning> <EJB> <BEA-010001> <While deploying EJB ‘CMCustContractPartySVR’, class new97.cm.ejb.service.CMCustContractPartySVRLocal was loaded from the system classpath. As a result, this class cannot be reloaded while the server is running. To prevent this behavior in the future, make sure the class is not located in the server classpath.>
    <2005-12-4 下午15时59分33秒 CST> <Warning> <EJB> <BEA-010001> <While deploying EJB ‘CMCustContractRestrictSVR’, class new97.cm.ejb.service.CMCustContractRestrictSVRBean was loaded from the system classpath. As a result, this class cannot be reloaded while the server is running. To prevent this behavior in the future, make sure the class is not located in the server classpath.>
    <2005-12-4 下午15时59分33秒 CST> <Warning> <EJB> <BEA-010001> <While deploying EJB ‘CMCustContractRestrictSVR’, class new97.cm.ejb.service.CMCustContractRestrictSVRHome was loaded from the system classpath. As a result, this class cannot be reloaded while the server is running. To prevent this behavior in the future, make sure the class is not located in the server classpath.>
    <2005-12-4 下午15时59分33秒 CST> <Warning> <EJB> <BEA-010001> <While deploying EJB ‘CMCustContractRestrictSVR’, class new97.cm.ejb.service.CMCustContractRestrictSVR was loaded from the system classpath. As a result, this class cannot be reloaded while the server is running. To prevent this behavior in the future, make sure the class is not located in the server classpath.>
    <2005-12-4 下午15时59分33秒 CST> <Warning> <EJB> <BEA-010001> <While deploying EJB ‘CMCustContractRestrictSVR’, class new97.cm.ejb.service.CMCustContractRestrictSVRLocalHome was loaded from the system classpath. As a result, this class cannot be reloaded while the server is running. To prevent this behavior in the future, make sure the class is not located in the server classpath.>
    <2005-12-4 下午15时59分33秒 CST> <Warning> <EJB> <BEA-010001> <While deploying EJB ‘CMCustContractRestrictSVR’, class new97.cm.ejb.service.CMCustContractRestrictSVRLocal was loaded from the system classpath. As a result, this class cannot be reloaded while the server is running. To prevent this behavior in the future, make sure the class is not located in the server classpath.>
    <2005-12-4 下午15时59分34秒 CST> <Warning> <EJB> <BEA-010001> <While deploying EJB ‘CMCustGoldenClubSVR’, class new97.cm.ejb.service.CMCustGoldenClubSVRBean was loaded from the system classpath. As a result, this class cannot be reloaded while the server is running. To prevent this behavior in the future, make sure the class is not located in the server classpath.>
    <2005-12-4 下午15时59分34秒 CST> <Warning> <EJB> <BEA-010001> <While deploying EJB ‘CMCustGoldenClubSVR’, class new97.cm.ejb.service.CMCustGoldenClubSVRHome was loaded from the system classpath. As a result, this class cannot be reloaded while the server is running. To prevent this behavior in the future, make sure the class is not located in the server classpath.>
    <2005-12-4 下午15时59分34秒 CST> <Warning> <EJB> <BEA-010001> <While deploying EJB ‘CMCustGoldenClubSVR’, class new97.cm.ejb.service.CMCustGoldenClubSVR was loaded from the system classpath. As a result, this class cannot be reloaded while the server is running. To prevent this behavior in the future, make sure the class is not located in the server classpath.>
    <2005-12-4 下午15时59分34秒 CST> <Warning> <EJB> <BEA-010001> <While deploying EJB ‘CMCustGoldenClubSVR’, class new97.cm.ejb.service.CMCustGoldenClubSVRLocalHome was loaded from the system classpath. As a result, this class cannot be reloaded while the server is running. To prevent this behavior in the future, make sure the class is not located in the server classpath.>
    <2005-12-4 下午15时59分34秒 CST> <Warning> <EJB> <BEA-010001> <While deploying EJB ‘CMCustGoldenClubSVR’, class new97.cm.ejb.service.CMCustGoldenClubSVRLocal was loaded from the system classpath. As a result, this class cannot be reloaded while the server is running. To prevent this behavior in the future, make sure the class is not located in the server classpath.>
    <2005-12-4 下午15时59分34秒 CST> <Warning> <EJB> <BEA-010001> <While deploying EJB ‘CMServScoreSVR’, class new97.cm.ejb.service.CMServScoreSVRBean was loaded from the system classpath. As a result, this class cannot be reloaded while the server is running. To prevent this behavior in the future, make sure the class is not located in the server classpath.>
    <2005-12-4 下午15时59分34秒 CST> <Warning> <EJB> <BEA-010001> <While deploying EJB ‘CMServScoreSVR’, class new97.cm.ejb.service.CMServScoreSVRHome was loaded from the system classpath. As a result, this class cannot be reloaded while the server is running. To prevent this behavior in the future, make sure the class is not located in the server classpath.>
    <2005-12-4 下午15时59分34秒 CST> <Warning> <EJB> <BEA-010001> <While deploying EJB ‘CMServScoreSVR’, class new97.cm.ejb.service.CMServScoreSVR was loaded from the system classpath. As a result, this class cannot be reloaded while the server is running. To prevent this behavior in the future, make sure the class is not located in the server classpath.>
    <2005-12-4 下午15时59分34秒 CST> <Warning> <EJB> <BEA-010001> <While deploying EJB ‘CMServScoreSVR’, class new97.cm.ejb.service.CMServScoreSVRLocalHome was loaded from the system classpath. As a result, this class cannot be reloaded while the server is running. To prevent this behavior in the future, make sure the class is not located in the server classpath.>
    <2005-12-4 下午15时59分34秒 CST> <Warning> <EJB> <BEA-010001> <While deploying EJB ‘CMServScoreSVR’, class new97.cm.ejb.service.CMServScoreSVRLocal was loaded from the system classpath. As a result, this class cannot be reloaded while the server is running. To prevent this behavior in the future, make sure the class is not located in the server classpath.>
    <2005-12-4 下午15时59分34秒 CST> <Warning> <EJB> <BEA-010001> <While deploying EJB ‘CMCustOrgDeptSVR’, class new97.cm.ejb.service.CMCustOrgDeptSVRBean was loaded from the system classpath. As a result, this class cannot be reloaded while the server is running. To prevent this behavior in the future, make sure the class is not located in the server classpath.>
    <2005-12-4 下午15时59分34秒 CST> <Warning> <EJB> <BEA-010001> <While deploying EJB ‘CMCustOrgDeptSVR’, class new97.cm.ejb.service.CMCustOrgDeptSVRHome was loaded from the system classpath. As a result, this class cannot be reloaded while the server is running. To prevent this behavior in the future, make sure the class is not located in the server classpath.>
    <2005-12-4 下午15时59分34秒 CST> <Warning> <EJB> <BEA-010001> <While deploying EJB ‘CMCustOrgDeptSVR’, class new97.cm.ejb.service.CMCustOrgDeptSVR was loaded from the system classpath. As a result, this class cannot be reloaded while the server is running. To prevent this behavior in the future, make sure the class is not located in the server classpath.>
    <2005-12-4 下午15时59分34秒 CST> <Warning> <EJB> <BEA-010001> <While deploying EJB ‘CMCustOrgDeptSVR’, class new97.cm.ejb.service.CMCustOrgDeptSVRLocalHome was loaded from t

    #242595

    sinosupe
    Member

    16:07:16,078 INFO InitStrutsPlugIn:79 – init begin….
    16:07:16,156 DEBUG InitStrutsPlugIn:81 – isIniting———————-false
    16:07:16,156 INFO InitStrutsPlugIn:85 – init DataCache begin….
    16:07:16,312 DEBUG StoreSession:24 – 得到新的数据库工具
    16:07:16,671 DEBUG StoreSession:72 – 得到新连接
    16:07:17,015 DEBUG DataCache:1913 – DataCacheJndi———————-还没有绑定
    16:07:17,046 DEBUG DataCache:1922 – DataCacheJndi———————-绑定空的实例
    16:07:17,046 DEBUG DataCache:2007 – objName———————-conncilHouse
    16:07:17,062 DEBUG ReflectUtil:63 – fld.getType()———————-class java.util.HashMap
    16:07:17,078 DEBUG DataCache:1959 – isExist———————-true
    16:07:17,078 DEBUG DataCache:2013 – setHashMap———————-ok
    16:07:17,312 DEBUG DataCache:2007 – objName———————-product
    16:07:17,312 DEBUG ReflectUtil:63 – fld.getType()———————-class java.util.HashMap
    16:07:17,312 DEBUG DataCache:1959 – isExist———————-true
    16:07:17,343 DEBUG DataCache:2013 – setHashMap———————-ok
    16:07:17,359 DEBUG DataCache:2007 – objName———————-product_h
    16:07:17,359 DEBUG ReflectUtil:63 – fld.getType()———————-class java.util.HashMap
    16:07:17,375 DEBUG DataCache:1959 – isExist———————-true
    16:07:17,390 DEBUG DataCache:2013 – setHashMap———————-ok
    16:07:17,437 DEBUG DataCache:2007 – objName———————-changeServSpec
    16:07:17,437 DEBUG ReflectUtil:63 – fld.getType()———————-class java.util.HashMap
    16:07:17,468 DEBUG DataCache:1959 – isExist———————-true
    16:07:17,484 DEBUG DataCache:2013 – setHashMap———————-ok
    16:07:17,515 DEBUG DataCache:2007 – objName———————-changeServSpec_h
    16:07:17,515 DEBUG ReflectUtil:63 – fld.getType()———————-class java.util.HashMap
    16:07:17,531 DEBUG DataCache:1959 – isExist———————-true
    16:07:17,546 DEBUG DataCache:2013 – setHashMap———————-ok
    16:07:17,609 DEBUG DataCache:2007 – objName———————-commServSpec
    16:07:17,609 DEBUG ReflectUtil:63 – fld.getType()———————-class java.util.HashMap
    16:07:17,640 DEBUG DataCache:1959 – isExist———————-true
    16:07:17,656 DEBUG DataCache:2013 – setHashMap———————-ok
    16:07:17,734 DEBUG DataCache:2007 – objName———————-commServSpec_h
    16:07:17,734 DEBUG ReflectUtil:63 – fld.getType()———————-class java.util.HashMap
    16:07:17,750 DEBUG DataCache:1959 – isExist———————-true
    16:07:17,781 DEBUG DataCache:2013 – setHashMap———————-ok
    16:07:17,812 DEBUG DataCache:2007 – objName———————-certType
    16:07:17,812 DEBUG ReflectUtil:63 – fld.getType()———————-class java.util.HashMap
    16:07:17,843 DEBUG DataCache:1959 – isExist———————-true
    16:07:17,875 DEBUG DataCache:2013 – setHashMap———————-ok
    16:07:17,906 DEBUG DataCache:2007 – objName———————-certType_h
    16:07:17,906 DEBUG ReflectUtil:63 – fld.getType()———————-class java.util.HashMap
    16:07:17,937 DEBUG DataCache:1959 – isExist———————-true
    16:07:17,968 DEBUG DataCache:2013 – setHashMap———————-ok
    16:07:18,000 DEBUG DataCache:2007 – objName———————-unit
    16:07:18,000 DEBUG ReflectUtil:63 – fld.getType()———————-class java.util.HashMap
    16:07:18,031 DEBUG DataCache:1959 – isExist———————-true
    16:07:18,062 DEBUG DataCache:2013 – setHashMap———————-ok
    16:07:18,093 DEBUG DataCache:2007 – objName———————-area
    16:07:18,093 DEBUG ReflectUtil:63 – fld.getType()———————-class java.util.HashMap
    16:07:18,109 DEBUG DataCache:1959 – isExist———————-true
    16:07:18,140 DEBUG DataCache:2013 – setHashMap———————-ok
    16:07:18,156 DEBUG DataCache:2007 – objName———————-area_h
    16:07:18,171 DEBUG ReflectUtil:63 – fld.getType()———————-class java.util.HashMap
    16:07:18,234 DEBUG DataCache:1959 – isExist———————-true
    16:07:18,250 DEBUG DataCache:2013 – setHashMap———————-ok
    16:07:18,343 DEBUG DataCache:2007 – objName———————-handleType
    16:07:18,343 DEBUG ReflectUtil:63 – fld.getType()———————-class java.util.HashMap
    16:07:18,375 DEBUG DataCache:1959 – isExist———————-true
    16:07:18,406 DEBUG DataCache:2013 – setHashMap———————-ok
    16:07:18,546 DEBUG DataCache:2007 – objName———————-exch
    16:07:18,562 DEBUG ReflectUtil:63 – fld.getType()———————-class java.util.HashMap
    16:07:18,578 DEBUG DataCache:1959 – isExist———————-true
    16:07:18,609 DEBUG DataCache:2013 – setHashMap———————-ok
    16:07:18,656 DEBUG DataCache:2007 – objName———————-exch_h
    16:07:18,656 DEBUG ReflectUtil:63 – fld.getType()———————-class java.util.HashMap
    16:07:18,687 DEBUG DataCache:1959 – isExist———————-true
    16:07:18,718 DEBUG DataCache:2013 – setHashMap———————-ok
    16:07:18,765 DEBUG DataCache:2007 – objName———————-localNet
    16:07:18,765 DEBUG ReflectUtil:63 – fld.getType()———————-class java.util.HashMap
    16:07:18,796 DEBUG DataCache:1959 – isExist———————-true
    16:07:18,828 DEBUG DataCache:2013 – setHashMap———————-ok
    16:07:18,859 DEBUG DataCache:2007 – objName———————-localNet_h
    16:07:18,875 DEBUG ReflectUtil:63 – fld.getType()———————-class java.util.HashMap
    16:07:18,906 DEBUG DataCache:1959 – isExist———————-true
    16:07:18,937 DEBUG DataCache:2013 – setHashMap———————-ok
    16:07:19,031 DEBUG DataCache:2007 – objName———————-workArea
    16:07:19,031 DEBUG ReflectUtil:63 – fld.getType()———————-class java.util.HashMap
    16:07:19,062 DEBUG DataCache:1959 – isExist———————-true
    16:07:19,109 DEBUG DataCache:2013 – setHashMap———————-ok
    16:07:19,140 DEBUG DataCache:2007 – objName———————-workArea_h
    16:07:19,156 DEBUG ReflectUtil:63 – fld.getType()———————-class java.util.HashMap
    16:07:19,187 DEBUG DataCache:1959 – isExist———————-true
    16:07:19,234 DEBUG DataCache:2013 – setHashMap———————-ok
    16:07:19,281 DEBUG DataCache:2007 – objName———————-resourceSpec
    16:07:19,296 DEBUG ReflectUtil:63 – fld.getType()———————-class java.util.HashMap
    16:07:19,328 DEBUG DataCache:1959 – isExist———————-true
    16:07:19,406 DEBUG DataCache:2013 – setHashMap———————-ok
    16:07:19,437 DEBUG DataCache:2007 – objName———————-resourceSpec_h
    16:07:19,453 DEBUG ReflectUtil:63 – fld.getType()———————-class java.util.HashMap
    16:07:19,484 DEBUG DataCache:1959 – isExist———————-true
    16:07:19,515 DEBUG DataCache:2013 – setHashMap———————-ok
    16:07:19,562 DEBUG DataCache:2007 – objName———————-prodSpecCat
    16:07:19,578 DEBUG ReflectUtil:63 – fld.getType()———————-class java.util.HashMap
    16:07:19,609 DEBUG DataCache:1959 – isExist———————-true
    16:07:19,640 DEBUG DataCache:2013 – setHashMap———————-ok
    16:07:19,687 DEBUG DataCache:2007 – objName———————-prodSpecCat_h
    16:07:19,703 DEBUG ReflectUtil:63 – fld.getType()———————-class java.util.HashMap
    16:07:19,734 DEBUG DataCache:1959 – isExist———————-true
    16:07:19,765 DEBUG DataCache:2013 – setHashMap———————-ok
    16:07:19,812 DEBUG DataCache:2007 – objName———————-custType
    16:07:19,812 DEBUG ReflectUtil:63 – fld.getType()———————-class java.util.HashMap
    16:07:19,843 DEBUG DataCache:1959 – isExist———————-true
    16:07:19,890 DEBUG DataCache:2013 – setHashMap———————-ok
    16:07:19,937 DEBUG DataCache:2007 – objName———————-custCat
    16:07:19,937 DEBUG ReflectUtil:63 – fld.getType()———————-class java.util.HashMap
    16:07:19,968 DEBUG DataCache:1959 – isExist———————-true
    16:07:20,015 DEBUG DataCache:2013 – setHashMap———————-ok
    16:07:20,062 DEBUG DataCache:2007 – objName———————-custVoca
    16:07:20,062 DEBUG ReflectUtil:63 – fld.getType()———————-class java.util.HashMap
    16:07:20,093 DEBUG DataCache:1959 – isExist———————-true
    16:07:20,140 DEBUG DataCache:2013 – setHashMap———————-ok
    16:07:20,187 DEBUG DataCache:2007 – objName———————-custLevel
    16:07:20,187 DEBUG ReflectUtil:63 – fld.getType()———————-class java.util.HashMap
    16:07:20,234 DEBUG DataCache:1959 – isExist———————-true
    16:07:20,296 DEBUG DataCache:2013 – setHashMap———————-ok
    16:07:20,343 DEBUG DataCache:2007 – objName———————-payMeth
    16:07:20,343 DEBUG ReflectUtil:63 – fld.getType()———————-class java.util.HashMap
    16:07:20,375 DEBUG DataCache:1959 – isExist———————-true
    16:07:20,421 DEBUG DataCache:2013 – setHashMap———————-ok
    16:07:20,468 DEBUG DataCache:2007 – objName———————-payMeth_h
    16:07:20,468 DEBUG ReflectUtil:63 – fld.getType()———————-class java.util.HashMap
    16:07:20,500 DEBUG DataCache:1959 – isExist———————-true
    16:07:20,546 DEBUG DataCache:2013 – setHashMap———————-ok
    16:07:20,593 DEBUG DataCache:2007 – objName———————-resourceSpec
    16:07:20,593 DEBUG ReflectUtil:63 – fld.getType()———————-class java.util.HashMap
    16:07:20,640 DEBUG DataCache:1959 – isExist———————-true
    16:07:20,671 DEBUG DataCache:2013 – setHashMap———————-ok
    16:07:20,703 DEBUG DataCache:2007 – objName———————-resourceSpec_h
    16:07:20,718 DEBUG ReflectUtil:63 – fld.getType()———————-class java.util.HashMap
    16:07:20,750 DEBUG DataCache:1959 – isExist———————-true
    16:07:20,781 DEBUG DataCache:2013 – setHashMap———————-ok
    16:07:20,828 DEBUG DataCache:2007 – objName———————-rsSpecType
    16:07:20,843 DEBUG ReflectUtil:63 – fld.getType()———————-class java.util.HashMap
    16:07:20,875 DEBUG DataCache:1959 – isExist———————-true
    16:07:20,906 DEBUG DataCache:2013 – setHashMap———————-ok
    16:07:21,000 DEBUG DataCache:2007 – objName———————-specPrpty
    16:07:21,000 DEBUG ReflectUtil:63 – fld.getType()———————-class java.util.HashMap
    16:07:21,046 DEBUG DataCache:1959 – isExist———————-true
    16:07:21,093 DEBUG DataCache:2013 – setHashMap———————-ok
    16:07:21,140 DEBUG DataCache:2007 – objName———————-specPrpty_h
    16:07:21,140 DEBUG ReflectUtil:63 – fld.getType()———————-class java.util.HashMap
    16:07:21,203 DEBUG DataCache:1959 – isExist———————-true
    16:07:21,250 DEBUG DataCache:2013 – setHashMap———————-ok
    16:07:21,453 DEBUG DataCache:2007 – objName———————-specPrptyVal
    16:07:21,453 DEBUG ReflectUtil:63 – fld.getType()———————-class java.util.HashMap
    16:07:21,500 DEBUG DataCache:1959 – isExist———————-true
    16:07:21,562 DEBUG DataCache:2013 – setHashMap———————-ok
    16:07:21,625 DEBUG DataCache:2007 – objName———————-specPrptyVal_h
    16:07:21,640 DEBUG ReflectUtil:63 – fld.getType()———————-class java.util.HashMap
    16:07:21,687 DEBUG DataCache:1959 – isExist———————-true
    16:07:21,750 DEBUG DataCache:2013 – setHashMap———————-ok
    16:07:21,812 DEBUG DataCache:2007 – objName———————-relationType
    16:07:21,812 DEBUG ReflectUtil:63 – fld.getType()———————-class java.util.HashMap
    16:07:21,875 DEBUG DataCache:1959 – isExist———————-true
    16:07:21,921 DEBUG DataCache:2013 – setHashMap———————-ok
    16:07:22,000 DEBUG DataCache:2007 – objName———————-relationType_h
    16:07:22,000 DEBUG ReflectUtil:63 – fld.getType()———————-class java.util.HashMap
    16:07:22,062 DEBUG DataCache:1959 – isExist———————-true
    16:07:22,140 DEBUG DataCache:2013 – setHashMap———————-ok
    16:07:22,265 DEBUG DataCache:2007 – objName———————-prodSpec
    16:07:22,265 DEBUG ReflectUtil:63 – fld.getType()———————-class java.util.HashMap
    16:07:22,343 DEBUG DataCache:1959 – isExist———————-true
    16:07:22,406 DEBUG DataCache:2013 – setHashMap———————-ok
    16:07:22,484 DEBUG DataCache:2007 – objName———————-prodSpec_h
    16:07:22,484 DEBUG ReflectUtil:63 – fld.getType()———————-class java.util.HashMap
    16:07:22,546 DEBUG DataCache:1959 – isExist———————-true
    16:07:22,609 DEBUG DataCache:2013 – setHashMap———————-ok
    16:07:22,687 DEBUG DataCache:2007 – objName———————-acctItemType
    16:07:22,687 DEBUG ReflectUtil:63 – fld.getType()———————-class java.util.HashMap
    16:07:22,750 DEBUG DataCache:1959 – isExist———————-true
    16:07:22,812 DEBUG DataCache:2013 – setHashMap———————-ok
    16:07:22,906 DEBUG DataCache:2007 – objName———————-acctItemType_h
    16:07:22,906 DEBUG ReflectUtil:63 – fld.getType()———————-class java.util.HashMap
    16:07:23,000 DEBUG DataCache:1959 – isExist———————-true
    16:07:23,062 DEBUG DataCache:2013 – setHashMap———————-ok
    16:07:23,171 DEBUG DataCache:2007 – objName———————-groupType
    16:07:23,187 DEBUG ReflectUtil:63 – fld.getType()———————-class java.util.HashMap
    16:07:23,250 DEBUG DataCache:1959 – isExist———————-true
    16:07:23,328 DEBUG DataCache:2013 – setHashMap———————-ok
    16:07:23,390 DEBUG DataCache:2007 – objName———————-groupType_h
    16:07:23,406 DEBUG ReflectUtil:63 – fld.getType()———————-class java.util.HashMap
    16:07:23,468 DEBUG DataCache:1959 – isExist———————-true
    16:07:23,531 DEBUG DataCache:2013 – setHashMap———————-ok
    16:07:23,609 DEBUG DataCache:2007 – objName———————-custGroup
    16:07:23,609 DEBUG ReflectUtil:63 – fld.getType()———————-class java.util.HashMap
    16:07:23,671 DEBUG DataCache:1959 – isExist———————-true
    16:07:23,734 DEBUG DataCache:2013 – setHashMap———————-ok
    16:07:23,828 DEBUG DataCache:2007 – objName———————-custGroup_h
    16:07:23,843 DEBUG ReflectUtil:63 – fld.getType()———————-class java.util.HashMap
    16:07:23,906 DEBUG DataCache:1959 – isExist———————-true
    16:07:23,968 DEBUG DataCache:2013 – setHashMap———————-ok
    16:07:24,062 DEBUG DataCache:2007 – objName———————-msAgent
    16:07:24,062 DEBUG ReflectUtil:63 – fld.getType()———————-class java.util.HashMap
    16:07:24,125 DEBUG DataCache:1959 – isExist———————-true
    16:07:24,187 DEBUG DataCache:2013 – setHashMap———————-ok
    16:07:24,265 DEBUG DataCache:2007 – objName———————-msAgent_h
    16:07:24,265 DEBUG ReflectUtil:63 – fld.getType()———————-class java.util.HashMap
    16:07:24,343 DEBUG DataCache:1959 – isExist———————-true
    16:07:24,406 DEBUG DataCache:2013 – setHashMap———————-ok
    16:07:24,484 DEBUG DataCache:2007 – objName———————-partyRoleType
    16:07:24,484 DEBUG ReflectUtil:63 – fld.getType()———————-class java.util.HashMap
    16:07:24,546 DEBUG DataCache:1959 – isExist———————-true
    16:07:24,640 DEBUG DataCache:2013 – setHashMap———————-ok
    16:07:24,718 DEBUG DataCache:2007 – objName———————-partyRoleType_h
    16:07:24,734 DEBUG ReflectUtil:63 – fld.getType()———————-class java.util.HashMap
    16:07:24,796 DEBUG DataCache:1959 – isExist———————-true
    16:07:24,859 DEBUG DataCache:2013 – setHashMap———————-ok
    16:07:24,937 DEBUG DataCache:2007 – objName———————-step
    16:07:24,953 DEBUG ReflectUtil:63 – fld.getType()———————-class java.util.HashMap
    16:07:25,015 DEBUG DataCache:1959 – isExist———————-true
    16:07:25,093 DEBUG DataCache:2013 – setHashMap———————-ok
    16:07:25,156 DEBUG DataCache:2007 – objName———————-balanceType
    16:07:25,171 DEBUG ReflectUtil:63 – fld.getType()———————-class java.util.HashMap
    16:07:25,234 DEBUG DataCache:1959 – isExist———————-true
    16:07:25,296 DEBUG DataCache:2013 – setHashMap———————-ok
    16:07:25,406 DEBUG DataCache:2007 – objName———————-balanceType_h
    16:07:25,406 DEBUG ReflectUtil:63 – fld.getType()———————-class java.util.HashMap
    16:07:25,468 DEBUG DataCache:1959 – isExist———————-true
    16:07:25,531 DEBUG DataCache:2013 – setHashMap———————-ok
    16:07:25,546 DEBUG StoreSession:20 – 得到旧的数据库工具….
    16:07:25,562 DEBUG StoreSession:89 – 正常关闭数据库
    16:07:25,609 INFO InitStrutsPlugIn:93 – init DataCache end….
    16:07:25,609 INFO InitStrutsPlugIn:95 – init SessionFactory begin….
    16:07:25,671 DEBUG HibernateUtil:56 – createSessionFactory1
    16:07:25,718 DEBUG HibernateUtil:63 – createSessionFactory2
    16:07:25,718 DEBUG HibernateUtil:66 – SessionFactory is null,and then begin create…
    16:11:52,312 INFO InitStrutsPlugIn:102 – init SessionFactory end….
    16:11:52,312 INFO InitStrutsPlugIn:104 – init status begin….
    16:11:52,359 DEBUG BizConfig:44 – initStatus begin…
    16:11:52,468 DEBUG StatusDAO:144 – status DAO init start……
    16:11:52,468 DEBUG StoreSession:20 – 得到旧的数据库工具….
    16:11:52,468 DEBUG StoreSession:72 – 得到新连接
    16:11:56,296 DEBUG StoreSession:20 – 得到旧的数据库工具….
    16:11:56,312 DEBUG StoreSession:89 – 正常关闭数据库
    16:11:56,312 DEBUG StatusDAO:181 – status DAO init ……end
    16:11:56,312 DEBUG BizConfig:87 – initStatus end…
    16:11:56,312 INFO InitStrutsPlugIn:106 – init status end….
    16:11:56,328 INFO InitStrutsPlugIn:107 – init JudgeMappingCache begin….
    16:11:56,421 DEBUG StoreSession:20 – 得到旧的数据库工具….
    16:11:56,437 DEBUG StoreSession:72 – 得到新连接
    16:11:56,562 DEBUG StoreSession:20 – 得到旧的数据库工具….
    16:11:56,562 DEBUG StoreSession:89 – 正常关闭数据库
    16:11:56,578 INFO InitStrutsPlugIn:115 – init JudgeMappingCache end….
    16:11:56,578 INFO InitStrutsPlugIn:117 – init sys begin….
    16:11:56,890 DEBUG JndiFactory:35 – JndiFacotry created
    16:11:56,906 DEBUG JndiFactory:126 – look up sucess: found SMSysConfigSVR:ClusterableRemoteRef(8389299982340019061S:192.168.0.210:[8001,8001,-1,-1,8001,-1,-1,0,0]:jdon:myserver [8389299982340019061S:192.168.0.210:[8001,8001,-1,-1,8001,-1,-1,0,0]:jdon:myserver/324])/324
    16:11:58,656 INFO InitStrutsPlugIn:123 – WEB_CONTEXT:/new97web
    16:11:58,656 DEBUG JndiFactory:126 – look up sucess: found SMSysConfigSVR:ClusterableRemoteRef(8389299982340019061S:192.168.0.210:[8001,8001,-1,-1,8001,-1,-1,0,0]:jdon:myserver [8389299982340019061S:192.168.0.210:[8001,8001,-1,-1,8001,-1,-1,0,0]:jdon:myserver/324])/324
    16:11:58,687 INFO InitStrutsPlugIn:127 – EJB_LOCAL:0
    16:11:58,687 DEBUG JndiFactory:126 – look up sucess: found SMSysConfigSVR:ClusterableRemoteRef(8389299982340019061S:192.168.0.210:[8001,8001,-1,-1,8001,-1,-1,0,0]:jdon:myserver [8389299982340019061S:192.168.0.210:[8001,8001,-1,-1,8001,-1,-1,0,0]:jdon:myserver/324])/324
    16:11:58,734 INFO InitStrutsPlugIn:131 – DBMAIN:OracleNew97
    16:11:58,750 DEBUG JndiFactory:126 – look up sucess: found SMSysConfigSVR:ClusterableRemoteRef(8389299982340019061S:192.168.0.210:[8001,8001,-1,-1,8001,-1,-1,0,0]:jdon:myserver [8389299982340019061S:192.168.0.210:[8001,8001,-1,-1,8001,-1,-1,0,0]:jdon:myserver/324])/324
    16:11:58,781 INFO InitStrutsPlugIn:135 – DBTYPE:oracle
    16:11:58,796 DEBUG JndiFactory:126 – look up sucess: found SMSysConfigSVR:ClusterableRemoteRef(8389299982340019061S:192.168.0.210:[8001,8001,-1,-1,8001,-1,-1,0,0]:jdon:myserver [8389299982340019061S:192.168.0.210:[8001,8001,-1,-1,8001,-1,-1,0,0]:jdon:myserver/324])/324
    16:11:58,828 INFO InitStrutsPlugIn:139 – IF_INS_NEW_HREF:false
    16:11:58,828 DEBUG JndiFactory:126 – look up sucess: found SMSysConfigSVR:ClusterableRemoteRef(8389299982340019061S:192.168.0.210:[8001,8001,-1,-1,8001,-1,-1,0,0]:jdon:myserver [8389299982340019061S:192.168.0.210:[8001,8001,-1,-1,8001,-1,-1,0,0]:jdon:myserver/324])/324
    16:11:58,937 INFO InitStrutsPlugIn:143 – USE_HREF_AUTH:false
    16:11:58,937 DEBUG JndiFactory:126 – look up sucess: found SMSysConfigSVR:ClusterableRemoteRef(8389299982340019061S:192.168.0.210:[8001,8001,-1,-1,8001,-1,-1,0,0]:jdon:myserver [8389299982340019061S:192.168.0.210:[8001,8001,-1,-1,8001,-1,-1,0,0]:jdon:myserver/324])/324
    16:11:58,968 INFO InitStrutsPlugIn:147 – OS_TYPE:AIX
    16:11:58,984 DEBUG JndiFactory:126 – look up sucess: found SMSysConfigSVR:ClusterableRemoteRef(8389299982340019061S:192.168.0.210:[8001,8001,-1,-1,8001,-1,-1,0,0]:jdon:myserver [8389299982340019061S:192.168.0.210:[8001,8001,-1,-1,8001,-1,-1,0,0]:jdon:myserver/324])/324
    16:11:59,015 INFO InitStrutsPlugIn:151 – STARTUP_SYM:N
    16:11:59,015 DEBUG JndiFactory:126 – look up sucess: found SMSysConfigSVR:ClusterableRemoteRef(8389299982340019061S:192.168.0.210:[8001,8001,-1,-1,8001,-1,-1,0,0]:jdon:myserver [8389299982340019061S:192.168.0.210:[8001,8001,-1,-1,8001,-1,-1,0,0]:jdon:myserver/324])/324
    16:11:59,046 INFO InitStrutsPlugIn:156 – ORG_MNG_MODE:A
    16:11:59,078 INFO InitStrutsPlugIn:162 – init sys end….
    16:12:00,750 DEBUG SPTimerControl:142 – Timer Controller Is Load…
    16:12:00,765 DEBUG SPTimerControl:181 – Timer Configuration Is Stop…
    16:12:00,906 DEBUG SPTimerCtrlPlugIn:121 – 加载定时器失败:
    net.sf.hibernate.LazyInitializationException: Exception initializing proxy: [new97.ejb.po.SysConfig#22089]
    at net.sf.hibernate.proxy.LazyInitializer.initializeWrapExceptions(LazyInitializer.java:64)
    at net.sf.hibernate.proxy.LazyInitializer.getImplementation(LazyInitializer.java:164)
    at net.sf.hibernate.proxy.CGLIBLazyInitializer.intercept(CGLIBLazyInitializer.java:108)
    at new97.ejb.po.SysConfig$$EnhancerByCGLIB$$7f1e989a.getCurValue(<generated>)
    at new97.sp.util.inter.SPTimerCtrlPlugIn.init(SPTimerCtrlPlugIn.java:57)
    at org.apache.struts.action.ActionServlet.initModulePlugIns(ActionServlet.java:1158)
    at org.apache.struts.action.ActionServlet.init(ActionServlet.java:486)
    at javax.servlet.GenericServlet.init(GenericServlet.java:258)
    at weblogic.servlet.internal.ServletStubImpl$ServletInitAction.run(ServletStubImpl.java:993)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:317)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:118)
    at weblogic.servlet.internal.ServletStubImpl.createServlet(ServletStubImpl.java:869)
    at weblogic.servlet.internal.ServletStubImpl.createInstances(ServletStubImpl.java:848)
    at weblogic.servlet.internal.ServletStubImpl.prepareServlet(ServletStubImpl.java:787)
    at weblogic.servlet.internal.WebAppServletContext.preloadServlet(WebAppServletContext.java:3252)
    at weblogic.servlet.internal.WebAppServletContext.preloadServlets(WebAppServletContext.java:3197)
    at weblogic.servlet.internal.WebAppServletContext.preloadResources(WebAppServletContext.java:3174)
    at weblogic.servlet.internal.HttpServer.preloadResources(HttpServer.java:688)
    at weblogic.servlet.internal.WebService.preloadResources(WebService.java:483)
    at weblogic.servlet.internal.ServletInitService.resume(ServletInitService.java:30)
    at weblogic.t3.srvr.SubsystemManager.resume(SubsystemManager.java:131)
    at weblogic.t3.srvr.T3Srvr.resume(T3Srvr.java:964)
    at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:359)
    at weblogic.Server.main(Server.java:32)
    Caused by: net.sf.hibernate.ObjectNotFoundException: No row with the given identifier exists: 22089, of class: new97.ejb.po.SysConfig
    at net.sf.hibernate.ObjectNotFoundException.throwIfNull(ObjectNotFoundException.java:24)
    at net.sf.hibernate.impl.SessionImpl.immediateLoad(SessionImpl.java:1900)
    at net.sf.hibernate.proxy.LazyInitializer.initialize(LazyInitializer.java:53)
    at net.sf.hibernate.proxy.LazyInitializer.initializeWrapExceptions(LazyInitializer.java:60)
    … 23 more
    16:12:11,390 DEBUG RMAccNbrReleasePlugIn:47 – 运行拆机号码释放和号码回收插件。。。
    16:12:11,421 DEBUG StoreSession:20 – 得到旧的数据库工具….
    16:12:11,437 DEBUG StoreSession:72 – 得到新连接
    16:12:11,437 DEBUG RMAccNbrReleasePlugIn:85 – SELECT S.CUR_VALUE FROM SYS_CONFIG S WHERE S.CONFIG_ID = 21138
    16:12:11,453 DEBUG StoreSession:20 – 得到旧的数据库工具….
    16:12:11,453 DEBUG StoreSession:89 – 正常关闭数据库
    16:12:11,468 DEBUG RMAccNbrReleasePlugIn:66 – 号码释放和号码回收定时器开始执行时间: Mon Dec 05 00:00:00 CST 2005
    16:12:11,468 DEBUG RMAccNbrReleasePlugIn:67 – 号码释放和号码回收定时器执行间隔时间: 24小时
    16:12:35,671 DEBUG SoAgentAutoRunPlugIn:44 – 运行小灵通代理商插件……
    16:12:35,734 DEBUG StoreSession:20 – 得到旧的数据库工具….
    16:12:35,734 DEBUG StoreSession:72 – 得到新连接
    16:12:35,734 DEBUG SoAgentAutoRunPlugIn:90 – SELECT S.CUR_VALUE FROM SYS_CONFIG S WHERE S.CONFIG_ID = 50006
    16:12:35,750 DEBUG StoreSession:20 – 得到旧的数据库工具….
    16:12:35,750 DEBUG StoreSession:89 – 正常关闭数据库
    16:12:35,765 DEBUG StoreSession:20 – 得到旧的数据库工具….
    16:12:35,765 DEBUG StoreSession:72 – 得到新连接
    16:12:35,765 DEBUG SoAgentAutoRunPlugIn:90 – SELECT S.CUR_VALUE FROM SYS_CONFIG S WHERE S.CONFIG_ID = 50005
    16:12:35,781 DEBUG StoreSession:20 – 得到旧的数据库工具….
    16:12:35,781 DEBUG StoreSession:89 – 正常关闭数据库
    16:12:35,796 DEBUG SoAgentAutoRunPlugIn:66 – 小灵通代理商定时器开始执行时间: Sun Dec 04 16:12:35 CST 2005
    16:12:35,796 DEBUG SoAgentAutoRunPlugIn:67 – 小灵通代理商定时器执行间隔时间: 1分钟
    16:12:35,796 DEBUG SoAgentAutoRunTask:47 – 第1次自动运行小灵通代理商定时器开始……
    16:12:35,796 DEBUG StoreSession:20 – 得到旧的数据库工具….
    16:12:35,796 DEBUG StoreSession:72 – 得到新连接
    16:12:35,828 DEBUG SoAgentAutoRunTask:84 – SELECT S.CUR_VALUE FROM SYS_CONFIG S WHERE S.CONFIG_ID = 50007
    16:12:35,843 DEBUG StoreSession:20 – 得到旧的数据库工具….
    16:12:35,843 DEBUG StoreSession:89 – 正常关闭数据库
    16:12:36,109 DEBUG SoAgentAutoRunTask:60 – calling SoBalanceDelegate.getDelegate().callProce(431)
    16:12:36,609 DEBUG SoBalanceDelegate:306 – add begin….
    16:12:36,875 DEBUG JndiFactory:126 – look up sucess: found SoBalanceEJB:ClusterableRemoteRef(8389299982340019061S:192.168.0.210:[8001,8001,-1,-1,8001,-1,-1,0,0]:jdon:myserver [8389299982340019061S:192.168.0.210:[8001,8001,-1,-1,8001,-1,-1,0,0]:jdon:myserver/904])/904
    16:12:36,875 DEBUG SoBalanceDelegate:715 – JndiNameConst.SoBalanceEJB:SoBalanceEJB
    16:12:37,687 DEBUG TableSoAgentDAO:22 – ———————–小灵通代理商定时器扫面接口表开始
    16:12:37,703 DEBUG TableSoAgentDAO:72 – ———————–from TablePasAgent as a where a.state= ‘1’
    16:12:37,890 DEBUG SoBalanceDelegate:308 – add end….
    16:12:37,937 DEBUG SysConfigHelper:116 – 11001 value:2005-01-26 00:00:00
    16:12:37,953 DEBUG SysConfigHelper:116 – 11002 value:100000
    16:12:37,968 DEBUG DocIndexTaskManager:34 – startTimeStr:2005-01-26 00:00:00 periodStr:100000
    16:12:37,968 DEBUG DocIndexTaskManager:42 – 索引开始时间:2005-01-26 00:00:00
    16:12:37,968 DEBUG DocIndexTaskManager:49 – 索引周期:100000
    16:12:37,968 INFO DocIndexTaskManager:51 – 定时索引启动成功,调度开始时间2005-01-26 00:00:00 ,周期:100000分,运行中…
    16:12:38,109 DEBUG SysConfigHelper:116 – 11000 value:e:\973\index
    16:12:38,125 INFO IndexTask:37 – 文档管理建立索引调度,第1次开始…
    16:12:38,250 INFO PopMsgFactory:70 – 注册弹出消息实现:new97.ms.struts.work.remevent.MSRemEventPopMsgImpl成功!
    16:12:38,281 DEBUG LibraryOperator:116 – 没找到indexWriter
    java.lang.Error: Unresolved compilation problem:

    at new97.ms.search.db.DocumentDBHelper.getUnIndexDocumentId(DocumentDBHelper.java:96)
    at new97.ms.search.doc.index.IndexDocument.IndexDoc(IndexDocument.java:24)
    at new97.ms.search.doc.index.IndexTask.run(IndexTask.java:38)
    at java.util.TimerThread.mainLoop(Timer.java:432)
    at java.util.TimerThread.run(Timer.java:382)
    <2005-12-4 下午16时12分43秒 CST> <Alert> <Log Management> <BEA-170017> <The log file .\jdon.log will be rotated. Reopen the log file if tailing has stopped. This can happen on some platforms like Windows.>
    <2005-12-4 下午16时12分44秒 CST> <Warning> <WebLogicServer> <BEA-000372> <HostName: 0.0.0.0, maps to multiple IP addresses:192.168.0.210,133.193.7.210>
    <2005-12-4 下午16时12分44秒 CST> <Notice> <WebLogicServer> <BEA-000355> <Thread “ListenThread.Default” listening on port 8001, ip address *.*>
    <2005-12-4 下午16时12分44秒 CST> <Notice> <WebLogicServer> <BEA-000331> <Started WebLogic Admin Server “myserver” for domain “jdon” running in Development Mode>
    <2005-12-4 下午16时12分44秒 CST> <Notice> <WebLogicServer> <BEA-000360> <Server started in RUNNING mode>
    <2005-12-4 下午16时12分44秒 CST> <Alert> <Log Management> <BEA-170018> <The log file has been rotated to jdon.log00049. Log messages will continue to be logged in .\jdon.log.>
    16:13:00,968 DEBUG SPTimerControl:190 – Timer Controll Task Is Run…
    16:13:01,000 DEBUG SPTimerControl:296 – Not Found Control Config,Use Default Config…
    16:13:35,796 DEBUG SoAgentAutoRunTask:47 – 第2次自动运行小灵通代理商定时器开始……
    16:14:00,796 DEBUG SPTimerControl:190 – Timer Controll Task Is Run…
    16:16:43,062 DEBUG StoreSession:20 – 得到旧的数据库工具….
    16:16:43,109 DEBUG StoreSession:72 – 得到新连接
    16:16:43,109 DEBUG SoAgentAutoRunTask:84 – SELECT S.CUR_VALUE FROM SYS_CONFIG S WHERE S.CONFIG_ID = 50007
    16:16:43,140 DEBUG StoreSession:20 – 得到旧的数据库工具….
    16:16:43,140 DEBUG StoreSession:89 – 正常关闭数据库
    16:16:43,140 DEBUG SoAgentAutoRunTask:60 – calling SoBalanceDelegate.getDelegate().callProce(431)
    16:16:43,140 DEBUG SoBalanceDelegate:306 – add begin….
    16:16:43,140 DEBUG JndiFactory:126 – look up sucess: found SoBalanceEJB:ClusterableRemoteRef(8389299982340019061S:192.168.0.210:[8001,8001,-1,-1,8001,-1,-1,0,0]:jdon:myserver [8389299982340019061S:192.168.0.210:[8001,8001,-1,-1,8001,-1,-1,0,0]:jdon:myserver/904])/904
    16:16:43,140 DEBUG SoBalanceDelegate:715 – JndiNameConst.SoBalanceEJB:SoBalanceEJB
    16:16:43,156 DEBUG TableSoAgentDAO:22 – ———————–小灵通代理商定时器扫面接口表开始
    16:16:43,156 DEBUG TableSoAgentDAO:72 – ———————–from TablePasAgent as a where a.state= ‘1’
    16:16:43,187 DEBUG SoBalanceDelegate:308 – add end….
    16:16:43,187 DEBUG SoAgentAutoRunTask:47 – 第3次自动运行小灵通代理商定时器开始……
    16:16:43,187 DEBUG StoreSession:20 – 得到旧的数据库工具….
    16:16:43,203 DEBUG StoreSession:72 – 得到新连接
    16:16:43,203 DEBUG SoAgentAutoRunTask:84 – SELECT S.CUR_VALUE FROM SYS_CONFIG S WHERE S.CONFIG_ID = 50007
    16:16:43,203 DEBUG StoreSession:20 – 得到旧的数据库工具….
    16:16:43,203 DEBUG StoreSession:89 – 正常关闭数据库
    16:16:43,218 DEBUG SoAgentAutoRunTask:60 – calling SoBalanceDelegate.getDelegate().callProce(431)
    16:16:43,218 DEBUG SoBalanceDelegate:306 – add begin….
    16:16:43,218 DEBUG JndiFactory:126 – look up sucess: found SoBalanceEJB:ClusterableRemoteRef(8389299982340019061S:192.168.0.210:[8001,8001,-1,-1,8001,-1,-1,0,0]:jdon:myserver [8389299982340019061S:192.168.0.210:[8001,8001,-1,-1,8001,-1,-1,0,0]:jdon:myserver/904])/904
    16:16:43,218 DEBUG SoBalanceDelegate:715 – JndiNameConst.SoBalanceEJB:SoBalanceEJB
    16:16:43,218 DEBUG TableSoAgentDAO:22 – ———————–小灵通代理商定时器扫面接口表开始
    16:16:43,218 DEBUG TableSoAgentDAO:72 – ———————–from TablePasAgent as a where a.state= ‘1’
    16:16:43,234 DEBUG SoBalanceDelegate:308 – add end….
    16:16:43,500 DEBUG SPTimerControl:296 – Not Found Control Config,Use Default Config…
    16:16:43,500 DEBUG SPTimerControl:190 – Timer Controll Task Is Run…
    16:16:43,515 DEBUG SPTimerControl:296 – Not Found Control Config,Use Default Config…
    16:16:43,515 DEBUG SPTimerControl:190 – Timer Controll Task Is Run…
    16:16:43,515 DEBUG SPTimerControl:296 – Not Found Control Config,Use Default Config…
    16:17:00,796 DEBUG SPTimerControl:190 – Timer Controll Task Is Run…
    16:17:01,734 DEBUG SPTimerControl:296 – Not Found Control Config,Use Default Config…
    16:17:43,234 DEBUG SoAgentAutoRunTask:47 – 第4次自动运行小灵通代理商定时器开始……
    16:17:43,234 DEBUG StoreSession:20 – 得到旧的数据库工具….
    16:17:43,281 DEBUG StoreSession:72 – 得到新连接
    16:17:43,281 DEBUG SoAgentAutoRunTask:84 – SELECT S.CUR_VALUE FROM SYS_CONFIG S WHERE S.CONFIG_ID = 50007
    16:17:43,296 DEBUG StoreSession:20 – 得到旧的数据库工具….
    16:17:43,296 DEBUG StoreSession:89 – 正常关闭数据库
    16:17:43,296 DEBUG SoAgentAutoRunTask:60 – calling SoBalanceDelegate.getDelegate().callProce(431)
    16:17:43,296 DEBUG SoBalanceDelegate:306 – add begin….
    16:17:43,296 DEBUG JndiFactory:126 – look up sucess: found SoBalanceEJB:ClusterableRemoteRef(8389299982340019061S:192.168.0.210:[8001,8001,-1,-1,8001,-1,-1,0,0]:jdon:myserver [8389299982340019061S:192.168.0.210:[8001,8001,-1,-1,8001,-1,-1,0,0]:jdon:myserver/904])/904
    16:17:43,296 DEBUG SoBalanceDelegate:715 – JndiNameConst.SoBalanceEJB:SoBalanceEJB
    16:17:43,375 DEBUG TableSoAgentDAO:22 – ———————–小灵通代理商定时器扫面接口表开始
    16:17:43,375 DEBUG TableSoAgentDAO:72 – ———————–from TablePasAgent as a where a.state= ‘1’
    16:17:43,515 DEBUG SoBalanceDelegate:308 – add end….
    16:18:00,968 DEBUG SPTimerControl:190 – Timer Controll Task Is Run…
    16:18:00,968 DEBUG SPTimerControl:296 – Not Found Control Config,Use Default Config…

    #242596

    sinosupe
    Member

    above is weblogic console log by startWeblogic.cmd

    #242597

    sinosupe
    Member

    This weirdy make me nud.

Viewing 12 posts - 16 through 27 (of 27 total)
Reply To: confused problem about weblogic 8.1.2

You must be logged in to post in the forum log in