本文整理汇总了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;
}
}
示例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;
}
示例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;
}
示例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));
}
示例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();
}
示例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);
}
}
}
示例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;
}
示例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);
}
}
}
示例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;
}
示例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;
}
示例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);
}
}
}
示例12: getConnection
import org.mybatis.generator.config.JDBCConnectionConfiguration; //导入依赖的package包/类
private Connection getConnection(JDBCConnectionConfiguration jdbcConnectionConfiguration) throws SQLException {
Connection connection = ConnectionFactory.getInstance().getConnection(jdbcConnectionConfiguration);
return connection;
}
示例13: getConnection
import org.mybatis.generator.config.JDBCConnectionConfiguration; //导入依赖的package包/类
protected Connection getConnection(JDBCConnectionConfiguration jdbcConnectionConfiguration) throws SQLException {
Connection connection = ConnectionFactory.getInstance().getConnection(jdbcConnectionConfiguration);
return connection;
}