Здравствуйте,
Настроил jett 9.4, mysql 5.6 и sphinx 2.2.9 в Докере.
Подключаюсь из любого контейнера в консоли к Сфинксу, работает. А из приложения пишет
Constructor threw exception; nested exception is
java.sql.SQLNonTransientConnectionException: CLIENT_PLUGIN_AUTH is required
@Bean
public Connection sqlSphinx() throws ClassNotFoundException, SQLException {
Class.forName("com.mysql.jdbc.Driver");
Connection conn = DriverManager
.getConnection(
"jdbc:mysql://172.19.0.1:9306?characterEncoding=utf8&maxAllowedPacket=512000",
"", "");
return conn;
}