com.mysql.cj.exceptions.InvalidConnectionAttributeException Java Examples
The following examples show how to use
com.mysql.cj.exceptions.InvalidConnectionAttributeException.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: ConnectionUrl.java From lams with GNU General Public License v2.0 | 6 votes |
/** * Returns a map containing the properties read from the given configuration files. Multiple files can be referenced using a comma as separator. * * @param configFiles * the list of the configuration files to read * @return the map containing all the properties read */ public static Properties getPropertiesFromConfigFiles(String configFiles) { Properties configProps = new Properties(); for (String configFile : configFiles.split(",")) { try (InputStream configAsStream = ConnectionUrl.class.getResourceAsStream("/com/mysql/cj/configurations/" + configFile + ".properties")) { if (configAsStream == null) { throw ExceptionFactory.createException(InvalidConnectionAttributeException.class, Messages.getString("ConnectionString.10", new Object[] { configFile })); } configProps.load(configAsStream); } catch (IOException e) { throw ExceptionFactory.createException(InvalidConnectionAttributeException.class, Messages.getString("ConnectionString.11", new Object[] { configFile }), e); } } return configProps; }
Example #2
Source File: ConnectionUrl.java From FoxTelem with GNU General Public License v3.0 | 6 votes |
/** * Returns a map containing the properties read from the given configuration files. Multiple files can be referenced using a comma as separator. * * @param configFiles * the list of the configuration files to read * @return the map containing all the properties read */ public static Properties getPropertiesFromConfigFiles(String configFiles) { Properties configProps = new Properties(); for (String configFile : configFiles.split(",")) { try (InputStream configAsStream = ConnectionUrl.class.getResourceAsStream("/com/mysql/cj/configurations/" + configFile + ".properties")) { if (configAsStream == null) { throw ExceptionFactory.createException(InvalidConnectionAttributeException.class, Messages.getString("ConnectionString.10", new Object[] { configFile })); } configProps.load(configAsStream); } catch (IOException e) { throw ExceptionFactory.createException(InvalidConnectionAttributeException.class, Messages.getString("ConnectionString.11", new Object[] { configFile }), e); } } return configProps; }
Example #3
Source File: ConnectionTest.java From FoxTelem with GNU General Public License v3.0 | 6 votes |
public void testCannedConfigs() throws Exception { Properties cannedProps = ConnectionUrl.getConnectionUrlInstance("jdbc:mysql:///?useConfigs=clusterBase", null).getConnectionArgumentsAsProperties(); assertTrue("true".equals(cannedProps.getProperty(PropertyKey.autoReconnect.getKeyName()))); assertTrue("false".equals(cannedProps.getProperty(PropertyKey.failOverReadOnly.getKeyName()))); // this will fail, but we test that too assertThrows(InvalidConnectionAttributeException.class, "Can't find configuration template named 'clusterBase2'", new Callable<Void>() { public Void call() throws Exception { try { ConnectionUrl.getConnectionUrlInstance("jdbc:mysql:///?useConfigs=clusterBase,clusterBase2", null); return null; } catch (Throwable t) { t.printStackTrace(); throw t; } } }); }
Example #4
Source File: MySQLJDBCReflections.java From quarkus with Apache License 2.0 | 5 votes |
@BuildStep void registerExceptionsForReflection(BuildProducer<ReflectiveClassBuildItem> reflectiveClass) { reflectiveClass.produce(new ReflectiveClassBuildItem(false, false, CJCommunicationsException.class.getName())); reflectiveClass .produce(new ReflectiveClassBuildItem(false, false, CJConnectionFeatureNotAvailableException.class.getName())); reflectiveClass.produce(new ReflectiveClassBuildItem(false, false, CJOperationNotSupportedException.class.getName())); reflectiveClass.produce(new ReflectiveClassBuildItem(false, false, CJTimeoutException.class.getName())); reflectiveClass.produce(new ReflectiveClassBuildItem(false, false, CJPacketTooBigException.class.getName())); reflectiveClass.produce(new ReflectiveClassBuildItem(false, false, CJException.class.getName())); reflectiveClass.produce(new ReflectiveClassBuildItem(false, false, AssertionFailedException.class.getName())); reflectiveClass.produce(new ReflectiveClassBuildItem(false, false, CJOperationNotSupportedException.class.getName())); reflectiveClass.produce(new ReflectiveClassBuildItem(false, false, ClosedOnExpiredPasswordException.class.getName())); reflectiveClass.produce(new ReflectiveClassBuildItem(false, false, ConnectionIsClosedException.class.getName())); reflectiveClass.produce(new ReflectiveClassBuildItem(false, false, DataConversionException.class.getName())); reflectiveClass.produce(new ReflectiveClassBuildItem(false, false, DataReadException.class.getName())); reflectiveClass.produce(new ReflectiveClassBuildItem(false, false, DataTruncationException.class.getName())); reflectiveClass.produce(new ReflectiveClassBuildItem(false, false, DeadlockTimeoutRollbackMarker.class.getName())); reflectiveClass.produce(new ReflectiveClassBuildItem(false, false, FeatureNotAvailableException.class.getName())); reflectiveClass .produce(new ReflectiveClassBuildItem(false, false, InvalidConnectionAttributeException.class.getName())); reflectiveClass.produce(new ReflectiveClassBuildItem(false, false, NumberOutOfRange.class.getName())); reflectiveClass.produce(new ReflectiveClassBuildItem(false, false, OperationCancelledException.class.getName())); reflectiveClass.produce(new ReflectiveClassBuildItem(false, false, PasswordExpiredException.class.getName())); reflectiveClass.produce(new ReflectiveClassBuildItem(false, false, PropertyNotModifiableException.class.getName())); reflectiveClass.produce(new ReflectiveClassBuildItem(false, false, RSAException.class.getName())); reflectiveClass.produce(new ReflectiveClassBuildItem(false, false, SSLParamsException.class.getName())); reflectiveClass.produce(new ReflectiveClassBuildItem(false, false, StatementIsClosedException.class.getName())); reflectiveClass.produce(new ReflectiveClassBuildItem(false, false, StreamingNotifiable.class.getName())); reflectiveClass.produce(new ReflectiveClassBuildItem(false, false, UnableToConnectException.class.getName())); reflectiveClass .produce(new ReflectiveClassBuildItem(false, false, UnsupportedConnectionStringException.class.getName())); reflectiveClass.produce(new ReflectiveClassBuildItem(false, false, WrongArgumentException.class.getName())); reflectiveClass.produce(new ReflectiveClassBuildItem(true, true, "com.mysql.cj.jdbc.MysqlXAException")); reflectiveClass .produce(new ReflectiveClassBuildItem(false, false, StandardLoadBalanceExceptionChecker.class.getName())); reflectiveClass.produce(new ReflectiveClassBuildItem(false, false, NdbLoadBalanceExceptionChecker.class.getName())); }
Example #5
Source File: TimeUtil.java From lams with GNU General Public License v2.0 | 5 votes |
/** * Returns the 'official' Java timezone name for the given timezone * * @param timezoneStr * the 'common' timezone name * @param exceptionInterceptor * exception interceptor * * @return the Java timezone name for the given timezone */ public static String getCanonicalTimezone(String timezoneStr, ExceptionInterceptor exceptionInterceptor) { if (timezoneStr == null) { return null; } timezoneStr = timezoneStr.trim(); // handle '+/-hh:mm' form ... if (timezoneStr.length() > 2) { if ((timezoneStr.charAt(0) == '+' || timezoneStr.charAt(0) == '-') && Character.isDigit(timezoneStr.charAt(1))) { return "GMT" + timezoneStr; } } synchronized (TimeUtil.class) { if (timeZoneMappings == null) { loadTimeZoneMappings(exceptionInterceptor); } } String canonicalTz; if ((canonicalTz = timeZoneMappings.getProperty(timezoneStr)) != null) { return canonicalTz; } throw ExceptionFactory.createException(InvalidConnectionAttributeException.class, Messages.getString("TimeUtil.UnrecognizedTimezoneId", new Object[] { timezoneStr }), exceptionInterceptor); }
Example #6
Source File: SessionFactory.java From lams with GNU General Public License v2.0 | 5 votes |
/** * Parses the connection string URL. * * @param url * the connection string URL. * @return a {@link ConnectionUrl} instance containing the URL components. */ private ConnectionUrl parseUrl(String url) { ConnectionUrl connUrl = ConnectionUrl.getConnectionUrlInstance(url, null); if (connUrl.getType() != ConnectionUrl.Type.XDEVAPI_SESSION) { throw ExceptionFactory.createException(InvalidConnectionAttributeException.class, "Initialization via URL failed for \"" + url + "\""); } return connUrl; }
Example #7
Source File: ConnectionUrl.java From lams with GNU General Public License v2.0 | 5 votes |
/** * Sets up the {@link ConnectionPropertiesTransform} if one was provided. */ protected void setupPropertiesTransformer() { String propertiesTransformClassName = this.properties.get(PropertyDefinitions.PNAME_propertiesTransform); if (!isNullOrEmpty(propertiesTransformClassName)) { try { this.propertiesTransformer = (ConnectionPropertiesTransform) Class.forName(propertiesTransformClassName).newInstance(); } catch (InstantiationException | IllegalAccessException | ClassNotFoundException | CJException e) { throw ExceptionFactory.createException(InvalidConnectionAttributeException.class, Messages.getString("ConnectionString.9", new Object[] { propertiesTransformClassName, e.toString() }), e); } } }
Example #8
Source File: SessionFactory.java From FoxTelem with GNU General Public License v3.0 | 5 votes |
/** * Parses the connection string URL. * * @param url * the connection string URL. * @return a {@link ConnectionUrl} instance containing the URL components. */ protected ConnectionUrl parseUrl(String url) { ConnectionUrl connUrl = ConnectionUrl.getConnectionUrlInstance(url, null); if (connUrl == null || connUrl.getType() != ConnectionUrl.Type.XDEVAPI_SESSION) { throw ExceptionFactory.createException(InvalidConnectionAttributeException.class, "Initialization via URL failed for \"" + url + "\""); } return connUrl; }
Example #9
Source File: TimeUtil.java From FoxTelem with GNU General Public License v3.0 | 5 votes |
/** * Returns the 'official' Java timezone name for the given timezone * * @param timezoneStr * the 'common' timezone name * @param exceptionInterceptor * exception interceptor * * @return the Java timezone name for the given timezone */ public static String getCanonicalTimezone(String timezoneStr, ExceptionInterceptor exceptionInterceptor) { if (timezoneStr == null) { return null; } timezoneStr = timezoneStr.trim(); // handle '+/-hh:mm' form ... if (timezoneStr.length() > 2) { if ((timezoneStr.charAt(0) == '+' || timezoneStr.charAt(0) == '-') && Character.isDigit(timezoneStr.charAt(1))) { return "GMT" + timezoneStr; } } synchronized (TimeUtil.class) { if (timeZoneMappings == null) { loadTimeZoneMappings(exceptionInterceptor); } } String canonicalTz; if ((canonicalTz = timeZoneMappings.getProperty(timezoneStr)) != null) { return canonicalTz; } throw ExceptionFactory.createException(InvalidConnectionAttributeException.class, Messages.getString("TimeUtil.UnrecognizedTimezoneId", new Object[] { timezoneStr }), exceptionInterceptor); }
Example #10
Source File: ConnectionUrl.java From FoxTelem with GNU General Public License v3.0 | 5 votes |
/** * Sets up the {@link ConnectionPropertiesTransform} if one was provided. */ protected void setupPropertiesTransformer() { String propertiesTransformClassName = this.properties.get(PropertyKey.propertiesTransform.getKeyName()); if (!isNullOrEmpty(propertiesTransformClassName)) { try { this.propertiesTransformer = (ConnectionPropertiesTransform) Class.forName(propertiesTransformClassName).newInstance(); } catch (InstantiationException | IllegalAccessException | ClassNotFoundException | CJException e) { throw ExceptionFactory.createException(InvalidConnectionAttributeException.class, Messages.getString("ConnectionString.9", new Object[] { propertiesTransformClassName, e.toString() }), e); } } }
Example #11
Source File: SQLExceptionsMapping.java From lams with GNU General Public License v2.0 | 4 votes |
public static SQLException translateException(Throwable ex, ExceptionInterceptor interceptor) { if (ex instanceof SQLException) { return (SQLException) ex; } else if (ex.getCause() != null && ex.getCause() instanceof SQLException) { return (SQLException) ex.getCause(); } else if (ex instanceof CJCommunicationsException) { return SQLError.createCommunicationsException(ex.getMessage(), ex, interceptor); } else if (ex instanceof CJConnectionFeatureNotAvailableException) { return new ConnectionFeatureNotAvailableException(ex.getMessage(), ex); } else if (ex instanceof SSLParamsException) { return SQLError.createSQLException(ex.getMessage(), MysqlErrorNumbers.SQL_STATE_BAD_SSL_PARAMS, 0, false, ex, interceptor); } else if (ex instanceof ConnectionIsClosedException) { return SQLError.createSQLException(ex.getMessage(), MysqlErrorNumbers.SQL_STATE_CONNECTION_NOT_OPEN, ex, interceptor); } else if (ex instanceof InvalidConnectionAttributeException) { return SQLError.createSQLException(ex.getMessage(), MysqlErrorNumbers.SQL_STATE_INVALID_CONNECTION_ATTRIBUTE, ex, interceptor); } else if (ex instanceof UnableToConnectException) { return SQLError.createSQLException(ex.getMessage(), MysqlErrorNumbers.SQL_STATE_UNABLE_TO_CONNECT_TO_DATASOURCE, ex, interceptor); } else if (ex instanceof StatementIsClosedException) { return SQLError.createSQLException(ex.getMessage(), MysqlErrorNumbers.SQL_STATE_ILLEGAL_ARGUMENT, ex, interceptor); } else if (ex instanceof WrongArgumentException) { return SQLError.createSQLException(ex.getMessage(), MysqlErrorNumbers.SQL_STATE_ILLEGAL_ARGUMENT, ex, interceptor); } else if (ex instanceof StringIndexOutOfBoundsException) { return SQLError.createSQLException(ex.getMessage(), MysqlErrorNumbers.SQL_STATE_ILLEGAL_ARGUMENT, ex, interceptor); } else if (ex instanceof NumberOutOfRange) { // must come before DataReadException as it's more specific return SQLError.createSQLException(ex.getMessage(), MysqlErrorNumbers.SQL_STATE_NUMERIC_VALUE_OUT_OF_RANGE, ex, interceptor); } else if (ex instanceof DataConversionException) { // must come before DataReadException as it's more specific return SQLError.createSQLException(ex.getMessage(), MysqlErrorNumbers.SQL_STATE_INVALID_CHARACTER_VALUE_FOR_CAST, ex, interceptor); } else if (ex instanceof DataReadException) { return SQLError.createSQLException(ex.getMessage(), MysqlErrorNumbers.SQL_STATE_ILLEGAL_ARGUMENT, ex, interceptor); } else if (ex instanceof DataTruncationException) { return new MysqlDataTruncation(((DataTruncationException) ex).getMessage(), ((DataTruncationException) ex).getIndex(), ((DataTruncationException) ex).isParameter(), ((DataTruncationException) ex).isRead(), ((DataTruncationException) ex).getDataSize(), ((DataTruncationException) ex).getTransferSize(), ((DataTruncationException) ex).getVendorCode()); } else if (ex instanceof CJPacketTooBigException) { return new PacketTooBigException(ex.getMessage()); } else if (ex instanceof OperationCancelledException) { return new MySQLStatementCancelledException(ex.getMessage()); } else if (ex instanceof CJTimeoutException) { return new MySQLTimeoutException(ex.getMessage()); } else if (ex instanceof CJOperationNotSupportedException) { return new OperationNotSupportedException(ex.getMessage()); } else if (ex instanceof UnsupportedOperationException) { return new OperationNotSupportedException(ex.getMessage()); } else if (ex instanceof CJException) { return SQLError.createSQLException(ex.getMessage(), ((CJException) ex).getSQLState(), ((CJException) ex).getVendorCode(), ((CJException) ex).isTransient(), interceptor); } else { return SQLError.createSQLException(ex.getMessage(), MysqlErrorNumbers.SQL_STATE_GENERAL_ERROR, ex, interceptor); } }
Example #12
Source File: SQLExceptionsMapping.java From FoxTelem with GNU General Public License v3.0 | 4 votes |
public static SQLException translateException(Throwable ex, ExceptionInterceptor interceptor) { if (ex instanceof SQLException) { return (SQLException) ex; } else if (ex.getCause() != null && ex.getCause() instanceof SQLException) { return (SQLException) ex.getCause(); } else if (ex instanceof CJCommunicationsException) { return SQLError.createCommunicationsException(ex.getMessage(), ex, interceptor); } else if (ex instanceof CJConnectionFeatureNotAvailableException) { return new ConnectionFeatureNotAvailableException(ex.getMessage(), ex); } else if (ex instanceof SSLParamsException) { return SQLError.createSQLException(ex.getMessage(), MysqlErrorNumbers.SQL_STATE_BAD_SSL_PARAMS, 0, false, ex, interceptor); } else if (ex instanceof ConnectionIsClosedException) { return SQLError.createSQLException(ex.getMessage(), MysqlErrorNumbers.SQL_STATE_CONNECTION_NOT_OPEN, ex, interceptor); } else if (ex instanceof InvalidConnectionAttributeException) { return SQLError.createSQLException(ex.getMessage(), MysqlErrorNumbers.SQL_STATE_INVALID_CONNECTION_ATTRIBUTE, ex, interceptor); } else if (ex instanceof UnableToConnectException) { return SQLError.createSQLException(ex.getMessage(), MysqlErrorNumbers.SQL_STATE_UNABLE_TO_CONNECT_TO_DATASOURCE, ex, interceptor); } else if (ex instanceof StatementIsClosedException) { return SQLError.createSQLException(ex.getMessage(), MysqlErrorNumbers.SQL_STATE_ILLEGAL_ARGUMENT, ex, interceptor); } else if (ex instanceof WrongArgumentException) { return SQLError.createSQLException(ex.getMessage(), MysqlErrorNumbers.SQL_STATE_ILLEGAL_ARGUMENT, ex, interceptor); } else if (ex instanceof StringIndexOutOfBoundsException) { return SQLError.createSQLException(ex.getMessage(), MysqlErrorNumbers.SQL_STATE_ILLEGAL_ARGUMENT, ex, interceptor); } else if (ex instanceof NumberOutOfRange) { // must come before DataReadException as it's more specific return SQLError.createSQLException(ex.getMessage(), MysqlErrorNumbers.SQL_STATE_NUMERIC_VALUE_OUT_OF_RANGE, ex, interceptor); } else if (ex instanceof DataConversionException) { // must come before DataReadException as it's more specific return SQLError.createSQLException(ex.getMessage(), MysqlErrorNumbers.SQL_STATE_INVALID_CHARACTER_VALUE_FOR_CAST, ex, interceptor); } else if (ex instanceof DataReadException) { return SQLError.createSQLException(ex.getMessage(), MysqlErrorNumbers.SQL_STATE_ILLEGAL_ARGUMENT, ex, interceptor); } else if (ex instanceof DataTruncationException) { return new MysqlDataTruncation(((DataTruncationException) ex).getMessage(), ((DataTruncationException) ex).getIndex(), ((DataTruncationException) ex).isParameter(), ((DataTruncationException) ex).isRead(), ((DataTruncationException) ex).getDataSize(), ((DataTruncationException) ex).getTransferSize(), ((DataTruncationException) ex).getVendorCode()); } else if (ex instanceof CJPacketTooBigException) { return new PacketTooBigException(ex.getMessage()); } else if (ex instanceof OperationCancelledException) { return new MySQLStatementCancelledException(ex.getMessage()); } else if (ex instanceof CJTimeoutException) { return new MySQLTimeoutException(ex.getMessage()); } else if (ex instanceof CJOperationNotSupportedException) { return new OperationNotSupportedException(ex.getMessage()); } else if (ex instanceof UnsupportedOperationException) { return new OperationNotSupportedException(ex.getMessage()); } else if (ex instanceof CJException) { return SQLError.createSQLException(ex.getMessage(), ((CJException) ex).getSQLState(), ((CJException) ex).getVendorCode(), ((CJException) ex).isTransient(), interceptor); } else { return SQLError.createSQLException(ex.getMessage(), MysqlErrorNumbers.SQL_STATE_GENERAL_ERROR, ex, interceptor); } }