`

自定义PropertyPlaceHolderConfigurer解密jdbc.properties的数据

    博客分类:
  • JAVA
阅读更多

package com.cy.servercenter.webapp.util.base64;

import java.security.Security;

import javax.crypto.Cipher;
import javax.crypto.SecretKey;
import javax.crypto.spec.SecretKeySpec;

/**
 * 
 * @author victor
 *
 */
public class DESUtils {
	private static final String Algorithm = "DES"; //定义 加密算法,可用 DES,DESede,Blowfish 

	//src为被加密的数据缓冲区(源) 
	public static byte[] encryptMode(byte[] keybyte, byte[] src) { 
		try { 
			//生成密钥 
			SecretKey deskey = new SecretKeySpec(keybyte, Algorithm); 
			//加密 
			Cipher c1 = Cipher.getInstance(Algorithm); 
			c1.init(Cipher.ENCRYPT_MODE, deskey); 
			return c1.doFinal(src); 
		} 
		catch (java.security.NoSuchAlgorithmException e1) { 
			e1.printStackTrace(); 
		} 
		catch (javax.crypto.NoSuchPaddingException e2) { 
			e2.printStackTrace(); 
		} 
		catch (java.lang.Exception e3) { 
			e3.printStackTrace(); 
		} 
		return null; 
	} 

	//keybyte为加密密钥,长度为24字节 
	//src为加密后的缓冲区 
	public static byte[] decryptMode(byte[] keybyte, byte[] src) { 
		try { 
			//生成密钥 
			SecretKey deskey = new SecretKeySpec(keybyte, Algorithm); 
			//解密 
			Cipher c1 = Cipher.getInstance(Algorithm); 
			c1.init(Cipher.DECRYPT_MODE, deskey); 
			return c1.doFinal(src); 
		} 
		catch (java.security.NoSuchAlgorithmException e1) { 
			e1.printStackTrace(); 
		} 
		catch (javax.crypto.NoSuchPaddingException e2) { 
			e2.printStackTrace(); 
		} 
		catch (java.lang.Exception e3) { 
			e3.printStackTrace(); 
		} 
		return null; 
	} 
	//转换成十六进制字符串 
	public static String byte2hex(byte[] b) { 
		String hs=""; 
		String stmp=""; 
		for (int n=0;n<b.length;n++) { 
			stmp=(java.lang.Integer.toHexString(b[n] & 0XFF)); 
			if (stmp.length()==1) hs=hs+"0"+stmp; 
			else hs=hs+stmp; 
			if (n<b.length-1) hs=hs+""; 
		} 
		return hs.toUpperCase(); 
	} 

	//16 进制 转 2 进制
	public static byte[] hex2byte(String hex) throws IllegalArgumentException {     
		if (hex.length() % 2 != 0) {     
			throw new IllegalArgumentException();     
		}     
		char[] arr = hex.toCharArray();     
		byte[] b = new byte[hex.length() / 2];     
		for (int i = 0, j = 0, l = hex.length(); i < l; i++, j++) {     
			String swap = "" + arr[i++] + arr[i];     
			int byteint = Integer.parseInt(swap, 16) & 0xFF;     
			b[j] = new Integer(byteint).byteValue();     
		}     
		return b;     
	} 

	private static byte[] hex2byte(byte[] b) {
		if ((b.length % 2) != 0)
			throw new IllegalArgumentException("长度不是偶数");
		byte[] b2 = new byte[b.length / 2];
		for (int n = 0; n < b.length; n += 2) {
			String item = new String(b, n, 2);
			b2[n / 2] = (byte) Integer.parseInt(item, 16);
		}
		return b2;
	}

	//加密
	public static String Encrypt(String str, byte[] key){
		Security.addProvider(new com.sun.crypto.provider.SunJCE());
		byte[] encrypt = encryptMode(key, str.getBytes());
		return byte2hex(encrypt);
	}

	//加密
	public static byte[] EncryptRetByte(byte[] src, byte[] key){
		Security.addProvider(new com.sun.crypto.provider.SunJCE());
		byte[] encrypt = encryptMode(key, src);
		return encrypt;
	}

	//解密
	public static String Decrypt(String str, byte[] key){
		Security.addProvider(new com.sun.crypto.provider.SunJCE());
		byte[] decrypt = decryptMode(key, hex2byte(str)); 
		return new String(decrypt);
	}

	public static void main(String arg[]){

		String str = "";
		String strKey = "0002000200020002";
		String s3 = Encrypt(str, hex2byte(strKey));
		String s4 = Decrypt(s3, hex2byte(strKey));
		System.out.println(s3);
		System.out.println(s4);


	}
}



package com.cy.servercenter.webapp.util;

import java.util.Properties;

import org.springframework.beans.BeansException;
import org.springframework.beans.factory.BeanInitializationException;
import org.springframework.beans.factory.config.ConfigurableListableBeanFactory;
import org.springframework.beans.factory.config.PropertyPlaceholderConfigurer;

import com.cy.servercenter.webapp.util.base64.DESUtils;


public class EncryptablePropertyPlaceholderConfigurer extends PropertyPlaceholderConfigurer {

	private static final String key = "0002000200020002";

	protected void processProperties(ConfigurableListableBeanFactory beanFactory, Properties props)
			throws BeansException {
		try {
			String username = props.getProperty("jdbc.username");
			if (username != null) {
				props.setProperty("jdbc.username", DESUtils.Decrypt(username, DESUtils.hex2byte(key)));
			}

			String password = props.getProperty("jdbc.password");
			if (password != null) {
				props.setProperty("jdbc.password", DESUtils.Decrypt(password, DESUtils.hex2byte(key)));
			}

			super.processProperties(beanFactory, props);
		} catch (Exception e) {
			e.printStackTrace();
			throw new BeanInitializationException(e.getMessage());
		}
	}
	public static void main(String[] args) {
		try {
			String username = "scott";
			String password = "fsyd";
			System.out.println(username+"\t --> \t"+DESUtils.Encrypt(username,DESUtils.hex2byte(key)));
			System.out.println(password+"\t --> \t"+DESUtils.Encrypt(password,DESUtils.hex2byte(key)));
			
			//System.out.println("解密后的字符:"+decryptCipher.decrypt(decryptCipher.encrypt(test)));  
		} catch (Exception e) {
			e.printStackTrace();
		}  
	}
}


package com.cy.servercenter.service.impl.gis;

import java.math.BigDecimal;
import java.sql.*;
import java.util.List;

import com.cy.servercenter.webapp.util.base64.DESUtils;

public class BaseDao {
	
	private static final String key = "0002000200020002";
	public static final String driver=EnvProperties.env.getProperty("jdbc.driver");
	public static final String url=EnvProperties.env.getProperty("jdbc.url");
	public static final String name=DESUtils.Decrypt(EnvProperties.env.getProperty("jdbc.username"), DESUtils.hex2byte(key));
	public static final String pwd=DESUtils.Decrypt(EnvProperties.env.getProperty("jdbc.password"), DESUtils.hex2byte(key));
	
//	public static final String name=EnvProperties.env.getProperty("jdbc.username");
//	public static final String pwd=EnvProperties.env.getProperty("jdbc.password");
	/**
	 * 关闭数据库
	 * @param conn
	 * @param smt
	 * @param rs
	 */
	public void closeAll(Connection conn,Statement smt,ResultSet rs)
	{
		try {
			if(conn!=null&&!conn.isClosed())
			{
				conn.close();
			}
		} catch (SQLException e) {
			e.printStackTrace();
		}
		try {
			if(smt!=null)
			smt.close();
		} catch (SQLException e) {
			e.printStackTrace();
		}
		try {
			if(rs!=null)
			rs.close();
		} catch (SQLException e) {
			e.printStackTrace();
		}
	}
	
	/**
	 * 连接数据库
	 * @return
	 */
	public Connection getConn()
	{
		Connection conn=null;
		try {
			Class.forName(driver);
			conn=DriverManager.getConnection(url,name,pwd);
		} catch (ClassNotFoundException e) {
			e.printStackTrace();
		} catch (SQLException e) {
			e.printStackTrace();
		}
		return conn;
	}
	
	/**
	 * 执行插入SQL语句
	 * @param sql
	 * @param param
	 * @return
	 */
	public int insertSQL(String sql,String[] param)
	{
		Connection conn=null;
		PreparedStatement pstmt=null;
		int num=0;
		
		try {
			conn=getConn();
			pstmt=conn.prepareStatement(sql);
			if(param!=null)
			{
				for(int i=0;i<param.length;++i)
				{
					pstmt.setString(i+1, param[i]);
				}
			}
			num=pstmt.executeUpdate();
			conn.commit();
			ResultSet rs = this.selectSql(sql);
			if (rs.next()) {
				num = Integer.parseInt(rs.getString(1));
			}
		} catch (SQLException e) {
			e.printStackTrace();
		}finally
		{
			closeAll(conn, pstmt, null);
		}
		return num;
	}
	
	
	/**
	 * 执行更新SQL语句
	 * @param sql
	 * @param param
	 * @return
	 */
	public int updateSQL(String sql,String[] param)
	{
		Connection conn=null;
		PreparedStatement pstmt=null;
		int num=0;
		
		try {
			conn=getConn();
			pstmt=conn.prepareStatement(sql);
			if(param!=null)
			{
				for(int i=0;i<param.length;++i)
				{
					pstmt.setString(i+1, param[i]);
				}
			}
			num=pstmt.executeUpdate();
		} catch (SQLException e) {
			e.printStackTrace();
		}finally
		{
			closeAll(conn, pstmt, null);
		}
		return num;
	}
	
	/**
	 * 执行SQL语句
	 * @param sql
	 * @param param
	 * @return
	 */
	public int excuteProce(String sql)
	{
		Connection conn=null;
		PreparedStatement pstmt=null;
		int num=0;
		
		try {
			conn=getConn();
			pstmt=conn.prepareStatement(sql);
			num=pstmt.executeUpdate();
		} catch (SQLException e) {
			e.printStackTrace();
		}finally
		{
			closeAll(conn, pstmt, null);
		}
		return num;
	}
	

	/**
	 * 批量执行BigDecimal字段类型SQL语句
	 * @param sql
	 * @param param
	 * @param list
	 * @return
	 */
	public int batchExcSQL(String sql,List<Object[]> list)throws Exception{
		Connection conn=null;
		PreparedStatement pstmt=null;
		int num=0;
		boolean flag= false;
		try {
			conn=getConn();
			// 关闭事务自动提交
			 conn.setAutoCommit(false);
			pstmt=conn.prepareStatement(sql);
			for (int i = 0; i < list.size(); i++) {
				Object[] obj = (Object[])list.get(i);
				pstmt.setString(2, obj[0].toString());
				if(obj[1]==null){
					System.out.println(obj[0]+":="+obj[1]);
					pstmt.setString(1, null);
				}else{
					pstmt.setBigDecimal(1, new BigDecimal(obj[1].toString()));
				}
				// 把一个SQL命令加入命令列表
				pstmt.addBatch();
				if(i+1%100==0){
					// 执行批量更新
					pstmt.executeUpdate();
					// 语句执行完毕,提交本事务
					conn.commit();
					 flag= false;
				}else{
					flag = true;
				}
			}
			//i%10000!=0 另外提交
			if(flag){
				pstmt.executeBatch();
				conn.commit();
			}

		} catch (Exception e) {
			conn.rollback(); 
			e.printStackTrace();
		}finally
		{
			closeAll(conn, pstmt, null);
		}
		return num;
	}
	
	/**
	 * 批量执行Param参数评估部分的两个表的数据.
	 * @param sql
	 * @param param
	 * @param list
	 * @return
	 * @author liuhaihui 2013年4月22日10:34:43
	 */
	public int batchParamSQL(String sql,List<Object[]> list)throws Exception{
		Connection conn=null;
		PreparedStatement pstmt=null;
		int num=0;
		boolean flag= false;
		try {
			conn=getConn();
			// 关闭事务自动提交
			conn.setAutoCommit(false);
			pstmt=conn.prepareStatement(sql);
			for (int i = 0; i < list.size(); i++) {
				Object[] obj = (Object[])list.get(i);
				for(int k = 0; k < obj.length ; k++){
					pstmt.setString(k+1, String.valueOf(obj[k]));
				}
				// 把一个SQL命令加入命令列表
				pstmt.addBatch();
				if((i+1)%100==0){
					// 执行批量更新
					//pstmt.executeUpdate();//不可以使用这个。否则报错。java.lang.SQLExcepiton: batch must be either executed or cleared
					/*
					 * 解决方法一般通过另一个Statement操作就行了;但有时使用批处理也有一定的局限性,比如在成批导入数据时,如果不考虑唯一性,当然比较方便,但如果考虑这个问题就有点麻烦了,因为批处理一定要executeBatch()后才生效,但在这个过程中,就无法判断临时表是否已经插入了同样的一条记录;检查一下commit部分的语句发现,如有pstmt.executeBatch();改成了pstmt.executeUpdate();
					 */
					pstmt.executeBatch();
					// 语句执行完毕,提交本事务
					conn.commit();
					flag= false;
				}else{
					flag = true;
				}
			}
			//i%10000!=0 另外提交
			if(flag){
				pstmt.executeBatch();
				conn.commit();
			}

		} catch (Exception e) {
			conn.rollback(); 
			throw e;
		}finally
		{
			closeAll(conn, pstmt, null);
		}
		return num;
	}
	/**
	 * 返回结果集
	 * @param sql
	 * @param param
	 * @return
	 */
	public ResultSet selectSql(String sql,String[] param)
	{
		Connection conn=null;
		PreparedStatement pstmt=null;
		ResultSet rs=null;
		try {
			conn=getConn();
			pstmt=conn.prepareStatement(sql);
			if(param!=null)
			{
				for(int i=0;i<param.length;++i)
				{
					pstmt.setString(i+1, param[i]);
				}
			}
			rs=pstmt.executeQuery();
		} catch (SQLException e) {
			e.printStackTrace();
		}
		return rs;
	}
	/**
	 * 
	 * @author: liuhaihui
	 * 日期: 2013年3月4日16:44:41
	 * 功能: 将list对象数组里面的所有数据绑定到sql语句里面.其中sql 语句的第一个参数是一个 USER_ID (由:用户名+日期)
	 */

	public void bindParameterToSQL(String sql, List<String[]> list,String importCSVFileUserID) throws Exception{
		
		//String specificUserID = "F_Admin"+System.currentTimeMillis();
		//String specificUserID = "F_Admin"+ImportCSVFileTime;
		Connection conn=null;
		PreparedStatement pstmt=null;
		
		int[] num  = null;
		try {
			conn=getConn();
			pstmt=conn.prepareStatement(sql);
			
			int k = 1;
			for(String param[]:list){
				if(k % 4000 == 0){
					System.out.println("\n\n\t\t正在绑定第 "+k+" 条记录(共  "+list.size()+" 条记录).");
				}
				k++;
				if(param!=null)
				{	
					pstmt.setString(1, importCSVFileUserID);
					for(int i=1;i<=param.length;++i)
					{
						pstmt.setString(i+1, param[i-1]);
					}
					pstmt.addBatch();   
				}
			}
			System.out.println("\n\n\t\t绑定完成,开始调用存储过程执行一次批量更新.");
			
			 //创建存储过程的对象
			 //call CREATEZHIBIAOPART3('cy_struct_road_orginal_data','F_ADMIN2013-3-1 14:57:01','F_ADMIN')
	         CallableStatement c=conn.prepareCall("{call CREATEZHIBIAOPART3(?,?)}");
	        
	         //给存储过程的参数设置值  //这种格式的分区名是不行的 :F_ADMIN_2013-3-1 11:50:37 要修改成2013-3-1 11:50:37
	         c.setString(1, "cy_struct_road_orginal_data");//将第一个参数的值设置成cy_struct_road_orginal_data
	         c.setString(2, importCSVFileUserID);//将第二个参数的值设置成specificUserID
	        
	         //执行存储过程
	         c.execute();
	         
			num = pstmt.executeBatch();   
			
			conn.commit();
			
			System.out.println("\n\n\t\t调用存储过程批量更新执行完成.");
			
		} catch (SQLException e) {
			System.out.println("绑定参数到SQL语句失败,请检查SQL语句的合法性.");
			e.printStackTrace();
			throw new BatchUpdateException("绑定参数到SQL语句失败,请检查SQL语句的合法性.",num);
		}finally
		{
			closeAll(conn, pstmt, null);
		}
		
	}

	public int insertSQL(String sql)
	{
		return insertSQL(sql, null);
	}
	
	public int updateSQL(String sql)
	{
		return updateSQL(sql, null);
	}
	
	public ResultSet selectSql(String sql)
	{
		return selectSql(sql, null);
	}
}




<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context"
	xmlns:tx="http://www.springframework.org/schema/tx" xmlns:aop="http://www.springframework.org/schema/aop"
	xmlns:p="http://www.springframework.org/schema/p"
	xsi:schemaLocation="http://www.springframework.org/schema/beans 
		http://www.springframework.org/schema/beans/spring-beans-2.5.xsd 
		http://www.springframework.org/schema/context 
		http://www.springframework.org/schema/context/spring-context-2.5.xsd  
		http://www.springframework.org/schema/tx 
		http://www.springframework.org/schema/tx/spring-tx-2.5.xsd  
		http://www.springframework.org/schema/aop 
		http://www.springframework.org/schema/aop/spring-aop-2.5.xsd"
	default-lazy-init="true">
       
	<!-- 
		| properties属性配置文件(多个使用逗号分隔).
	   <context:property-placeholder location="classpath:jdbc.properties" />
	-->
	<bean id="placeHolderConfigurer" class="com.cy.servercenter.webapp.util.EncryptablePropertyPlaceholderConfigurer">
	      <property name="location" value="classpath:jdbc.properties"></property>
	</bean>
	<!-- 
	-->
	<!--
		| JPA注解配置,可以直接在DAO层中使用@PersistenceContext注解注入EntityManager
	-->
	<bean id="pabpp"
		class="org.springframework.orm.jpa.support.PersistenceAnnotationBeanPostProcessor" />
	<!--
		| 通用注解,可以使用@Resource、@PostConstruct、@PreDestroy这些注解 | @Resource
		注入对应的bean(bean必须在XML文件中定义) | @PostConstruct bean初始化的回调方法注解,注解在方法上 |
		@PreDestroy bean销毁的回调方法注解,注解在方法上
	-->
	<bean id="cabpp"
		class="org.springframework.context.annotation.CommonAnnotationBeanPostProcessor" />
	<bean id="dataSource" class="com.alibaba.druid.pool.DruidDataSource"
		destroy-method="close">
		<!-- 基本属性 driverClassName、url、user、password -->
		<property name="driverClassName" value="${jdbc.driver}" />
		<property name="url">
			<value><![CDATA[${jdbc.url}]]></value>
		</property>
		<property name="username" value="${jdbc.username}" />
		<property name="password" value="${jdbc.password}" />
		
		<!-- 配置初始化大小、最小、最大 -->
		<property name="initialSize" value="${jdbc.initialPoolSize}" />
		<property name="minIdle" value="${jdbc.minPoolSize}" />
		<property name="maxActive" value="${jdbc.maxPoolSize}" />
		<!-- 配置获取连接等待超时的时间 -->
		<property name="maxWait" value="${jdbc.maxIdleTime}" />
		
		<!-- 配置间隔多久才进行一次检测,检测需要关闭的空闲连接,单位是毫秒 -->
		<property name="timeBetweenEvictionRunsMillis" value="60000" />
		<!-- 配置一个连接在池中最小生存的时间,单位是毫秒 -->
		<property name="minEvictableIdleTimeMillis" value="300000" />
		<property name="validationQuery" value="SELECT 'x'" />
		<property name="testWhileIdle" value="true" />
		<property name="testOnBorrow" value="false" />
		<property name="testOnReturn" value="false" />
		<!-- 打开PSCache,并且指定每个连接上PSCache的大小 -->
		<property name="poolPreparedStatements" value="true" />
		<property name="maxPoolPreparedStatementPerConnectionSize"
			value="20" />
		<!-- 配置监控统计拦截的filters -->
		<property name="filters" value="stat" />
	</bean>
	<bean id="entityManagerFactory"
		class="org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean"
		destroy-method="destroy">
		<property name="dataSource" ref="dataSource" />
		<property name="persistenceXmlLocation" value="classpath*:META-INF/persistence.xml" />
		<property name="persistenceUnitName" value="AppProductPersistenceUnit"></property>
	</bean>
	<bean id="transactionManager" class="org.springframework.orm.jpa.JpaTransactionManager">
		<property name="entityManagerFactory" ref="entityManagerFactory" />
	</bean>
	
	<!-- 
		| 使用基于注解的事务控制,在需要事务的类或方法上使用@Transactional进行控制
	 	-->
	<!--
		<tx:annotation-driven transaction-manager="transactionManager" />
	-->
	<!--
		| AOP方式的事务配置,主要针对Service处理类.所有get方法使用只读事务控制,其他默认事务控制. |
		所有的业务类的名称必须以ServiceImpl结束才可以使用事务配置功能!
	-->
	<tx:advice id="txAdvice" transaction-manager="transactionManager">
		<tx:attributes>
			<tx:method name="get*" read-only="true" />
			<tx:method name="*" />
		</tx:attributes>
	</tx:advice>
	<aop:config>
		<aop:advisor id="managerTx" advice-ref="txAdvice"
			pointcut="execution(* com.*.servercenter..*.*ServiceImpl.*(..))" />
	</aop:config>
</beans>



### \u5f00\u53d1\u73af\u5883\u6570\u636e\u914d\u7f6e
#jdbc.driver=com.mysql.jdbc.Driver
jdbc.driver=oracle.jdbc.driver.OracleDriver
jdbc.url=jdbc\:oracle\:thin\:@192.168.1.249\:1521\:znwysys
#jdbc.url=jdbc\:oracle\:thin\:@10.248.112.161\:1521\:znwysys
#jdbc:mysql://localhost:3306/fsdadb?useUnicode=true&characterEncoding=UTF-8
jdbc.username=52BF4602D5B6FB61
jdbc.password=BB856F5134D9E5E2

### \u6570\u636e\u5e93\u8fde\u63a5\u6c60\u7684\u6700\u5c0f\u8fde\u63a5\u6570\u91cf\u3001\u6700\u5927\u8fde\u63a5\u6570\u91cf\u3001\u521d\u59cb\u8fde\u63a5\u6c60\u5927\u5c0f
jdbc.minPoolSize=5
jdbc.maxPoolSize=50
jdbc.initialPoolSize=5

### \u8fde\u63a5\u7684\u6700\u5927\u7a7a\u95f2\u65f6\u95f4\uff08\u5355\u4f4d\u79d2\uff0c0\u8868\u793a\u6c38\u4e0d\u4e22\u5f03\uff09\u3001\u8fde\u63a5\u8017\u5c3d\u65f6\u4e00\u6b21\u83b7\u53d6\u7684\u8fde\u63a5\u6570\u91cf
jdbc.maxIdleTime=25000
jdbc.acquireIncrement=3





还有一种方式:

package com.cy.servercenter.webapp.util;


import java.util.HashMap;
import java.util.Map;
import java.util.Properties;

import org.springframework.beans.BeansException;
import org.springframework.beans.factory.config.ConfigurableListableBeanFactory;
import org.springframework.beans.factory.config.PropertyPlaceholderConfigurer;

public class EncryptedPropertyPlaceHolderConfigurer extends	PropertyPlaceholderConfigurer{

	private static String[] encryptedProperties = {"username","password"};
	private static DESTools decryptCipher = null;
	
	static{
		try {
			decryptCipher = new DESTools("caoyue");//自定义密钥  
		} catch (Exception e) {
			e.printStackTrace();
		}
	}
	
	private static boolean isEncryptedProperty(String s){
		
		for(String prop : encryptedProperties){
			if(s.indexOf(prop)!=-1){
				return true;
			}
		}
		return false;
	}

	private static Map<String, Object> ctxPropertiesMap; 

	@Override 
	protected void processProperties(ConfigurableListableBeanFactory beanFactoryToProcess,Properties props) throws BeansException{ 
		
		super.processProperties(beanFactoryToProcess, props); 
		
		ctxPropertiesMap = new HashMap<String,Object>();
		
		try {
			for (Object key : props.keySet()) { 
				
				String propertyName = key.toString(); 
				String propertyValue = props.getProperty(propertyName);
				
				if(isEncryptedProperty(propertyName)){
					String decryptedPropertyValue = decryptCipher.decrypt(propertyValue);
					System.out.println("propertyName : "+propertyName + "  propertyValue : "+decryptedPropertyValue);
					ctxPropertiesMap.put(propertyName, decryptedPropertyValue); 
				}else{
					ctxPropertiesMap.put(propertyName, propertyValue); 
				}
			}
		} catch (Exception e) {
			e.printStackTrace();
		}
	} 

	public static Object getContextProperty(String name) { 
		return ctxPropertiesMap.get(name); 
	} 
    
	
	public static void main(String[] args) {
		try {
			String username = "scott";
			String password = "fsyd";
			System.out.println(username+"\t --> \t"+decryptCipher.encrypt(username));
			System.out.println(password+"\t --> \t"+decryptCipher.encrypt(password));
			
			//System.out.println("解密后的字符:"+decryptCipher.decrypt(decryptCipher.encrypt(test)));  
		} catch (Exception e) {
			e.printStackTrace();
		}  
	}

}




输出的信息如下:

2014-2-27 12:59:02 org.apache.catalina.core.AprLifecycleListener init
信息: The APR based Apache Tomcat Native library which allows optimal performance in production environments was not found on the java.library.path: C:\Program Files\Java\jdk1.6.0_34\bin;C:\Windows\Sun\Java\bin;C:\Windows\system32;C:\Windows;C:\Program Files\Java\jdk1.6.0_34\jre\bin;C:/Program Files/Java/jdk1.6.0_34/bin/../jre/bin/server;C:/Program Files/Java/jdk1.6.0_34/bin/../jre/bin;C:/Program Files/Java/jdk1.6.0_34/bin/../jre/lib/amd64;E:\Oracle11gR2\Administrator\product\11.2.0\dbhome_1\bin;.;C:\Program Files\Java\jdk1.6.0_34\bin;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files\TortoiseSVN\bin;D:\tools\apache-maven-2.2.1\bin;;C:\Program Files (x86)\Microsoft SQL Server\90\Tools\binn\;C:\Program Files (x86)\Common Files\Easysoft\Shared\;C:\Program Files\Common Files\Easysoft\Shared\;C:\Program Files (x86)\Microsoft SQL Server\100\Tools\Binn\;E:\Microsoft SQL Server\Shared\100\Tools\Binn\;E:\Microsoft SQL Server\Shared\100\DTS\Binn\;C:\Program Files (x86)\Microsoft SQL Server\100\Tools\Binn\VSShell\Common7\IDE\;C:\Program Files (x86)\Microsoft SQL Server\100\DTS\Binn\;C:\Program Files (x86)\MySQL\MySQL Server 6.0\bin;D:\sqluldr64;C:\Program Files\Microsoft\Web Platform Installer\;C:\Program Files (x86)\Microsoft ASP.NET\ASP.NET Web Pages\v1.0\;C:\Program Files (x86)\Windows Kits\8.0\Windows Performance Toolkit\;C:\Program Files\Microsoft SQL Server\110\Tools\Binn\;D:\eclipse;;.
2014-2-27 12:59:02 org.apache.tomcat.util.digester.SetPropertiesRule begin
警告: [SetPropertiesRule]{Server/Service/Engine/Host/Context} Setting property 'source' to 'org.eclipse.jst.jee.server:znwysys' did not find a matching property.
2014-2-27 12:59:03 org.apache.coyote.http11.Http11Protocol init
信息: Initializing Coyote HTTP/1.1 on http-8080
2014-2-27 12:59:03 org.apache.catalina.startup.Catalina load
信息: Initialization processed in 572 ms
2014-2-27 12:59:03 org.apache.catalina.core.StandardService start
信息: Starting service Catalina
2014-2-27 12:59:03 org.apache.catalina.core.StandardEngine start
信息: Starting Servlet Engine: Apache Tomcat/6.0.36
2014-2-27 12:59:03 org.apache.catalina.loader.WebappClassLoader validateJarFile
信息: validateJarFile(H:\project249\.metadata\.plugins\org.eclipse.wst.server.core\tmp0\wtpwebapps\znwysys\WEB-INF\lib\servlet-api-2.3.jar) - jar not loaded. See Servlet Spec 2.3, section 9.7.2. Offending class: javax/servlet/Servlet.class
2014-2-27 12:59:04 org.apache.catalina.core.ApplicationContext log
信息: Initializing Spring root WebApplicationContext
2014-02-27 12:59:04,080 [main] INFO  org.springframework.web.context.ContextLoader  - Root WebApplicationContext: initialization started
2014-02-27 12:59:04,147 [main] INFO  org.springframework.web.context.support.XmlWebApplicationContext  - Refreshing Root WebApplicationContext: startup date [Thu Feb 27 12:59:04 CST 2014]; root of context hierarchy
2014-02-27 12:59:04,225 [main] INFO  org.springframework.beans.factory.xml.XmlBeanDefinitionReader  - Loading XML bean definitions from URL [file:/H:/project249/.metadata/.plugins/org.eclipse.wst.server.core/tmp0/wtpwebapps/znwysys/WEB-INF/classes/applicationContext.xml]
2014-02-27 12:59:04,802 [main] INFO  org.springframework.beans.factory.xml.XmlBeanDefinitionReader  - Loading XML bean definitions from URL [file:/H:/project249/.metadata/.plugins/org.eclipse.wst.server.core/tmp0/wtpwebapps/znwysys/WEB-INF/classes/applicationContext-persist.xml]
2014-02-27 12:59:04,834 [main] INFO  org.springframework.beans.factory.xml.XmlBeanDefinitionReader  - Loading XML bean definitions from URL [file:/H:/project249/.metadata/.plugins/org.eclipse.wst.server.core/tmp0/wtpwebapps/znwysys/WEB-INF/classes/applicationContext-security.xml]
2014-02-27 12:59:05,005 [main] INFO  org.springframework.security.config.http.HttpSecurityBeanDefinitionParser  - Checking sorted filter chain: [Root bean: class [org.springframework.security.web.context.SecurityContextPersistenceFilter]; scope=; abstract=false; lazyInit=false; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=null; factoryMethodName=null; initMethodName=null; destroyMethodName=null, order = 300, Root bean: class [org.springframework.security.web.authentication.www.BasicAuthenticationFilter]; scope=; abstract=false; lazyInit=false; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=null; factoryMethodName=null; initMethodName=null; destroyMethodName=null, order = 1200, Root bean: class [org.springframework.security.web.savedrequest.RequestCacheAwareFilter]; scope=; abstract=false; lazyInit=false; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=null; factoryMethodName=null; initMethodName=null; destroyMethodName=null, order = 1300, Root bean: class [org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter]; scope=; abstract=false; lazyInit=false; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=null; factoryMethodName=null; initMethodName=null; destroyMethodName=null, order = 1400, Root bean: class [org.springframework.security.web.authentication.AnonymousAuthenticationFilter]; scope=; abstract=false; lazyInit=false; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=null; factoryMethodName=null; initMethodName=null; destroyMethodName=null, order = 1600, Root bean: class [org.springframework.security.web.session.SessionManagementFilter]; scope=; abstract=false; lazyInit=false; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=null; factoryMethodName=null; initMethodName=null; destroyMethodName=null, order = 1700, Root bean: class [org.springframework.security.web.access.ExceptionTranslationFilter]; scope=; abstract=false; lazyInit=false; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=null; factoryMethodName=null; initMethodName=null; destroyMethodName=null, order = 1800, <myFilter>, order = 1899, <org.springframework.security.web.access.intercept.FilterSecurityInterceptor#0>, order = 1900]
2014-02-27 12:59:05,021 [main] INFO  org.springframework.beans.factory.xml.XmlBeanDefinitionReader  - Loading XML bean definitions from URL [file:/H:/project249/.metadata/.plugins/org.eclipse.wst.server.core/tmp0/wtpwebapps/znwysys/WEB-INF/classes/applicationContext-service.xml]
2014-02-27 12:59:05,036 [main] INFO  org.springframework.beans.factory.xml.XmlBeanDefinitionReader  - Loading XML bean definitions from URL [file:/H:/project249/.metadata/.plugins/org.eclipse.wst.server.core/tmp0/wtpwebapps/znwysys/WEB-INF/classes/applicationContext-service-caimingxi.xml]
2014-02-27 12:59:05,068 [main] INFO  org.springframework.beans.factory.xml.XmlBeanDefinitionReader  - Loading XML bean definitions from URL [file:/H:/project249/.metadata/.plugins/org.eclipse.wst.server.core/tmp0/wtpwebapps/znwysys/WEB-INF/classes/applicationContext-service-zhaizhengqiang.xml]
2014-02-27 12:59:05,083 [main] INFO  org.springframework.beans.factory.xml.XmlBeanDefinitionReader  - Loading XML bean definitions from URL [file:/H:/project249/.metadata/.plugins/org.eclipse.wst.server.core/tmp0/wtpwebapps/znwysys/WEB-INF/classes/applicationContext-service-duyongsheng.xml]
2014-02-27 12:59:05,114 [main] INFO  org.springframework.beans.factory.xml.XmlBeanDefinitionReader  - Loading XML bean definitions from URL [file:/H:/project249/.metadata/.plugins/org.eclipse.wst.server.core/tmp0/wtpwebapps/znwysys/WEB-INF/classes/applicationContext-service-lincaoming.xml]
2014-02-27 12:59:05,130 [main] INFO  org.springframework.beans.factory.xml.XmlBeanDefinitionReader  - Loading XML bean definitions from URL [file:/H:/project249/.metadata/.plugins/org.eclipse.wst.server.core/tmp0/wtpwebapps/znwysys/WEB-INF/classes/applicationContext-service-liuhaihui.xml]
2014-02-27 12:59:05,163 [main] INFO  org.springframework.beans.factory.xml.XmlBeanDefinitionReader  - Loading XML bean definitions from URL [file:/H:/project249/.metadata/.plugins/org.eclipse.wst.server.core/tmp0/wtpwebapps/znwysys/WEB-INF/classes/applicationContext-service-lilvbin.xml]
2014-02-27 12:59:05,179 [main] INFO  org.springframework.beans.factory.xml.XmlBeanDefinitionReader  - Loading XML bean definitions from URL [file:/H:/project249/.metadata/.plugins/org.eclipse.wst.server.core/tmp0/wtpwebapps/znwysys/WEB-INF/classes/applicationContext-service-zhihuiwei.xml]
2014-02-27 12:59:05,194 [main] INFO  org.springframework.beans.factory.xml.XmlBeanDefinitionReader  - Loading XML bean definitions from URL [file:/H:/project249/.metadata/.plugins/org.eclipse.wst.server.core/tmp0/wtpwebapps/znwysys/WEB-INF/classes/applicationContext-service-stat-zhihuiwei.xml]
2014-02-27 12:59:05,210 [main] INFO  org.springframework.beans.factory.xml.XmlBeanDefinitionReader  - Loading XML bean definitions from URL [file:/H:/project249/.metadata/.plugins/org.eclipse.wst.server.core/tmp0/wtpwebapps/znwysys/WEB-INF/classes/applicationContext-quartz.xml]
2014-02-27 12:59:05,584 [main] INFO  com.cy.servercenter.webapp.util.EncryptablePropertyPlaceholderConfigurer  - Loading properties file from class path resource [jdbc.properties]
2014-02-27 12:59:05,943 [main] INFO  org.springframework.web.context.support.XmlWebApplicationContext  - Bean 'managerTx' is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2014-02-27 12:59:06,146 [main] INFO  org.springframework.beans.factory.support.DefaultListableBeanFactory  - Pre-instantiating singletons in org.springframework.beans.factory.support.DefaultListableBeanFactory@5da0b94d: defining beans [placeHolderConfigurer,pabpp,cabpp,dataSource,entityManagerFactory,transactionManager,txAdvice,org.springframework.aop.config.internalAutoProxyCreator,managerTx,org.springframework.security.web.PortMapperImpl#0,org.springframework.security.web.context.HttpSessionSecurityContextRepository#0,org.springframework.security.web.authentication.session.SessionFixationProtectionStrategy#0,org.springframework.security.authentication.ProviderManager#0,org.springframework.security.access.vote.AffirmativeBased#0,org.springframework.security.web.access.intercept.FilterSecurityInterceptor#0,org.springframework.security.web.access.DefaultWebInvocationPrivilegeEvaluator#0,org.springframework.security.authentication.AnonymousAuthenticationProvider#0,org.springframework.security.web.savedrequest.HttpSessionRequestCache#0,org.springframework.security.web.authentication.www.BasicAuthenticationEntryPoint#0,org.springframework.security.config.http.UserDetailsServiceInjectionBeanPostProcessor#0,org.springframework.security.filterChainProxy,myFilter,org.springframework.security.authentication.dao.DaoAuthenticationProvider#0,org.springframework.security.authentication.DefaultAuthenticationEventPublisher#0,org.springframework.security.authenticationManager,myUserDetailService,myAccessDecisionManagerBean,securityMetadataSource,displayListManager,sysAppSequenceService,sysAppOperateLogService,sysAppExpressionService,piAlgorithmService,validateService,dbmYgxxglService,dbmResourceService,dbmRoleService,dbmResourceSortService,gisService,cyMapLaeryService,cyMapUserService,iaFlowTypeService,iaFlowService,iaFlowAnalysisReportService,ghfzYwycService,ghfzJccsszService,ghfzKjrsfService,ghfzLjzbthService,ghfzZfzzgsfService,ghfzZhymService,ghfzZhymnewService,gdglGdglService,sysAppDocDirService,sysAppDocListService,dbmUsersResourceService,iaFlowMenuService,gisPictureManageService,pmcAlarmBillService,dbeSuyTypeService,dataExportLogService,ctptesManageService,callExportService,chartService,pqGridService,itasFasdataService,chartAnalyService,itasNetmoService,itasPoorCoverService,itasExcesiveCoverService,itasDistrictSumService,itasRepeaterService,kpiasCommonService,questMoService,cyDbeSuyTypeService,systemStructureService,roadStructureService,baseLayoutService,structurePrefaceService,structureLtcService,volumPrefaceService,volumnBscrlpgService,volumnXqzbpzService,volumnHwzspgService,paramCsgfpgService,paramCsgfpg2Service,paramCsyzxpgService,ParamCsjcService,ParamWlcsService,ParamZdltcService,yxgzEyibodaService,yxgzClusterService,yxgzProjectService,kpiasKhkpiService,ghfzXzghjyService,paramPlghService,ctptesUserManagerService,ctptesUserTdkhzbService,zdytcService,motsService,siteinforptService,blackblockService,ComplaintService,algroParamService,statService,dynamicModuleService,staticModuleService,simeJob,compareJob,ctptesMoUtil,schedulerFactory]; root of factory hierarchy
2014-02-27 12:59:06,272 [main] INFO  org.springframework.security.web.access.intercept.FilterSecurityInterceptor  - Validated configuration attributes
2014-02-27 12:59:06,568 [main] INFO  org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean  - Building JPA container EntityManagerFactory for persistence unit 'AppProductPersistenceUnit'
2014-02-27 12:59:06,615 [main] INFO  org.hibernate.cfg.annotations.Version  - Hibernate Annotations 3.4.0.GA
2014-02-27 12:59:06,615 [main] INFO  org.hibernate.cfg.Environment  - Hibernate 3.3.2.GA
2014-02-27 12:59:06,615 [main] INFO  org.hibernate.cfg.Environment  - hibernate.properties not found
2014-02-27 12:59:06,615 [main] INFO  org.hibernate.cfg.Environment  - Bytecode provider name : javassist
2014-02-27 12:59:06,631 [main] INFO  org.hibernate.cfg.Environment  - using JDK 1.4 java.sql.Timestamp handling
2014-02-27 12:59:06,693 [main] INFO  org.hibernate.annotations.common.Version  - Hibernate Commons Annotations 3.1.0.GA
2014-02-27 12:59:06,693 [main] INFO  org.hibernate.ejb.Version  - Hibernate EntityManager 3.4.0.GA
2014-02-27 12:59:06,724 [main] INFO  org.hibernate.ejb.Ejb3Configuration  - Processing PersistenceUnitInfo [
	name: AppProductPersistenceUnit
	...]
2014-02-27 12:59:07,239 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.mfn.Mrrta
2014-02-27 12:59:07,286 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.mfn.Mrrta on table MRRTA
2014-02-27 12:59:07,334 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.intelligent.IaFlowNode
2014-02-27 12:59:07,334 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.intelligent.IaFlowNode on table IA_FLOW_NODE
2014-02-27 12:59:07,365 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.sts.Trapevent
2014-02-27 12:59:07,365 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.sts.Trapevent on table TRAPEVENT
2014-02-27 12:59:07,365 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.intelligent.IaFlowMenu
2014-02-27 12:59:07,365 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.intelligent.IaFlowMenu on table ia_flow_menu
2014-02-27 12:59:07,365 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.sts.Trafulgprs
2014-02-27 12:59:07,365 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.sts.Trafulgprs on table TRAFULGPRS
2014-02-27 12:59:07,380 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.mfn.Mrrss
2014-02-27 12:59:07,380 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.mfn.Mrrss on table MRRSS
2014-02-27 12:59:07,412 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.stat.Module
2014-02-27 12:59:07,412 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.stat.Module on table CY_STAT_MODULE
2014-02-27 12:59:07,443 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.sts.Trapcom
2014-02-27 12:59:07,443 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.sts.Trapcom on table TRAPCOM
2014-02-27 12:59:07,443 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.cy.servercenter.model.ghfz.GhfzAelbb
2014-02-27 12:59:07,443 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.cy.servercenter.model.ghfz.GhfzAelbb on table CY_GHFZ_KJRSF_AELBB
2014-02-27 12:59:07,443 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.sts.Trafdlgprs
2014-02-27 12:59:07,443 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.sts.Trafdlgprs on table TRAFDLGPRS
2014-02-27 12:59:07,443 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.sts.Celtchf
2014-02-27 12:59:07,443 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.sts.Celtchf on table CELTCHF
2014-02-27 12:59:07,458 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.sts.Celtchh
2014-02-27 12:59:07,458 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.sts.Celtchh on table CELTCHH
2014-02-27 12:59:07,458 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.sts.Nbrmsclst
2014-02-27 12:59:07,458 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.sts.Nbrmsclst on table NBRMSCLST
2014-02-27 12:59:07,474 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.sts.Cellcchho
2014-02-27 12:59:07,474 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.sts.Cellcchho on table CELLCCHHO
2014-02-27 12:59:07,474 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.sts.Cltchfv5
2014-02-27 12:59:07,474 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.sts.Cltchfv5 on table CLTCHFV5
2014-02-27 12:59:07,474 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.pmc.PmcAlarmBill
2014-02-27 12:59:07,474 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.pmc.PmcAlarmBill on table PMC_ALARM_BILL
2014-02-27 12:59:07,490 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.sts.Cltchfv2
2014-02-27 12:59:07,490 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.sts.Cltchfv2 on table CLTCHFV2
2014-02-27 12:59:07,490 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.sts.Cltchfv1
2014-02-27 12:59:07,490 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.sts.Cltchfv1 on table CLTCHFV1
2014-02-27 12:59:07,490 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.sts.Mots
2014-02-27 12:59:07,490 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.sts.Mots on table MOTS
2014-02-27 12:59:07,490 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.sts.Cltchfv3
2014-02-27 12:59:07,490 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.sts.Cltchfv3 on table CLTCHFV3
2014-02-27 12:59:07,505 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.sts.Cellsqi
2014-02-27 12:59:07,505 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.sts.Cellsqi on table CELLSQI
2014-02-27 12:59:07,505 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.sts.Necellrel
2014-02-27 12:59:07,505 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.sts.Necellrel on table NECELLREL
2014-02-27 12:59:07,505 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.cdd.Tg
2014-02-27 12:59:07,505 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.cdd.Tg on table TG
2014-02-27 12:59:07,521 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.cy.servercenter.model.ghfz.GhfzJccssz
2014-02-27 12:59:07,521 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.cy.servercenter.model.ghfz.GhfzJccssz on table CY_GHFZ_SGGHPG_JCCSSZ
2014-02-27 12:59:07,521 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.sts.Bsc
2014-02-27 12:59:07,521 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.sts.Bsc on table BSC
2014-02-27 12:59:07,521 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.cy.servercenter.model.ghfz.GhfzLjthjzxqzbsjsb
2014-02-27 12:59:07,521 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.cy.servercenter.model.ghfz.GhfzLjthjzxqzbsjsb on table CY_GHFZ_SGGHPG_LJTHJZXQZBSJSB;
2014-02-27 12:59:07,521 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.sts.Bscgprs2
2014-02-27 12:59:07,521 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.sts.Bscgprs2 on table BSCGPRS2
2014-02-27 12:59:07,521 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.intelligent.IaFlowPersonal
2014-02-27 12:59:07,521 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.intelligent.IaFlowPersonal on table IA_FLOW_PERSONAL
2014-02-27 12:59:07,521 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.sts.Mtraftype
2014-02-27 12:59:07,521 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.sts.Mtraftype on table MTRAFTYPE
2014-02-27 12:59:07,536 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.intelligent.IaFlowNodePersonal
2014-02-27 12:59:07,536 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.intelligent.IaFlowNodePersonal on table IA_FLOW_NODE_PERSONAL
2014-02-27 12:59:07,536 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.mfn.Ncscell
2014-02-27 12:59:07,536 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.mfn.Ncscell on table NCSCELL
2014-02-27 12:59:07,536 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.cdd.InternalCell2
2014-02-27 12:59:07,536 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.cdd.InternalCell2 on table INTERNAL_CELL2
2014-02-27 12:59:07,552 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.sts.Celevents
2014-02-27 12:59:07,552 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.sts.Celevents on table CELEVENTS
2014-02-27 12:59:07,552 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.cdd.InternalCell1
2014-02-27 12:59:07,552 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.cdd.InternalCell1 on table INTERNAL_CELL1
2014-02-27 12:59:07,552 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.cdd.InternalCell4
2014-02-27 12:59:07,552 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.cdd.InternalCell4 on table INTERNAL_CELL4
2014-02-27 12:59:07,568 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.cdd.InternalCell3
2014-02-27 12:59:07,568 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.cdd.InternalCell3 on table INTERNAL_CELL3
2014-02-27 12:59:07,583 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.intelligent.IaFlowTypeRelation
2014-02-27 12:59:07,583 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.intelligent.IaFlowTypeRelation on table IA_FLOW_TYPE_RELATION
2014-02-27 12:59:07,583 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.cdd.InternalCell6
2014-02-27 12:59:07,583 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.cdd.InternalCell6 on table INTERNAL_CELL6
2014-02-27 12:59:07,583 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.sts.Nicelhoex
2014-02-27 12:59:07,583 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.sts.Nicelhoex on table NICELHOEX
2014-02-27 12:59:07,583 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.cdd.OuterCell
2014-02-27 12:59:07,583 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.cdd.OuterCell on table OUTER_CELL
2014-02-27 12:59:07,599 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.cdd.InternalCell5
2014-02-27 12:59:07,599 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.cdd.InternalCell5 on table INTERNAL_CELL5
2014-02-27 12:59:07,599 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.cdd.InternalCell8
2014-02-27 12:59:07,599 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.cdd.InternalCell8 on table INTERNAL_CELL8
2014-02-27 12:59:07,599 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.intelligent.IaFlow
2014-02-27 12:59:07,599 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.intelligent.IaFlow on table IA_FLOW
2014-02-27 12:59:07,614 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.cdd.InternalCell7
2014-02-27 12:59:07,614 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.cdd.InternalCell7 on table INTERNAL_CELL7
2014-02-27 12:59:07,614 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.cdd.InternalCell9
2014-02-27 12:59:07,614 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.cdd.InternalCell9 on table INTERNAL_CELL9
2014-02-27 12:59:07,630 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.sts.Cellqosg
2014-02-27 12:59:07,630 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.sts.Cellqosg on table CELLQOSG
2014-02-27 12:59:07,630 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.mfn.Ncsplwb
2014-02-27 12:59:07,630 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.mfn.Ncsplwb on table NCSPLWB
2014-02-27 12:59:07,630 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.cy.servercenter.model.ghfz.GhfzQwzbstjb
2014-02-27 12:59:07,630 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.cy.servercenter.model.ghfz.GhfzQwzbstjb on table CY_GHFZ_KJRSF_QWZBSTJB
2014-02-27 12:59:07,630 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.stat.UserModule
2014-02-27 12:59:07,630 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.stat.UserModule on table CY_STAT_USER_MODULE
2014-02-27 12:59:07,630 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.sts.Celltch
2014-02-27 12:59:07,630 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.sts.Celltch on table CELLTCH
2014-02-27 12:59:07,646 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.cy.servercenter.model.ghfz.GhfzYwycb
2014-02-27 12:59:07,646 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.cy.servercenter.model.ghfz.GhfzYwycb on table CY_GHFZ_SGGHPG_YWYCB
2014-02-27 12:59:07,646 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.cy.servercenter.model.ghfz.GhfzKjrzbjsgcb
2014-02-27 12:59:07,646 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.cy.servercenter.model.ghfz.GhfzKjrzbjsgcb on table CY_GHFZ_KJRSF_KJRZBJSGCB
2014-02-27 12:59:07,646 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.mfn.Ncsadmin
2014-02-27 12:59:07,646 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.mfn.Ncsadmin on table NCSADMIN
2014-02-27 12:59:07,661 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.cy.servercenter.model.gis.CyMapUser
2014-02-27 12:59:07,661 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.cy.servercenter.model.gis.CyMapUser on table CY_MAP_USER
2014-02-27 12:59:07,661 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.sts.Trafgprs2
2014-02-27 12:59:07,661 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.sts.Trafgprs2 on table TRAFGPRS2
2014-02-27 12:59:07,661 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.sts.Cellgprso
2014-02-27 12:59:07,661 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.sts.Cellgprso on table CELLGPRSO
2014-02-27 12:59:07,661 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.dbm.DbmAnnexTable
2014-02-27 12:59:07,677 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.dbm.DbmAnnexTable on table dbm_annex_table
2014-02-27 12:59:07,677 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.cdd.Site
2014-02-27 12:59:07,677 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.cdd.Site on table SITE
2014-02-27 12:59:07,677 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.sts.Clsdcch
2014-02-27 12:59:07,677 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.sts.Clsdcch on table CLSDCCH
2014-02-27 12:59:07,677 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.dbm.DbmUsersRole
2014-02-27 12:59:07,677 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.dbm.DbmUsersRole on table dbm_users_role
2014-02-27 12:59:07,677 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.intelligent.IaFlowType
2014-02-27 12:59:07,677 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.intelligent.IaFlowType on table IA_FLOW_TYPE
2014-02-27 12:59:07,692 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.mfn.Ncsdata
2014-02-27 12:59:07,692 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.mfn.Ncsdata on table NCSDATA
2014-02-27 12:59:07,692 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.sts.Traffgprs
2014-02-27 12:59:07,692 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.sts.Traffgprs on table TRAFFGPRS
2014-02-27 12:59:07,692 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.sts.Idleutchf
2014-02-27 12:59:07,692 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.sts.Idleutchf on table IDLEUTCHF
2014-02-27 12:59:07,692 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.dbm.DbmRoleResource
2014-02-27 12:59:07,692 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.dbm.DbmRoleResource on table dbm_role_resource
2014-02-27 12:59:07,692 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.dbm.DbmRole
2014-02-27 12:59:07,692 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.dbm.DbmRole on table dbm_role
2014-02-27 12:59:07,708 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.sts.Cellgprs
2014-02-27 12:59:07,708 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.sts.Cellgprs on table CELLGPRS
2014-02-27 12:59:07,708 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.sts.Ssst
2014-02-27 12:59:07,708 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.sts.Ssst on table SSST
2014-02-27 12:59:07,708 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.sts.Cltchdrh
2014-02-27 12:59:07,708 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.sts.Cltchdrh on table CLTCHDRH
2014-02-27 12:59:07,708 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.cy.servercenter.model.ghfz.GhfzLszhxsqdb
2014-02-27 12:59:07,708 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.cy.servercenter.model.ghfz.GhfzLszhxsqdb on table cy_ghfz_sgghpg_lszhxsqdb
2014-02-27 12:59:07,708 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.cy.servercenter.model.ghfz.GhfzLssjsrb
2014-02-27 12:59:07,724 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.cy.servercenter.model.ghfz.GhfzLssjsrb on table cy_ghfz_sgghpg_lssjsrb
2014-02-27 12:59:07,724 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.sts.Necelho
2014-02-27 12:59:07,724 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.sts.Necelho on table NECELHO
2014-02-27 12:59:07,724 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.cdd.Nrel
2014-02-27 12:59:07,724 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.cdd.Nrel on table NREL
2014-02-27 12:59:07,724 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.sts.Celeventi
2014-02-27 12:59:07,724 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.sts.Celeventi on table CELEVENTI
2014-02-27 12:59:07,724 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.cy.servercenter.model.gis.CyMapLaery
2014-02-27 12:59:07,724 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.cy.servercenter.model.gis.CyMapLaery on table CY_MAP_LAERY
2014-02-27 12:59:07,724 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.sts.Celeventh
2014-02-27 12:59:07,739 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.sts.Celeventh on table CELEVENTH
2014-02-27 12:59:07,739 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.sysmodel.PiAlgorithm
2014-02-27 12:59:07,739 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.sysmodel.PiAlgorithm on table pi_algorithm
2014-02-27 12:59:07,739 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.cy.servercenter.model.ghfz.GhfzYwycyssjb
2014-02-27 12:59:07,739 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.cy.servercenter.model.ghfz.GhfzYwycyssjb on table CY_GHFZ_SGGHPG_YWYCYSSJB
2014-02-27 12:59:07,739 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.sts.Cltch
2014-02-27 12:59:07,739 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.sts.Cltch on table CLTCH
2014-02-27 12:59:07,755 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.sts.Cltchdrf
2014-02-27 12:59:07,755 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.sts.Cltchdrf on table CLTCHDRF
2014-02-27 12:59:07,755 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.cdd.ExternalCell
2014-02-27 12:59:07,755 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.cdd.ExternalCell on table EXTERNAL_CELL
2014-02-27 12:59:07,770 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.sts.Cltchf
2014-02-27 12:59:07,770 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.sts.Cltchf on table CLTCHF
2014-02-27 12:59:07,770 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.sts.Rlinkbitr
2014-02-27 12:59:07,770 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.sts.Rlinkbitr on table rlinkbitr
2014-02-27 12:59:07,786 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.cdd.InnerCell
2014-02-27 12:59:07,786 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.cdd.InnerCell on table INNER_CELL
2014-02-27 12:59:07,786 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.intelligent.IaAnalysisReportDetail
2014-02-27 12:59:07,786 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.intelligent.IaAnalysisReportDetail on table IA_ANALYSIS_REPORT_DETAIL
2014-02-27 12:59:07,786 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.sysmodel.SysAppSequence
2014-02-27 12:59:07,786 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.sysmodel.SysAppSequence on table sys_app_sequence
2014-02-27 12:59:07,786 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.mfn.Mrrpl
2014-02-27 12:59:07,786 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.mfn.Mrrpl on table MRRPL
2014-02-27 12:59:07,817 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.gis.GisPictureManage
2014-02-27 12:59:07,817 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.gis.GisPictureManage on table GIS_PICTURE_MANAGE
2014-02-27 12:59:07,817 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.intelligent.IaFlowAnalysisReport
2014-02-27 12:59:07,817 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.intelligent.IaFlowAnalysisReport on table IA_FLOW_ANALYSIS_REPORT
2014-02-27 12:59:07,817 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.sysmodel.SysAppDocList
2014-02-27 12:59:07,817 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.sysmodel.SysAppDocList on table sys_app_doc_list
2014-02-27 12:59:07,817 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.sts.Necelass
2014-02-27 12:59:07,817 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.sts.Necelass on table NECELASS
2014-02-27 12:59:07,817 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.sts.Clsms
2014-02-27 12:59:07,817 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.sts.Clsms on table CLSMS
2014-02-27 12:59:07,817 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.sts.Ccchload
2014-02-27 12:59:07,817 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.sts.Ccchload on table CCCHLOAD
2014-02-27 12:59:07,817 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.dbm.DbmResource
2014-02-27 12:59:07,817 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.dbm.DbmResource on table dbm_resource
2014-02-27 12:59:07,833 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.sts.Cellgprs2
2014-02-27 12:59:07,833 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.sts.Cellgprs2 on table CELLGPRS2
2014-02-27 12:59:07,833 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.cdd.BscCdd
2014-02-27 12:59:07,833 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.cdd.BscCdd on table BSC_CDD
2014-02-27 12:59:07,895 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.cy.servercenter.model.ghfz.GhfzPiAlgorithm
2014-02-27 12:59:07,895 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.cy.servercenter.model.ghfz.GhfzPiAlgorithm on table cy_pi_algorithm_houpinggu
2014-02-27 12:59:07,895 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.sts.Nicelass
2014-02-27 12:59:07,895 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.sts.Nicelass on table NICELASS
2014-02-27 12:59:07,895 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.dbm.DbmFjgl
2014-02-27 12:59:07,895 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.dbm.DbmFjgl on table dbm_fjgl
2014-02-27 12:59:07,895 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.sts.Necelhoex
2014-02-27 12:59:07,895 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.sts.Necelhoex on table NECELHOEX
2014-02-27 12:59:07,895 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.sts.Paging
2014-02-27 12:59:07,895 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.sts.Paging on table PAGING
2014-02-27 12:59:07,911 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.structure.CyStructRoadOrginalData
2014-02-27 12:59:07,911 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.structure.CyStructRoadOrginalData on table CY_STRUCT_ROAD_ORGINAL_DATA
2014-02-27 12:59:07,911 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.cy.servercenter.model.gis.CyMapZdytc
2014-02-27 12:59:07,911 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.cy.servercenter.model.gis.CyMapZdytc on table CY_MAP_ZDYTC
2014-02-27 12:59:07,911 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.sysmodel.DataExportLog
2014-02-27 12:59:07,911 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.sysmodel.DataExportLog on table data_export_log
2014-02-27 12:59:07,911 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.mfn.Mrrpwr
2014-02-27 12:59:07,911 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.mfn.Mrrpwr on table MRRPWR
2014-02-27 12:59:07,926 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.sts.Bscgprs
2014-02-27 12:59:07,926 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.sts.Bscgprs on table BSCGPRS
2014-02-27 12:59:07,926 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.cy.servercenter.model.ghfz.GhfzYwxdyzbsdyb
2014-02-27 12:59:07,926 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.cy.servercenter.model.ghfz.GhfzYwxdyzbsdyb on table CY_GHFZ_KJRSF_YWXDYZBSDYB
2014-02-27 12:59:07,926 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.sysmodel.SysAppDocDir
2014-02-27 12:59:07,926 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.sysmodel.SysAppDocDir on table sys_app_doc_dir
2014-02-27 12:59:07,926 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.sysmodel.SysAppExpression
2014-02-27 12:59:07,926 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.sysmodel.SysAppExpression on table sys_app_expression
2014-02-27 12:59:07,926 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.intelligent.IaFlowLine
2014-02-27 12:59:07,926 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.intelligent.IaFlowLine on table IA_FLOW_LINE
2014-02-27 12:59:07,926 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.structure.CyStructRoadAdmin
2014-02-27 12:59:07,942 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.structure.CyStructRoadAdmin on table CY_STRUCT_ROAD_ADMIN
2014-02-27 12:59:07,942 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.sts.Downtime
2014-02-27 12:59:07,942 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.sts.Downtime on table DOWNTIME
2014-02-27 12:59:07,942 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.sts.Celtchfp
2014-02-27 12:59:07,942 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.sts.Celtchfp on table CELTCHFP
2014-02-27 12:59:07,942 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.sysmodel.DbeSuyType
2014-02-27 12:59:07,942 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.sysmodel.DbeSuyType on table dbe_suy_type
2014-02-27 12:59:07,942 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.cdd.ChannelGroup
2014-02-27 12:59:07,942 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.cdd.ChannelGroup on table CHANNEL_GROUP
2014-02-27 12:59:07,942 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.cy.servercenter.model.ghfz.GhfzZdjsjgscb
2014-02-27 12:59:07,942 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.cy.servercenter.model.ghfz.GhfzZdjsjgscb on table CY_GHFZ_SGGHPG_ZDJSJGSCB
2014-02-27 12:59:07,958 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.sts.Loas
2014-02-27 12:59:07,958 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.sts.Loas on table LOAS
2014-02-27 12:59:07,958 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.dbm.DbmResourceSort
2014-02-27 12:59:07,958 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.dbm.DbmResourceSort on table dbm_resource_sort
2014-02-27 12:59:07,958 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.sts.Cltchhv2
2014-02-27 12:59:07,958 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.sts.Cltchhv2 on table CLTCHHV2
2014-02-27 12:59:07,958 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.cdd.ForeignCell
2014-02-27 12:59:07,958 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.cdd.ForeignCell on table FOREIGN_CELL
2014-02-27 12:59:07,973 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.sts.Cltchhv1
2014-02-27 12:59:07,973 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.sts.Cltchhv1 on table CLTCHHV1
2014-02-27 12:59:07,973 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.mfn.Mrrqual
2014-02-27 12:59:07,973 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.mfn.Mrrqual on table MRRQUAL
2014-02-27 12:59:07,973 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.cdd.Msc
2014-02-27 12:59:07,973 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.cdd.Msc on table MSC
2014-02-27 12:59:07,989 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.sts.Cltchhv3
2014-02-27 12:59:07,989 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.sts.Cltchhv3 on table CLTCHHV3
2014-02-27 12:59:07,989 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.sts.Lapd
2014-02-27 12:59:07,989 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.sts.Lapd on table LAPD
2014-02-27 12:59:07,989 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.mfn.Fasdata
2014-02-27 12:59:07,989 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.mfn.Fasdata on table FASDATA
2014-02-27 12:59:07,989 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.sts.Preemp
2014-02-27 12:59:07,989 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.sts.Preemp on table PREEMP
2014-02-27 12:59:07,989 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.dbm.DbmUsersResource
2014-02-27 12:59:07,989 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.dbm.DbmUsersResource on table dbm_users_resource
2014-02-27 12:59:08,004 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.sts.Randomacc
2014-02-27 12:59:08,004 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.sts.Randomacc on table RANDOMACC
2014-02-27 12:59:08,004 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.sts.Cellpag
2014-02-27 12:59:08,004 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.sts.Cellpag on table CELLPAG
2014-02-27 12:59:08,004 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.sts.Cellqoseg
2014-02-27 12:59:08,004 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.sts.Cellqoseg on table CELLQOSEG
2014-02-27 12:59:08,004 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.sysmodel.SysAppOperateLog
2014-02-27 12:59:08,004 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.sysmodel.SysAppOperateLog on table sys_app_operate_log
2014-02-27 12:59:08,004 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.sts.Celeventsc
2014-02-27 12:59:08,004 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.sts.Celeventsc on table CELEVENTSC
2014-02-27 12:59:08,004 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.sts.Nicelho
2014-02-27 12:59:08,004 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.sts.Nicelho on table NICELHO
2014-02-27 12:59:08,004 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.sts.Cellcchdr
2014-02-27 12:59:08,020 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.sts.Cellcchdr on table CELLCCHDR
2014-02-27 12:59:08,020 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.dbm.DbmYgxxgl
2014-02-27 12:59:08,020 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.dbm.DbmYgxxgl on table dbm_ygxxgl
2014-02-27 12:59:08,020 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.sts.Ncellrel
2014-02-27 12:59:08,020 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.sts.Ncellrel on table NCELLREL
2014-02-27 12:59:08,082 [main] INFO  org.hibernate.cfg.annotations.CollectionBinder  - Mapping collection: com.kt.servercenter.model.stat.Module.userModules -> CY_STAT_USER_MODULE
2014-02-27 12:59:08,082 [main] INFO  org.hibernate.cfg.annotations.CollectionBinder  - Mapping collection: com.kt.servercenter.model.intelligent.IaFlow.iaFlowLines -> IA_FLOW_LINE
2014-02-27 12:59:08,082 [main] INFO  org.hibernate.cfg.annotations.CollectionBinder  - Mapping collection: com.kt.servercenter.model.intelligent.IaFlow.iaFlowNodes -> IA_FLOW_NODE
2014-02-27 12:59:08,082 [main] INFO  org.hibernate.cfg.annotations.CollectionBinder  - Mapping collection: com.kt.servercenter.model.intelligent.IaFlow.iaFlowTypeRelations -> IA_FLOW_TYPE_RELATION
2014-02-27 12:59:08,082 [main] INFO  org.hibernate.cfg.annotations.CollectionBinder  - Mapping collection: com.kt.servercenter.model.intelligent.IaFlowType.iaFlowTypeRelations -> IA_FLOW_TYPE_RELATION
2014-02-27 12:59:08,082 [main] INFO  org.hibernate.cfg.annotations.CollectionBinder  - Mapping collection: com.kt.servercenter.model.dbm.DbmRole.dbmRoleResources -> dbm_role_resource
2014-02-27 12:59:08,082 [main] INFO  org.hibernate.cfg.annotations.CollectionBinder  - Mapping collection: com.kt.servercenter.model.dbm.DbmRole.dbmUsersRoles -> dbm_users_role
2014-02-27 12:59:08,082 [main] INFO  org.hibernate.cfg.annotations.CollectionBinder  - Mapping collection: com.cy.servercenter.model.gis.CyMapLaery.cyMapUsers -> CY_MAP_USER
2014-02-27 12:59:08,082 [main] INFO  org.hibernate.cfg.annotations.CollectionBinder  - Mapping collection: com.kt.servercenter.model.intelligent.IaFlowAnalysisReport.iaAnalysisReportDetails -> IA_ANALYSIS_REPORT_DETAIL
2014-02-27 12:59:08,082 [main] INFO  org.hibernate.cfg.annotations.CollectionBinder  - Mapping collection: com.kt.servercenter.model.dbm.DbmResource.dbmResources -> dbm_resource
2014-02-27 12:59:08,082 [main] INFO  org.hibernate.cfg.annotations.CollectionBinder  - Mapping collection: com.kt.servercenter.model.dbm.DbmResource.dbmRoleResources -> dbm_role_resource
2014-02-27 12:59:08,082 [main] INFO  org.hibernate.cfg.annotations.CollectionBinder  - Mapping collection: com.kt.servercenter.model.dbm.DbmResource.dbmUsersResources -> dbm_users_resource
2014-02-27 12:59:08,082 [main] INFO  org.hibernate.cfg.annotations.CollectionBinder  - Mapping collection: com.kt.servercenter.model.dbm.DbmResourceSort.dbmResources -> dbm_resource
2014-02-27 12:59:08,082 [main] INFO  org.hibernate.cfg.annotations.CollectionBinder  - Mapping collection: com.kt.servercenter.model.dbm.DbmYgxxgl.dbmUsersResources -> dbm_users_resource
2014-02-27 12:59:08,082 [main] INFO  org.hibernate.cfg.annotations.CollectionBinder  - Mapping collection: com.kt.servercenter.model.dbm.DbmYgxxgl.dbmUsersRoles -> dbm_users_role
2014-02-27 12:59:08,082 [main] INFO  org.hibernate.cfg.annotations.CollectionBinder  - Mapping collection: com.kt.servercenter.model.dbm.DbmYgxxgl.userModules -> CY_STAT_USER_MODULE
2014-02-27 12:59:08,098 [main] INFO  org.hibernate.cfg.AnnotationConfiguration  - Hibernate Validator not found: ignoring
2014-02-27 12:59:08,223 [main] INFO  org.hibernate.cfg.search.HibernateSearchEventListenerRegister  - Unable to find org.hibernate.search.event.FullTextIndexEventListener on the classpath. Hibernate Search is not enabled.
2014-02-27 12:59:08,254 [main] INFO  org.hibernate.connection.ConnectionProviderFactory  - Initializing connection provider: org.hibernate.ejb.connection.InjectedDataSourceConnectionProvider
2014-02-27 12:59:08,254 [main] INFO  org.hibernate.ejb.connection.InjectedDataSourceConnectionProvider  - Using provided datasource
2014-02-27 12:59:08,800 [main] INFO  org.hibernate.cfg.SettingsFactory  - RDBMS: Oracle, version: Oracle Database 11g Release 11.1.0.0.0 - Production
2014-02-27 12:59:08,800 [main] INFO  org.hibernate.cfg.SettingsFactory  - JDBC driver: Oracle JDBC driver, version: 10.2.0.1.0
2014-02-27 12:59:08,848 [main] INFO  org.hibernate.dialect.Dialect  - Using dialect: org.hibernate.dialect.OracleDialect
2014-02-27 12:59:08,848 [main] WARN  org.hibernate.dialect.Oracle9Dialect  - The Oracle9Dialect dialect has been deprecated; use either Oracle9iDialect or Oracle10gDialect instead
2014-02-27 12:59:08,848 [main] WARN  org.hibernate.dialect.OracleDialect  - The OracleDialect dialect has been deprecated; use Oracle8iDialect instead
2014-02-27 12:59:08,848 [main] INFO  org.hibernate.transaction.TransactionFactoryFactory  - Transaction strategy: org.hibernate.transaction.JDBCTransactionFactory
2014-02-27 12:59:08,863 [main] INFO  org.hibernate.transaction.TransactionManagerLookupFactory  - No TransactionManagerLookup configured (in JTA environment, use of read-write or transactional second-level cache is not recommended)
2014-02-27 12:59:08,863 [main] INFO  org.hibernate.cfg.SettingsFactory  - Automatic flush during beforeCompletion(): disabled
2014-02-27 12:59:08,863 [main] INFO  org.hibernate.cfg.SettingsFactory  - Automatic session close at end of transaction: disabled
2014-02-27 12:59:08,863 [main] INFO  org.hibernate.cfg.SettingsFactory  - JDBC batch size: 15
2014-02-27 12:59:08,863 [main] INFO  org.hibernate.cfg.SettingsFactory  - JDBC batch updates for versioned data: disabled
2014-02-27 12:59:08,863 [main] INFO  org.hibernate.cfg.SettingsFactory  - Scrollable result sets: enabled
2014-02-27 12:59:08,863 [main] INFO  org.hibernate.cfg.SettingsFactory  - JDBC3 getGeneratedKeys(): disabled
2014-02-27 12:59:08,863 [main] INFO  org.hibernate.cfg.SettingsFactory  - Connection release mode: auto
2014-02-27 12:59:08,863 [main] INFO  org.hibernate.cfg.SettingsFactory  - Maximum outer join fetch depth: 3
2014-02-27 12:59:08,863 [main] INFO  org.hibernate.cfg.SettingsFactory  - Default batch fetch size: 1
2014-02-27 12:59:08,863 [main] INFO  org.hibernate.cfg.SettingsFactory  - Generate SQL with comments: enabled
2014-02-27 12:59:08,863 [main] INFO  org.hibernate.cfg.SettingsFactory  - Order SQL updates by primary key: disabled
2014-02-27 12:59:08,863 [main] INFO  org.hibernate.cfg.SettingsFactory  - Order SQL inserts for batching: disabled
2014-02-27 12:59:08,863 [main] INFO  org.hibernate.cfg.SettingsFactory  - Query translator: org.hibernate.hql.ast.ASTQueryTranslatorFactory
2014-02-27 12:59:08,863 [main] INFO  org.hibernate.hql.ast.ASTQueryTranslatorFactory  - Using ASTQueryTranslatorFactory
2014-02-27 12:59:08,863 [main] INFO  org.hibernate.cfg.SettingsFactory  - Query language substitutions: {}
2014-02-27 12:59:08,863 [main] INFO  org.hibernate.cfg.SettingsFactory  - JPA-QL strict compliance: enabled
2014-02-27 12:59:08,863 [main] INFO  org.hibernate.cfg.SettingsFactory  - Second-level cache: enabled
2014-02-27 12:59:08,863 [main] INFO  org.hibernate.cfg.SettingsFactory  - Query cache: disabled
2014-02-27 12:59:08,863 [main] INFO  org.hibernate.cfg.SettingsFactory  - Cache region factory : org.hibernate.cache.impl.NoCachingRegionFactory
2014-02-27 12:59:08,863 [main] INFO  org.hibernate.cfg.SettingsFactory  - Optimize cache for minimal puts: disabled
2014-02-27 12:59:08,863 [main] INFO  org.hibernate.cfg.SettingsFactory  - Structured second-level cache entries: disabled
2014-02-27 12:59:08,879 [main] INFO  org.hibernate.cfg.SettingsFactory  - Statistics: enabled
2014-02-27 12:59:08,879 [main] INFO  org.hibernate.cfg.SettingsFactory  - Deleted entity synthetic identifier rollback: disabled
2014-02-27 12:59:08,879 [main] INFO  org.hibernate.cfg.SettingsFactory  - Default entity-mode: pojo
2014-02-27 12:59:08,879 [main] INFO  org.hibernate.cfg.SettingsFactory  - Named query checking : enabled
2014-02-27 12:59:08,941 [main] INFO  org.hibernate.impl.SessionFactoryImpl  - building session factory
2014-02-27 12:59:10,720 [main] INFO  org.hibernate.impl.SessionFactoryObjectFactory  - Not binding factory to JNDI, no JNDI name configured
2014-02-27 12:59:10,877 [main] WARN  com.kt.servercenter.webapp.util.authorith.MyFilterSecurityInterceptor  - Could not validate configuration attributes as the SecurityMetadataSource did not return any attributes from getAllConfigAttributes()
2014-02-27 12:59:11,033 [main] INFO  org.quartz.core.SchedulerSignalerImpl  - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
2014-02-27 12:59:11,033 [main] INFO  org.quartz.core.QuartzScheduler  - Quartz Scheduler v.1.8.3 created.
2014-02-27 12:59:11,048 [main] INFO  org.quartz.simpl.RAMJobStore  - RAMJobStore initialized.
2014-02-27 12:59:11,048 [main] INFO  org.quartz.core.QuartzScheduler  - Scheduler meta-data: Quartz Scheduler (v1.8.3) 'schedulerFactory' with instanceId 'NON_CLUSTERED'
  Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  NOT STARTED.
  Currently in standby mode.
  Number of jobs executed: 0
  Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.

2014-02-27 12:59:11,048 [main] INFO  org.quartz.impl.StdSchedulerFactory  - Quartz scheduler 'schedulerFactory' initialized from an externally provided properties instance.
2014-02-27 12:59:11,048 [main] INFO  org.quartz.impl.StdSchedulerFactory  - Quartz scheduler version: 1.8.3
2014-02-27 12:59:11,048 [main] INFO  org.quartz.core.QuartzScheduler  - JobFactory set to: org.springframework.scheduling.quartz.AdaptableJobFactory@eca5a40
2014-02-27 12:59:11,064 [main] INFO  org.springframework.context.support.DefaultLifecycleProcessor  - Starting beans in phase 2147483647
2014-02-27 12:59:11,064 [main] INFO  org.springframework.scheduling.quartz.SchedulerFactoryBean  - Starting Quartz Scheduler now
2014-02-27 12:59:11,064 [main] INFO  org.quartz.core.QuartzScheduler  - Scheduler schedulerFactory_$_NON_CLUSTERED started.
2014-02-27 12:59:11,064 [main] INFO  org.springframework.web.context.ContextLoader  - Root WebApplicationContext: initialization completed in 6984 ms
2014-02-27 12:59:11,204 [main] INFO  com.opensymphony.xwork2.config.providers.XmlConfigurationProvider  - Parsing configuration file [struts-default.xml]
2014-02-27 12:59:11,314 [main] INFO  com.opensymphony.xwork2.config.providers.XmlConfigurationProvider  - Parsing configuration file [struts-plugin.xml]
2014-02-27 12:59:11,360 [main] INFO  com.opensymphony.xwork2.config.providers.XmlConfigurationProvider  - Parsing configuration file [struts.xml]
2014-02-27 12:59:11,360 [main] INFO  org.apache.struts2.config.BeanSelectionProvider  - Loading global messages from applicationMessage
2014-02-27 12:59:11,454 [main] INFO  org.apache.struts2.spring.StrutsSpringObjectFactory  - Initializing Struts-Spring integration...
2014-02-27 12:59:11,454 [main] INFO  com.opensymphony.xwork2.spring.SpringObjectFactory  - Setting autowire strategy to name
2014-02-27 12:59:11,454 [main] INFO  org.apache.struts2.spring.StrutsSpringObjectFactory  - ... initialized Struts-Spring integration successfully
2014-02-27 12:59:13,654 [main] INFO  org.springframework.context.support.ClassPathXmlApplicationContext  - Refreshing org.springframework.context.support.ClassPathXmlApplicationContext@16b0013: startup date [Thu Feb 27 12:59:13 CST 2014]; root of context hierarchy
2014-02-27 12:59:13,654 [main] INFO  org.springframework.beans.factory.xml.XmlBeanDefinitionReader  - Loading XML bean definitions from class path resource [applicationContext-service.xml]
2014-02-27 12:59:13,669 [main] INFO  org.springframework.beans.factory.xml.XmlBeanDefinitionReader  - Loading XML bean definitions from class path resource [applicationContext-service-lincaoming.xml]
2014-02-27 12:59:13,686 [main] INFO  org.springframework.beans.factory.xml.XmlBeanDefinitionReader  - Loading XML bean definitions from class path resource [applicationContext-service-liuhaihui.xml]
2014-02-27 12:59:13,717 [main] INFO  org.springframework.beans.factory.xml.XmlBeanDefinitionReader  - Loading XML bean definitions from class path resource [applicationContext.xml]
2014-02-27 12:59:13,748 [main] INFO  com.cy.servercenter.webapp.util.EncryptablePropertyPlaceholderConfigurer  - Loading properties file from class path resource [jdbc.properties]
2014-02-27 12:59:13,764 [main] INFO  org.springframework.beans.factory.support.DefaultListableBeanFactory  - Pre-instantiating singletons in org.springframework.beans.factory.support.DefaultListableBeanFactory@56e626ff: defining beans [displayListManager,sysAppSequenceService,sysAppOperateLogService,sysAppExpressionService,piAlgorithmService,validateService,dbeSuyTypeService,dataExportLogService,ctptesManageService,callExportService,chartService,pqGridService,itasFasdataService,chartAnalyService,itasNetmoService,itasPoorCoverService,itasExcesiveCoverService,itasDistrictSumService,itasRepeaterService,kpiasCommonService,questMoService,cyDbeSuyTypeService,systemStructureService,roadStructureService,baseLayoutService,structurePrefaceService,structureLtcService,volumPrefaceService,volumnBscrlpgService,volumnXqzbpzService,volumnHwzspgService,paramCsgfpgService,paramCsgfpg2Service,paramCsyzxpgService,ParamCsjcService,ParamWlcsService,ParamZdltcService,yxgzEyibodaService,yxgzClusterService,yxgzProjectService,kpiasKhkpiService,ghfzXzghjyService,paramPlghService,ctptesUserManagerService,ctptesUserTdkhzbService,placeHolderConfigurer,pabpp,cabpp,dataSource,entityManagerFactory,transactionManager,txAdvice,org.springframework.aop.config.internalAutoProxyCreator,managerTx]; root of factory hierarchy
2014-02-27 12:59:13,842 [main] INFO  org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean  - Building JPA container EntityManagerFactory for persistence unit 'AppProductPersistenceUnit'
2014-02-27 12:59:13,842 [main] INFO  org.hibernate.ejb.Ejb3Configuration  - Processing PersistenceUnitInfo [
	name: AppProductPersistenceUnit
	...]
2014-02-27 12:59:14,029 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.mfn.Mrrta
2014-02-27 12:59:14,029 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.mfn.Mrrta on table MRRTA
2014-02-27 12:59:14,029 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.intelligent.IaFlowNode
2014-02-27 12:59:14,029 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.intelligent.IaFlowNode on table IA_FLOW_NODE
2014-02-27 12:59:14,045 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.sts.Trapevent
2014-02-27 12:59:14,045 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.sts.Trapevent on table TRAPEVENT
2014-02-27 12:59:14,045 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.intelligent.IaFlowMenu
2014-02-27 12:59:14,045 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.intelligent.IaFlowMenu on table ia_flow_menu
2014-02-27 12:59:14,045 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.sts.Trafulgprs
2014-02-27 12:59:14,045 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.sts.Trafulgprs on table TRAFULGPRS
2014-02-27 12:59:14,045 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.mfn.Mrrss
2014-02-27 12:59:14,045 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.mfn.Mrrss on table MRRSS
2014-02-27 12:59:14,060 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.stat.Module
2014-02-27 12:59:14,060 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.stat.Module on table CY_STAT_MODULE
2014-02-27 12:59:14,060 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.sts.Trapcom
2014-02-27 12:59:14,060 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.sts.Trapcom on table TRAPCOM
2014-02-27 12:59:14,060 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.cy.servercenter.model.ghfz.GhfzAelbb
2014-02-27 12:59:14,060 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.cy.servercenter.model.ghfz.GhfzAelbb on table CY_GHFZ_KJRSF_AELBB
2014-02-27 12:59:14,060 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.sts.Trafdlgprs
2014-02-27 12:59:14,060 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.sts.Trafdlgprs on table TRAFDLGPRS
2014-02-27 12:59:14,060 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.sts.Celtchf
2014-02-27 12:59:14,060 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.sts.Celtchf on table CELTCHF
2014-02-27 12:59:14,060 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.sts.Celtchh
2014-02-27 12:59:14,060 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.sts.Celtchh on table CELTCHH
2014-02-27 12:59:14,060 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.sts.Nbrmsclst
2014-02-27 12:59:14,076 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.sts.Nbrmsclst on table NBRMSCLST
2014-02-27 12:59:14,076 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.sts.Cellcchho
2014-02-27 12:59:14,076 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.sts.Cellcchho on table CELLCCHHO
2014-02-27 12:59:14,076 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.sts.Cltchfv5
2014-02-27 12:59:14,076 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.sts.Cltchfv5 on table CLTCHFV5
2014-02-27 12:59:14,076 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.pmc.PmcAlarmBill
2014-02-27 12:59:14,076 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.pmc.PmcAlarmBill on table PMC_ALARM_BILL
2014-02-27 12:59:14,076 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.sts.Cltchfv2
2014-02-27 12:59:14,076 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.sts.Cltchfv2 on table CLTCHFV2
2014-02-27 12:59:14,076 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.sts.Cltchfv1
2014-02-27 12:59:14,076 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.sts.Cltchfv1 on table CLTCHFV1
2014-02-27 12:59:14,091 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.sts.Mots
2014-02-27 12:59:14,091 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.sts.Mots on table MOTS
2014-02-27 12:59:14,091 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.sts.Cltchfv3
2014-02-27 12:59:14,091 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.sts.Cltchfv3 on table CLTCHFV3
2014-02-27 12:59:14,091 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.sts.Cellsqi
2014-02-27 12:59:14,091 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.sts.Cellsqi on table CELLSQI
2014-02-27 12:59:14,091 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.sts.Necellrel
2014-02-27 12:59:14,091 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.sts.Necellrel on table NECELLREL
2014-02-27 12:59:14,091 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.cdd.Tg
2014-02-27 12:59:14,091 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.cdd.Tg on table TG
2014-02-27 12:59:14,091 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.cy.servercenter.model.ghfz.GhfzJccssz
2014-02-27 12:59:14,091 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.cy.servercenter.model.ghfz.GhfzJccssz on table CY_GHFZ_SGGHPG_JCCSSZ
2014-02-27 12:59:14,091 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.sts.Bsc
2014-02-27 12:59:14,091 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.sts.Bsc on table BSC
2014-02-27 12:59:14,107 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.cy.servercenter.model.ghfz.GhfzLjthjzxqzbsjsb
2014-02-27 12:59:14,107 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.cy.servercenter.model.ghfz.GhfzLjthjzxqzbsjsb on table CY_GHFZ_SGGHPG_LJTHJZXQZBSJSB;
2014-02-27 12:59:14,107 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.sts.Bscgprs2
2014-02-27 12:59:14,107 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.sts.Bscgprs2 on table BSCGPRS2
2014-02-27 12:59:14,107 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.intelligent.IaFlowPersonal
2014-02-27 12:59:14,107 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.intelligent.IaFlowPersonal on table IA_FLOW_PERSONAL
2014-02-27 12:59:14,107 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.sts.Mtraftype
2014-02-27 12:59:14,107 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.sts.Mtraftype on table MTRAFTYPE
2014-02-27 12:59:14,107 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.intelligent.IaFlowNodePersonal
2014-02-27 12:59:14,107 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.intelligent.IaFlowNodePersonal on table IA_FLOW_NODE_PERSONAL
2014-02-27 12:59:14,107 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.mfn.Ncscell
2014-02-27 12:59:14,107 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.mfn.Ncscell on table NCSCELL
2014-02-27 12:59:14,107 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.cdd.InternalCell2
2014-02-27 12:59:14,123 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.cdd.InternalCell2 on table INTERNAL_CELL2
2014-02-27 12:59:14,123 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.sts.Celevents
2014-02-27 12:59:14,123 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.sts.Celevents on table CELEVENTS
2014-02-27 12:59:14,123 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.cdd.InternalCell1
2014-02-27 12:59:14,123 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.cdd.InternalCell1 on table INTERNAL_CELL1
2014-02-27 12:59:14,138 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.cdd.InternalCell4
2014-02-27 12:59:14,138 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.cdd.InternalCell4 on table INTERNAL_CELL4
2014-02-27 12:59:14,138 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.cdd.InternalCell3
2014-02-27 12:59:14,138 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.cdd.InternalCell3 on table INTERNAL_CELL3
2014-02-27 12:59:14,138 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.intelligent.IaFlowTypeRelation
2014-02-27 12:59:14,138 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.intelligent.IaFlowTypeRelation on table IA_FLOW_TYPE_RELATION
2014-02-27 12:59:14,138 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.cdd.InternalCell6
2014-02-27 12:59:14,138 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.cdd.InternalCell6 on table INTERNAL_CELL6
2014-02-27 12:59:14,154 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.sts.Nicelhoex
2014-02-27 12:59:14,154 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.sts.Nicelhoex on table NICELHOEX
2014-02-27 12:59:14,154 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.cdd.OuterCell
2014-02-27 12:59:14,154 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.cdd.OuterCell on table OUTER_CELL
2014-02-27 12:59:14,154 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.cdd.InternalCell5
2014-02-27 12:59:14,154 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.cdd.InternalCell5 on table INTERNAL_CELL5
2014-02-27 12:59:14,169 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.cdd.InternalCell8
2014-02-27 12:59:14,169 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.cdd.InternalCell8 on table INTERNAL_CELL8
2014-02-27 12:59:14,169 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.intelligent.IaFlow
2014-02-27 12:59:14,169 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.intelligent.IaFlow on table IA_FLOW
2014-02-27 12:59:14,169 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.cdd.InternalCell7
2014-02-27 12:59:14,169 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.cdd.InternalCell7 on table INTERNAL_CELL7
2014-02-27 12:59:14,185 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.cdd.InternalCell9
2014-02-27 12:59:14,185 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.cdd.InternalCell9 on table INTERNAL_CELL9
2014-02-27 12:59:14,185 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.sts.Cellqosg
2014-02-27 12:59:14,185 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.sts.Cellqosg on table CELLQOSG
2014-02-27 12:59:14,185 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.mfn.Ncsplwb
2014-02-27 12:59:14,185 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.mfn.Ncsplwb on table NCSPLWB
2014-02-27 12:59:14,185 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.cy.servercenter.model.ghfz.GhfzQwzbstjb
2014-02-27 12:59:14,185 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.cy.servercenter.model.ghfz.GhfzQwzbstjb on table CY_GHFZ_KJRSF_QWZBSTJB
2014-02-27 12:59:14,201 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.stat.UserModule
2014-02-27 12:59:14,201 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.stat.UserModule on table CY_STAT_USER_MODULE
2014-02-27 12:59:14,201 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.sts.Celltch
2014-02-27 12:59:14,201 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.sts.Celltch on table CELLTCH
2014-02-27 12:59:14,201 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.cy.servercenter.model.ghfz.GhfzYwycb
2014-02-27 12:59:14,201 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.cy.servercenter.model.ghfz.GhfzYwycb on table CY_GHFZ_SGGHPG_YWYCB
2014-02-27 12:59:14,201 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.cy.servercenter.model.ghfz.GhfzKjrzbjsgcb
2014-02-27 12:59:14,201 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.cy.servercenter.model.ghfz.GhfzKjrzbjsgcb on table CY_GHFZ_KJRSF_KJRZBJSGCB
2014-02-27 12:59:14,201 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.mfn.Ncsadmin
2014-02-27 12:59:14,201 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.mfn.Ncsadmin on table NCSADMIN
2014-02-27 12:59:14,216 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.cy.servercenter.model.gis.CyMapUser
2014-02-27 12:59:14,216 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.cy.servercenter.model.gis.CyMapUser on table CY_MAP_USER
2014-02-27 12:59:14,216 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.sts.Trafgprs2
2014-02-27 12:59:14,216 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.sts.Trafgprs2 on table TRAFGPRS2
2014-02-27 12:59:14,216 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.sts.Cellgprso
2014-02-27 12:59:14,216 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.sts.Cellgprso on table CELLGPRSO
2014-02-27 12:59:14,216 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.dbm.DbmAnnexTable
2014-02-27 12:59:14,216 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.dbm.DbmAnnexTable on table dbm_annex_table
2014-02-27 12:59:14,232 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.cdd.Site
2014-02-27 12:59:14,232 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.cdd.Site on table SITE
2014-02-27 12:59:14,232 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.sts.Clsdcch
2014-02-27 12:59:14,232 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.sts.Clsdcch on table CLSDCCH
2014-02-27 12:59:14,232 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.dbm.DbmUsersRole
2014-02-27 12:59:14,232 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.dbm.DbmUsersRole on table dbm_users_role
2014-02-27 12:59:14,232 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.intelligent.IaFlowType
2014-02-27 12:59:14,232 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.intelligent.IaFlowType on table IA_FLOW_TYPE
2014-02-27 12:59:14,232 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.mfn.Ncsdata
2014-02-27 12:59:14,232 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.mfn.Ncsdata on table NCSDATA
2014-02-27 12:59:14,247 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.sts.Traffgprs
2014-02-27 12:59:14,247 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.sts.Traffgprs on table TRAFFGPRS
2014-02-27 12:59:14,247 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.sts.Idleutchf
2014-02-27 12:59:14,247 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.sts.Idleutchf on table IDLEUTCHF
2014-02-27 12:59:14,247 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.dbm.DbmRoleResource
2014-02-27 12:59:14,247 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.dbm.DbmRoleResource on table dbm_role_resource
2014-02-27 12:59:14,247 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.dbm.DbmRole
2014-02-27 12:59:14,247 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.dbm.DbmRole on table dbm_role
2014-02-27 12:59:14,247 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.sts.Cellgprs
2014-02-27 12:59:14,247 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.sts.Cellgprs on table CELLGPRS
2014-02-27 12:59:14,263 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.sts.Ssst
2014-02-27 12:59:14,263 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.sts.Ssst on table SSST
2014-02-27 12:59:14,263 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.sts.Cltchdrh
2014-02-27 12:59:14,263 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.sts.Cltchdrh on table CLTCHDRH
2014-02-27 12:59:14,263 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.cy.servercenter.model.ghfz.GhfzLszhxsqdb
2014-02-27 12:59:14,263 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.cy.servercenter.model.ghfz.GhfzLszhxsqdb on table cy_ghfz_sgghpg_lszhxsqdb
2014-02-27 12:59:14,263 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.cy.servercenter.model.ghfz.GhfzLssjsrb
2014-02-27 12:59:14,263 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.cy.servercenter.model.ghfz.GhfzLssjsrb on table cy_ghfz_sgghpg_lssjsrb
2014-02-27 12:59:14,279 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.sts.Necelho
2014-02-27 12:59:14,279 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.sts.Necelho on table NECELHO
2014-02-27 12:59:14,279 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.cdd.Nrel
2014-02-27 12:59:14,279 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.cdd.Nrel on table NREL
2014-02-27 12:59:14,279 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.sts.Celeventi
2014-02-27 12:59:14,279 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.sts.Celeventi on table CELEVENTI
2014-02-27 12:59:14,294 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.cy.servercenter.model.gis.CyMapLaery
2014-02-27 12:59:14,294 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.cy.servercenter.model.gis.CyMapLaery on table CY_MAP_LAERY
2014-02-27 12:59:14,294 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.sts.Celeventh
2014-02-27 12:59:14,294 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.sts.Celeventh on table CELEVENTH
2014-02-27 12:59:14,294 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.sysmodel.PiAlgorithm
2014-02-27 12:59:14,294 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.sysmodel.PiAlgorithm on table pi_algorithm
2014-02-27 12:59:14,294 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.cy.servercenter.model.ghfz.GhfzYwycyssjb
2014-02-27 12:59:14,294 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.cy.servercenter.model.ghfz.GhfzYwycyssjb on table CY_GHFZ_SGGHPG_YWYCYSSJB
2014-02-27 12:59:14,294 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.sts.Cltch
2014-02-27 12:59:14,294 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.sts.Cltch on table CLTCH
2014-02-27 12:59:14,310 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.sts.Cltchdrf
2014-02-27 12:59:14,310 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.sts.Cltchdrf on table CLTCHDRF
2014-02-27 12:59:14,310 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.cdd.ExternalCell
2014-02-27 12:59:14,310 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.cdd.ExternalCell on table EXTERNAL_CELL
2014-02-27 12:59:14,310 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.sts.Cltchf
2014-02-27 12:59:14,310 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.sts.Cltchf on table CLTCHF
2014-02-27 12:59:14,310 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.sts.Rlinkbitr
2014-02-27 12:59:14,325 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.sts.Rlinkbitr on table rlinkbitr
2014-02-27 12:59:14,325 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.cdd.InnerCell
2014-02-27 12:59:14,325 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.cdd.InnerCell on table INNER_CELL
2014-02-27 12:59:14,325 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.intelligent.IaAnalysisReportDetail
2014-02-27 12:59:14,325 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.intelligent.IaAnalysisReportDetail on table IA_ANALYSIS_REPORT_DETAIL
2014-02-27 12:59:14,325 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.sysmodel.SysAppSequence
2014-02-27 12:59:14,325 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.sysmodel.SysAppSequence on table sys_app_sequence
2014-02-27 12:59:14,325 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.mfn.Mrrpl
2014-02-27 12:59:14,325 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.mfn.Mrrpl on table MRRPL
2014-02-27 12:59:14,341 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.gis.GisPictureManage
2014-02-27 12:59:14,341 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.gis.GisPictureManage on table GIS_PICTURE_MANAGE
2014-02-27 12:59:14,341 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.intelligent.IaFlowAnalysisReport
2014-02-27 12:59:14,341 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.intelligent.IaFlowAnalysisReport on table IA_FLOW_ANALYSIS_REPORT
2014-02-27 12:59:14,357 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.sysmodel.SysAppDocList
2014-02-27 12:59:14,357 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.sysmodel.SysAppDocList on table sys_app_doc_list
2014-02-27 12:59:14,357 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.sts.Necelass
2014-02-27 12:59:14,357 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.sts.Necelass on table NECELASS
2014-02-27 12:59:14,357 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.sts.Clsms
2014-02-27 12:59:14,357 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.sts.Clsms on table CLSMS
2014-02-27 12:59:14,357 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.sts.Ccchload
2014-02-27 12:59:14,357 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.sts.Ccchload on table CCCHLOAD
2014-02-27 12:59:14,357 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.dbm.DbmResource
2014-02-27 12:59:14,357 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.dbm.DbmResource on table dbm_resource
2014-02-27 12:59:14,372 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.sts.Cellgprs2
2014-02-27 12:59:14,372 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.sts.Cellgprs2 on table CELLGPRS2
2014-02-27 12:59:14,372 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.cdd.BscCdd
2014-02-27 12:59:14,372 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.cdd.BscCdd on table BSC_CDD
2014-02-27 12:59:14,435 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.cy.servercenter.model.ghfz.GhfzPiAlgorithm
2014-02-27 12:59:14,435 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.cy.servercenter.model.ghfz.GhfzPiAlgorithm on table cy_pi_algorithm_houpinggu
2014-02-27 12:59:14,435 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.sts.Nicelass
2014-02-27 12:59:14,435 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.sts.Nicelass on table NICELASS
2014-02-27 12:59:14,435 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.dbm.DbmFjgl
2014-02-27 12:59:14,435 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.dbm.DbmFjgl on table dbm_fjgl
2014-02-27 12:59:14,435 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.sts.Necelhoex
2014-02-27 12:59:14,435 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.sts.Necelhoex on table NECELHOEX
2014-02-27 12:59:14,435 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.sts.Paging
2014-02-27 12:59:14,435 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.sts.Paging on table PAGING
2014-02-27 12:59:14,435 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.structure.CyStructRoadOrginalData
2014-02-27 12:59:14,435 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.structure.CyStructRoadOrginalData on table CY_STRUCT_ROAD_ORGINAL_DATA
2014-02-27 12:59:14,450 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.cy.servercenter.model.gis.CyMapZdytc
2014-02-27 12:59:14,450 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.cy.servercenter.model.gis.CyMapZdytc on table CY_MAP_ZDYTC
2014-02-27 12:59:14,450 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.sysmodel.DataExportLog
2014-02-27 12:59:14,450 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.sysmodel.DataExportLog on table data_export_log
2014-02-27 12:59:14,450 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.mfn.Mrrpwr
2014-02-27 12:59:14,450 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.mfn.Mrrpwr on table MRRPWR
2014-02-27 12:59:14,450 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.sts.Bscgprs
2014-02-27 12:59:14,450 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.sts.Bscgprs on table BSCGPRS
2014-02-27 12:59:14,466 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.cy.servercenter.model.ghfz.GhfzYwxdyzbsdyb
2014-02-27 12:59:14,466 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.cy.servercenter.model.ghfz.GhfzYwxdyzbsdyb on table CY_GHFZ_KJRSF_YWXDYZBSDYB
2014-02-27 12:59:14,466 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.sysmodel.SysAppDocDir
2014-02-27 12:59:14,466 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.sysmodel.SysAppDocDir on table sys_app_doc_dir
2014-02-27 12:59:14,466 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.sysmodel.SysAppExpression
2014-02-27 12:59:14,466 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.sysmodel.SysAppExpression on table sys_app_expression
2014-02-27 12:59:14,466 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.intelligent.IaFlowLine
2014-02-27 12:59:14,466 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.intelligent.IaFlowLine on table IA_FLOW_LINE
2014-02-27 12:59:14,466 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.structure.CyStructRoadAdmin
2014-02-27 12:59:14,466 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.structure.CyStructRoadAdmin on table CY_STRUCT_ROAD_ADMIN
2014-02-27 12:59:14,466 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.sts.Downtime
2014-02-27 12:59:14,466 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.sts.Downtime on table DOWNTIME
2014-02-27 12:59:14,466 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.sts.Celtchfp
2014-02-27 12:59:14,466 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.sts.Celtchfp on table CELTCHFP
2014-02-27 12:59:14,481 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.sysmodel.DbeSuyType
2014-02-27 12:59:14,481 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.sysmodel.DbeSuyType on table dbe_suy_type
2014-02-27 12:59:14,481 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.cdd.ChannelGroup
2014-02-27 12:59:14,481 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.cdd.ChannelGroup on table CHANNEL_GROUP
2014-02-27 12:59:14,481 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.cy.servercenter.model.ghfz.GhfzZdjsjgscb
2014-02-27 12:59:14,481 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.cy.servercenter.model.ghfz.GhfzZdjsjgscb on table CY_GHFZ_SGGHPG_ZDJSJGSCB
2014-02-27 12:59:14,481 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.sts.Loas
2014-02-27 12:59:14,481 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.sts.Loas on table LOAS
2014-02-27 12:59:14,497 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.dbm.DbmResourceSort
2014-02-27 12:59:14,497 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.dbm.DbmResourceSort on table dbm_resource_sort
2014-02-27 12:59:14,497 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.sts.Cltchhv2
2014-02-27 12:59:14,497 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.sts.Cltchhv2 on table CLTCHHV2
2014-02-27 12:59:14,497 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.cdd.ForeignCell
2014-02-27 12:59:14,497 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.cdd.ForeignCell on table FOREIGN_CELL
2014-02-27 12:59:14,497 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.sts.Cltchhv1
2014-02-27 12:59:14,497 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.sts.Cltchhv1 on table CLTCHHV1
2014-02-27 12:59:14,497 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.mfn.Mrrqual
2014-02-27 12:59:14,497 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.mfn.Mrrqual on table MRRQUAL
2014-02-27 12:59:14,513 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.cdd.Msc
2014-02-27 12:59:14,513 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.cdd.Msc on table MSC
2014-02-27 12:59:14,513 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.sts.Cltchhv3
2014-02-27 12:59:14,513 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.sts.Cltchhv3 on table CLTCHHV3
2014-02-27 12:59:14,513 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.sts.Lapd
2014-02-27 12:59:14,513 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.sts.Lapd on table LAPD
2014-02-27 12:59:14,513 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.mfn.Fasdata
2014-02-27 12:59:14,513 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.mfn.Fasdata on table FASDATA
2014-02-27 12:59:14,528 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.sts.Preemp
2014-02-27 12:59:14,528 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.sts.Preemp on table PREEMP
2014-02-27 12:59:14,528 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.dbm.DbmUsersResource
2014-02-27 12:59:14,528 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.dbm.DbmUsersResource on table dbm_users_resource
2014-02-27 12:59:14,528 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.sts.Randomacc
2014-02-27 12:59:14,528 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.sts.Randomacc on table RANDOMACC
2014-02-27 12:59:14,528 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.sts.Cellpag
2014-02-27 12:59:14,528 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.sts.Cellpag on table CELLPAG
2014-02-27 12:59:14,528 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.sts.Cellqoseg
2014-02-27 12:59:14,528 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.sts.Cellqoseg on table CELLQOSEG
2014-02-27 12:59:14,528 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.sysmodel.SysAppOperateLog
2014-02-27 12:59:14,528 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.sysmodel.SysAppOperateLog on table sys_app_operate_log
2014-02-27 12:59:14,544 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.sts.Celeventsc
2014-02-27 12:59:14,544 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.sts.Celeventsc on table CELEVENTSC
2014-02-27 12:59:14,544 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.sts.Nicelho
2014-02-27 12:59:14,544 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.sts.Nicelho on table NICELHO
2014-02-27 12:59:14,544 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.sts.Cellcchdr
2014-02-27 12:59:14,544 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.sts.Cellcchdr on table CELLCCHDR
2014-02-27 12:59:14,544 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.dbm.DbmYgxxgl
2014-02-27 12:59:14,544 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.dbm.DbmYgxxgl on table dbm_ygxxgl
2014-02-27 12:59:14,544 [main] INFO  org.hibernate.cfg.AnnotationBinder  - Binding entity from annotated class: com.kt.servercenter.model.sts.Ncellrel
2014-02-27 12:59:14,544 [main] INFO  org.hibernate.cfg.annotations.EntityBinder  - Bind entity com.kt.servercenter.model.sts.Ncellrel on table NCELLREL
2014-02-27 12:59:14,544 [main] INFO  org.hibernate.cfg.annotations.CollectionBinder  - Mapping collection: com.kt.servercenter.model.stat.Module.userModules -> CY_STAT_USER_MODULE
2014-02-27 12:59:14,544 [main] INFO  org.hibernate.cfg.annotations.CollectionBinder  - Mapping collection: com.kt.servercenter.model.intelligent.IaFlow.iaFlowLines -> IA_FLOW_LINE
2014-02-27 12:59:14,544 [main] INFO  org.hibernate.cfg.annotations.CollectionBinder  - Mapping collection: com.kt.servercenter.model.intelligent.IaFlow.iaFlowNodes -> IA_FLOW_NODE
2014-02-27 12:59:14,544 [main] INFO  org.hibernate.cfg.annotations.CollectionBinder  - Mapping collection: com.kt.servercenter.model.intelligent.IaFlow.iaFlowTypeRelations -> IA_FLOW_TYPE_RELATION
2014-02-27 12:59:14,544 [main] INFO  org.hibernate.cfg.annotations.CollectionBinder  - Mapping collection: com.kt.servercenter.model.intelligent.IaFlowType.iaFlowTypeRelations -> IA_FLOW_TYPE_RELATION
2014-02-27 12:59:14,544 [main] INFO  org.hibernate.cfg.annotations.CollectionBinder  - Mapping collection: com.kt.servercenter.model.dbm.DbmRole.dbmRoleResources -> dbm_role_resource
2014-02-27 12:59:14,544 [main] INFO  org.hibernate.cfg.annotations.CollectionBinder  - Mapping collection: com.kt.servercenter.model.dbm.DbmRole.dbmUsersRoles -> dbm_users_role
2014-02-27 12:59:14,544 [main] INFO  org.hibernate.cfg.annotations.CollectionBinder  - Mapping collection: com.cy.servercenter.model.gis.CyMapLaery.cyMapUsers -> CY_MAP_USER
2014-02-27 12:59:14,544 [main] INFO  org.hibernate.cfg.annotations.CollectionBinder  - Mapping collection: com.kt.servercenter.model.intelligent.IaFlowAnalysisReport.iaAnalysisReportDetails -> IA_ANALYSIS_REPORT_DETAIL
2014-02-27 12:59:14,544 [main] INFO  org.hibernate.cfg.annotations.CollectionBinder  - Mapping collection: com.kt.servercenter.model.dbm.DbmResource.dbmResources -> dbm_resource
2014-02-27 12:59:14,544 [main] INFO  org.hibernate.cfg.annotations.CollectionBinder  - Mapping collection: com.kt.servercenter.model.dbm.DbmResource.dbmRoleResources -> dbm_role_resource
2014-02-27 12:59:14,544 [main] INFO  org.hibernate.cfg.annotations.CollectionBinder  - Mapping collection: com.kt.servercenter.model.dbm.DbmResource.dbmUsersResources -> dbm_users_resource
2014-02-27 12:59:14,544 [main] INFO  org.hibernate.cfg.annotations.CollectionBinder  - Mapping collection: com.kt.servercenter.model.dbm.DbmResourceSort.dbmResources -> dbm_resource
2014-02-27 12:59:14,544 [main] INFO  org.hibernate.cfg.annotations.CollectionBinder  - Mapping collection: com.kt.servercenter.model.dbm.DbmYgxxgl.dbmUsersResources -> dbm_users_resource
2014-02-27 12:59:14,544 [main] INFO  org.hibernate.cfg.annotations.CollectionBinder  - Mapping collection: com.kt.servercenter.model.dbm.DbmYgxxgl.dbmUsersRoles -> dbm_users_role
2014-02-27 12:59:14,544 [main] INFO  org.hibernate.cfg.annotations.CollectionBinder  - Mapping collection: com.kt.servercenter.model.dbm.DbmYgxxgl.userModules -> CY_STAT_USER_MODULE
2014-02-27 12:59:14,559 [main] INFO  org.hibernate.cfg.AnnotationConfiguration  - Hibernate Validator not found: ignoring
2014-02-27 12:59:14,622 [main] INFO  org.hibernate.cfg.search.HibernateSearchEventListenerRegister  - Unable to find org.hibernate.search.event.FullTextIndexEventListener on the classpath. Hibernate Search is not enabled.
2014-02-27 12:59:14,637 [main] INFO  org.hibernate.connection.ConnectionProviderFactory  - Initializing connection provider: org.hibernate.ejb.connection.InjectedDataSourceConnectionProvider
2014-02-27 12:59:14,637 [main] INFO  org.hibernate.ejb.connection.InjectedDataSourceConnectionProvider  - Using provided datasource
2014-02-27 12:59:14,903 [main] INFO  org.hibernate.cfg.SettingsFactory  - RDBMS: Oracle, version: Oracle Database 11g Release 11.1.0.0.0 - Production
2014-02-27 12:59:14,903 [main] INFO  org.hibernate.cfg.SettingsFactory  - JDBC driver: Oracle JDBC driver, version: 10.2.0.1.0
2014-02-27 12:59:14,903 [main] INFO  org.hibernate.dialect.Dialect  - Using dialect: org.hibernate.dialect.OracleDialect
2014-02-27 12:59:14,903 [main] WARN  org.hibernate.dialect.Oracle9Dialect  - The Oracle9Dialect dialect has been deprecated; use either Oracle9iDialect or Oracle10gDialect instead
2014-02-27 12:59:14,903 [main] WARN  org.hibernate.dialect.OracleDialect  - The OracleDialect dialect has been deprecated; use Oracle8iDialect instead
2014-02-27 12:59:14,903 [main] INFO  org.hibernate.transaction.TransactionFactoryFactory  - Transaction strategy: org.hibernate.transaction.JDBCTransactionFactory
2014-02-27 12:59:14,918 [main] INFO  org.hibernate.transaction.TransactionManagerLookupFactory  - No TransactionManagerLookup configured (in JTA environment, use of read-write or transactional second-level cache is not recommended)
2014-02-27 12:59:14,918 [main] INFO  org.hibernate.cfg.SettingsFactory  - Automatic flush during beforeCompletion(): disabled
2014-02-27 12:59:14,918 [main] INFO  org.hibernate.cfg.SettingsFactory  - Automatic session close at end of transaction: disabled
2014-02-27 12:59:14,918 [main] INFO  org.hibernate.cfg.SettingsFactory  - JDBC batch size: 15
2014-02-27 12:59:14,918 [main] INFO  org.hibernate.cfg.SettingsFactory  - JDBC batch updates for versioned data: disabled
2014-02-27 12:59:14,918 [main] INFO  org.hibernate.cfg.SettingsFactory  - Scrollable result sets: enabled
2014-02-27 12:59:14,918 [main] INFO  org.hibernate.cfg.SettingsFactory  - JDBC3 getGeneratedKeys(): disabled
2014-02-27 12:59:14,918 [main] INFO  org.hibernate.cfg.SettingsFactory  - Connection release mode: auto
2014-02-27 12:59:14,918 [main] INFO  org.hibernate.cfg.SettingsFactory  - Maximum outer join fetch depth: 3
2014-02-27 12:59:14,918 [main] INFO  org.hibernate.cfg.SettingsFactory  - Default batch fetch size: 1
2014-02-27 12:59:14,918 [main] INFO  org.hibernate.cfg.SettingsFactory  - Generate SQL with comments: enabled
2014-02-27 12:59:14,918 [main] INFO  org.hibernate.cfg.SettingsFactory  - Order SQL updates by primary key: disabled
2014-02-27 12:59:14,918 [main] INFO  org.hibernate.cfg.SettingsFactory  - Order SQL inserts for batching: disabled
2014-02-27 12:59:14,918 [main] INFO  org.hibernate.cfg.SettingsFactory  - Query translator: org.hibernate.hql.ast.ASTQueryTranslatorFactory
2014-02-27 12:59:14,918 [main] INFO  org.hibernate.hql.ast.ASTQueryTranslatorFactory  - Using ASTQueryTranslatorFactory
2014-02-27 12:59:14,918 [main] INFO  org.hibernate.cfg.SettingsFactory  - Query language substitutions: {}
2014-02-27 12:59:14,918 [main] INFO  org.hibernate.cfg.SettingsFactory  - JPA-QL strict compliance: enabled
2014-02-27 12:59:14,918 [main] INFO  org.hibernate.cfg.SettingsFactory  - Second-level cache: enabled
2014-02-27 12:59:14,918 [main] INFO  org.hibernate.cfg.SettingsFactory  - Query cache: disabled
2014-02-27 12:59:14,918 [main] INFO  org.hibernate.cfg.SettingsFactory  - Cache region factory : org.hibernate.cache.impl.NoCachingRegionFactory
2014-02-27 12:59:14,918 [main] INFO  org.hibernate.cfg.SettingsFactory  - Optimize cache for minimal puts: disabled
2014-02-27 12:59:14,918 [main] INFO  org.hibernate.cfg.SettingsFactory  - Structured second-level cache entries: disabled
2014-02-27 12:59:14,918 [main] INFO  org.hibernate.cfg.SettingsFactory  - Statistics: enabled
2014-02-27 12:59:14,918 [main] INFO  org.hibernate.cfg.SettingsFactory  - Deleted entity synthetic identifier rollback: disabled
2014-02-27 12:59:14,918 [main] INFO  org.hibernate.cfg.SettingsFactory  - Default entity-mode: pojo
2014-02-27 12:59:14,918 [main] INFO  org.hibernate.cfg.SettingsFactory  - Named query checking : enabled
2014-02-27 12:59:14,918 [main] INFO  org.hibernate.impl.SessionFactoryImpl  - building session factory
2014-02-27 12:59:15,465 [main] INFO  org.hibernate.impl.SessionFactoryObjectFactory  - Not binding factory to JNDI, no JNDI name configured
执行方法评估功能util包max=2013-12-07 05:00:00,2013-12-06
2014-02-27 12:59:19,475 [Timer-0] INFO  org.quartz.utils.UpdateChecker  - New Quartz update(s) found: 1.8.5 [http://www.terracotta.org/kit/reflector?kitID=default&pageID=QuartzChangeLog]
2014-02-27 12:59:25,794 [main] INFO  com.opensymphony.xwork2.config.providers.XmlConfigurationProvider  - Parsing configuration file [struts-default.xml]
2014-02-27 12:59:25,827 [main] INFO  com.opensymphony.xwork2.config.providers.XmlConfigurationProvider  - Parsing configuration file [struts-plugin.xml]
2014-02-27 12:59:25,842 [main] INFO  com.opensymphony.xwork2.config.providers.XmlConfigurationProvider  - Parsing configuration file [struts.xml]
2014-02-27 12:59:25,842 [main] INFO  org.apache.struts2.config.BeanSelectionProvider  - Loading global messages from applicationMessage
2014-02-27 12:59:25,842 [main] INFO  org.apache.struts2.spring.StrutsSpringObjectFactory  - Initializing Struts-Spring integration...
2014-02-27 12:59:25,858 [main] INFO  com.opensymphony.xwork2.spring.SpringObjectFactory  - Setting autowire strategy to name
2014-02-27 12:59:25,858 [main] INFO  org.apache.struts2.spring.StrutsSpringObjectFactory  - ... initialized Struts-Spring integration successfully
2014-2-27 12:59:26 org.apache.coyote.http11.Http11Protocol start
信息: Starting Coyote HTTP/1.1 on http-8080
2014-2-27 12:59:27 org.apache.jk.common.ChannelSocket init
信息: JK: ajp13 listening on /0.0.0.0:8009
2014-2-27 12:59:27 org.apache.jk.server.JkMain start
信息: Jk running ID=0 time=0/16  config=null
2014-2-27 12:59:27 org.apache.catalina.startup.Catalina start
信息: Server startup in 24030 ms
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics