当前位置: 首页>>代码示例>>Java>>正文


Java JDBCConnectionConfiguration类代码示例

本文整理汇总了Java中org.mybatis.generator.config.JDBCConnectionConfiguration的典型用法代码示例。如果您正苦于以下问题:Java JDBCConnectionConfiguration类的具体用法?Java JDBCConnectionConfiguration怎么用?Java JDBCConnectionConfiguration使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。


JDBCConnectionConfiguration类属于org.mybatis.generator.config包,在下文中一共展示了JDBCConnectionConfiguration类的13个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: testGenerateInvalidConfigWithTwoConnectionSources

import org.mybatis.generator.config.JDBCConnectionConfiguration; //导入依赖的package包/类
@Test(expected=InvalidConfigurationException.class)
public void testGenerateInvalidConfigWithTwoConnectionSources() throws Exception {
    List<String> warnings = new ArrayList<String>();
    Configuration config = new Configuration();
    Context context = new Context(ModelType.HIERARCHICAL);
    context.setId("MyContext");
    context.setConnectionFactoryConfiguration(new ConnectionFactoryConfiguration());
    context.setJdbcConnectionConfiguration(new JDBCConnectionConfiguration());
    config.addContext(context);
    
    DefaultShellCallback shellCallback = new DefaultShellCallback(true);
    
    try {
        MyBatisGenerator myBatisGenerator = new MyBatisGenerator(config, shellCallback, warnings);
        myBatisGenerator.generate(null, null, null, false);
    } catch (InvalidConfigurationException e) {
        assertEquals(3, e.getErrors().size());
        throw e;
    }
}
 
开发者ID:bandaotixi,项目名称:generator_mybatis,代码行数:21,代码来源:MyBatisGeneratorTest.java

示例2: getConnection

import org.mybatis.generator.config.JDBCConnectionConfiguration; //导入依赖的package包/类
public Connection getConnection(JDBCConnectionConfiguration config)
        throws SQLException {
    Driver driver = getDriver(config);

    Properties props = new Properties();

    if (stringHasValue(config.getUserId())) {
        props.setProperty("user", config.getUserId()); //$NON-NLS-1$
    }

    if (stringHasValue(config.getPassword())) {
        props.setProperty("password", config.getPassword()); //$NON-NLS-1$
    }

    props.putAll(config.getProperties());

    Connection conn = driver.connect(config.getConnectionURL(), props);

    if (conn == null) {
        throw new SQLException(getString("RuntimeError.7")); //$NON-NLS-1$
    }

    return conn;
}
 
开发者ID:backkoms,项目名称:mybatis-generator-comments,代码行数:25,代码来源:ConnectionFactory.java

示例3: getConnection

import org.mybatis.generator.config.JDBCConnectionConfiguration; //导入依赖的package包/类
public Connection getConnection(JDBCConnectionConfiguration config)
        throws SQLException {
    Driver driver = getDriver(config);

    Properties props = new Properties();
    props.setProperty("remarksReporting", "true");
    if (stringHasValue(config.getUserId())) {
        props.setProperty("user", config.getUserId()); //$NON-NLS-1$
    }

    if (stringHasValue(config.getPassword())) {
        props.setProperty("password", config.getPassword()); //$NON-NLS-1$
    }

    props.putAll(config.getProperties());

    Connection conn = driver.connect(config.getConnectionURL(), props);

    if (conn == null) {
        throw new SQLException(getString("RuntimeError.7")); //$NON-NLS-1$
    }

    return conn;
}
 
开发者ID:funny5258,项目名称:autocode,代码行数:25,代码来源:ConnectionFactory.java

示例4: testChoosePagination

import org.mybatis.generator.config.JDBCConnectionConfiguration; //导入依赖的package包/类
@Test
public void testChoosePagination(){
    Context context = new Context(null);
    //测试PostgreSQL
    JDBCConnectionConfiguration jdbcConnectionConfiguration = new JDBCConnectionConfiguration();
    jdbcConnectionConfiguration.setConnectionURL("jdbc:postgresql://10.1.8.61:5432/DataManageSystem");
    context.setJdbcConnectionConfiguration(jdbcConnectionConfiguration);
    MyBatisGeneratorMojo mbgm = new MyBatisGeneratorMojo();
    mbgm.choosePaginationPlugin(context);
    assertTrue(checkPlugin(PostgreSQLPaginationPlugin.class,context));
    
    //测试MySql
    jdbcConnectionConfiguration.setConnectionURL("jdbc:mysql://localhost/web-monitor?useUnicode=true&characterEncoding=utf-8");
    context.setJdbcConnectionConfiguration(jdbcConnectionConfiguration);
    mbgm.choosePaginationPlugin(context);
    assertTrue(checkPlugin(MySqlPaginationPlugin.class,context));
}
 
开发者ID:beihaifeiwu,项目名称:dolphin,代码行数:18,代码来源:XmbgMojoUnitTest.java

示例5: JDBCConnectionFactory

import org.mybatis.generator.config.JDBCConnectionConfiguration; //导入依赖的package包/类
/**
 * This constructor is called when there is a JDBCConnectionConfiguration
 * specified in the configuration.
 * 
 * @param config
 */
public JDBCConnectionFactory(JDBCConnectionConfiguration config) {
    super();
    userId = config.getUserId();
    password = config.getPassword();
    connectionURL = config.getConnectionURL();
    driverClass = config.getDriverClass();
    otherProperties = config.getProperties();
}
 
开发者ID:bandaotixi,项目名称:generator_mybatis,代码行数:15,代码来源:JDBCConnectionFactory.java

示例6: parseJdbcConnection

import org.mybatis.generator.config.JDBCConnectionConfiguration; //导入依赖的package包/类
protected void parseJdbcConnection(Context context, Node node) {
    JDBCConnectionConfiguration jdbcConnectionConfiguration = new JDBCConnectionConfiguration();

    context.setJdbcConnectionConfiguration(jdbcConnectionConfiguration);

    Properties attributes = parseAttributes(node);
    String driverClass = attributes.getProperty("driverClass"); //$NON-NLS-1$
    String connectionURL = attributes.getProperty("connectionURL"); //$NON-NLS-1$
    String userId = attributes.getProperty("userId"); //$NON-NLS-1$
    String password = attributes.getProperty("password"); //$NON-NLS-1$

    jdbcConnectionConfiguration.setDriverClass(driverClass);
    jdbcConnectionConfiguration.setConnectionURL(connectionURL);

    if (stringHasValue(userId)) {
        jdbcConnectionConfiguration.setUserId(userId);
    }

    if (stringHasValue(password)) {
        jdbcConnectionConfiguration.setPassword(password);
    }

    NodeList nodeList = node.getChildNodes();
    for (int i = 0; i < nodeList.getLength(); i++) {
        Node childNode = nodeList.item(i);

        if (childNode.getNodeType() != Node.ELEMENT_NODE) {
            continue;
        }

        if ("property".equals(childNode.getNodeName())) { //$NON-NLS-1$
            parseProperty(jdbcConnectionConfiguration, childNode);
        }
    }
}
 
开发者ID:bandaotixi,项目名称:generator_mybatis,代码行数:36,代码来源:MyBatisGeneratorConfigurationParser.java

示例7: getDriver

import org.mybatis.generator.config.JDBCConnectionConfiguration; //导入依赖的package包/类
private Driver getDriver(JDBCConnectionConfiguration connectionInformation) {
    String driverClass = connectionInformation.getDriverClass();
    Driver driver;

    try {
        Class<?> clazz = ObjectFactory.externalClassForName(driverClass);
        driver = (Driver) clazz.newInstance();
    } catch (Exception e) {
        throw new RuntimeException(getString("RuntimeError.8"), e); //$NON-NLS-1$
    }

    return driver;
}
 
开发者ID:backkoms,项目名称:mybatis-generator-comments,代码行数:14,代码来源:ConnectionFactory.java

示例8: parseJdbcConnection

import org.mybatis.generator.config.JDBCConnectionConfiguration; //导入依赖的package包/类
private void parseJdbcConnection(Context context, Node node) {
    JDBCConnectionConfiguration jdbcConnectionConfiguration = new JDBCConnectionConfiguration();

    context.setJdbcConnectionConfiguration(jdbcConnectionConfiguration);

    Properties attributes = parseAttributes(node);
    String driverClass = attributes.getProperty("driverClass"); //$NON-NLS-1$
    String connectionURL = attributes.getProperty("connectionURL"); //$NON-NLS-1$
    String userId = attributes.getProperty("userId"); //$NON-NLS-1$
    String password = attributes.getProperty("password"); //$NON-NLS-1$

    jdbcConnectionConfiguration.setDriverClass(driverClass);
    jdbcConnectionConfiguration.setConnectionURL(connectionURL);

    if (stringHasValue(userId)) {
        jdbcConnectionConfiguration.setUserId(userId);
    }

    if (stringHasValue(password)) {
        jdbcConnectionConfiguration.setPassword(password);
    }

    NodeList nodeList = node.getChildNodes();
    for (int i = 0; i < nodeList.getLength(); i++) {
        Node childNode = nodeList.item(i);

        if (childNode.getNodeType() != Node.ELEMENT_NODE) {
            continue;
        }

        if ("property".equals(childNode.getNodeName())) { //$NON-NLS-1$
            parseProperty(jdbcConnectionConfiguration, childNode);
        }
    }
}
 
开发者ID:backkoms,项目名称:mybatis-generator-comments,代码行数:36,代码来源:IbatorConfigurationParser.java

示例9: getConnection

import org.mybatis.generator.config.JDBCConnectionConfiguration; //导入依赖的package包/类
public Connection getConnection(JDBCConnectionConfiguration config) throws SQLException {
	Driver driver = getDriver(config);

	Properties props = new Properties();

	if (stringHasValue(config.getUserId())) {
		props.setProperty("user", config.getUserId()); //$NON-NLS-1$
	}

	if (stringHasValue(config.getPassword())) {
		props.setProperty("password", config.getPassword()); //$NON-NLS-1$
	}

	if (stringHasValue(config.getRemarksReporting())) {
		props.setProperty("remarksReporting", config.getRemarksReporting()); //$NON-NLS-1$
	} else {
		props.setProperty("remarksReporting", "true"); //$NON-NLS-1$
	}

	props.putAll(config.getProperties());

	Connection conn = driver.connect(config.getConnectionURL(), props);

	if (conn == null) {
		throw new SQLException(getString("RuntimeError.7")); //$NON-NLS-1$
	}

	return conn;
}
 
开发者ID:fnyexx,项目名称:mybator,代码行数:30,代码来源:ConnectionFactory.java

示例10: getDriver

import org.mybatis.generator.config.JDBCConnectionConfiguration; //导入依赖的package包/类
private Driver getDriver(JDBCConnectionConfiguration connectionInformation) {
	String driverClass = connectionInformation.getDriverClass();
	Driver driver;

	try {
		Class<?> clazz = ObjectFactory.externalClassForName(driverClass);
		driver = (Driver) clazz.newInstance();
	} catch (Exception e) {
		throw new RuntimeException(getString("RuntimeError.8"), e); //$NON-NLS-1$
	}

	return driver;
}
 
开发者ID:fnyexx,项目名称:mybator,代码行数:14,代码来源:ConnectionFactory.java

示例11: parseJdbcConnection

import org.mybatis.generator.config.JDBCConnectionConfiguration; //导入依赖的package包/类
private void parseJdbcConnection(Context context, Node node) {
	JDBCConnectionConfiguration jdbcConnectionConfiguration = new JDBCConnectionConfiguration();

	context.setJdbcConnectionConfiguration(jdbcConnectionConfiguration);

	Properties attributes = parseAttributes(node);
	String driverClass = attributes.getProperty("driverClass"); //$NON-NLS-1$
	String connectionURL = attributes.getProperty("connectionURL"); //$NON-NLS-1$
	String userId = attributes.getProperty("userId"); //$NON-NLS-1$
	String password = attributes.getProperty("password"); //$NON-NLS-1$

	jdbcConnectionConfiguration.setDriverClass(driverClass);
	jdbcConnectionConfiguration.setConnectionURL(connectionURL);

	if (stringHasValue(userId)) {
		jdbcConnectionConfiguration.setUserId(userId);
	}

	if (stringHasValue(password)) {
		jdbcConnectionConfiguration.setPassword(password);
	}

	NodeList nodeList = node.getChildNodes();
	for (int i = 0; i < nodeList.getLength(); i++) {
		Node childNode = nodeList.item(i);

		if (childNode.getNodeType() != Node.ELEMENT_NODE) {
			continue;
		}

		if ("property".equals(childNode.getNodeName())) { //$NON-NLS-1$
			parseProperty(jdbcConnectionConfiguration, childNode);
		}
	}
}
 
开发者ID:fnyexx,项目名称:mybator,代码行数:36,代码来源:IbatorConfigurationParser.java

示例12: getConnection

import org.mybatis.generator.config.JDBCConnectionConfiguration; //导入依赖的package包/类
private Connection getConnection(JDBCConnectionConfiguration jdbcConnectionConfiguration) throws SQLException {
    Connection connection = ConnectionFactory.getInstance().getConnection(jdbcConnectionConfiguration);
    return connection;
}
 
开发者ID:funny5258,项目名称:autocode,代码行数:5,代码来源:CodeServiceImpl.java

示例13: getConnection

import org.mybatis.generator.config.JDBCConnectionConfiguration; //导入依赖的package包/类
protected Connection getConnection(JDBCConnectionConfiguration jdbcConnectionConfiguration) throws SQLException {
    Connection connection = ConnectionFactory.getInstance().getConnection(jdbcConnectionConfiguration);
    return connection;
}
 
开发者ID:funny5258,项目名称:autocode,代码行数:5,代码来源:GeneralCodeService.java


注:本文中的org.mybatis.generator.config.JDBCConnectionConfiguration类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。