codemakerconst.java

来自「生成与Oracle相关的Ibatis相关配置文件及Java源码」· Java 代码 · 共 44 行

JAVA
44
字号
/*
 * Copyright (c) 2008 胜利油田胜利软件有限责任公司. All rights reserved.
 */
package com.victorysoft.code.base;

/**
 * 
 * @author 于景洋
 * @newtime Oct 23, 2008,10:07:12 AM
 * @version 1.0
 * @see     
 * @since   JDK 1.5.0
 */
public class CodeMakerConst {
	/**
	 * Oracle9i数据库主机地址
	 */
	public static String hostname = "127.0.0.1";
	/**
	 * Oracle9i数据库SID
	 */
	public static String database = "orabase";
	/**
	 * Oracle9i数据库用户名
	 */
	public static String username = "hyzhgis";
	/**
	 * Oracle9i数据库密码
	 */
	public static String password = "hyzhgis";
	
	public static String project="project";
	
	public static String basedir="D:\\";
	
	public static boolean isGenerateIbatis = true;
	
	public static boolean isGenerateSpring = true;
	
	public static boolean isGenerateFactory = true;
	
	public static boolean isGenerateLog4j = true;
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?