mirror of
https://github.com/AuthMe/AuthMeReloaded.git
synced 2024-11-09 04:02:10 +01:00
Fix hikari
This commit is contained in:
parent
639a0482c2
commit
d4cf739081
@ -7,7 +7,6 @@ import java.io.IOException;
|
||||
import java.io.InputStream;
|
||||
import java.io.InputStreamReader;
|
||||
import java.io.OutputStream;
|
||||
import java.lang.reflect.InvocationTargetException;
|
||||
import java.net.URL;
|
||||
import java.net.URLConnection;
|
||||
import java.sql.SQLException;
|
||||
|
@ -124,7 +124,6 @@ public class MySQL implements DataSource {
|
||||
HikariConfig config = new HikariConfig();
|
||||
config.setPoolName("AuthMeMYSQLPool");
|
||||
config.setDataSourceClassName("com.mysql.jdbc.jdbc2.optional.MysqlConnectionPoolDataSource");
|
||||
config.setDriverClassName("com.mysql.jdbc.Driver");
|
||||
config.setJdbcUrl("jdbc:mysql://" + this.host + ":" + this.port + "/" + this.database);
|
||||
config.setUsername(this.username);
|
||||
config.setPassword(this.password);
|
||||
|
@ -115,14 +115,13 @@ public class SQLite_HIKARI implements DataSource {
|
||||
|
||||
@Override
|
||||
public DataSourceType getType() {
|
||||
return DataSourceType.SQLITE;
|
||||
return DataSourceType.SQLITEHIKARI;
|
||||
}
|
||||
|
||||
private synchronized void setConnectionArguments()
|
||||
throws ClassNotFoundException, IllegalArgumentException {
|
||||
HikariConfig config = new HikariConfig();
|
||||
config.setPoolName("AuthMeSQLitePool");
|
||||
config.setDriverClassName("org.sqlite.JDBC");
|
||||
config.setDataSourceClassName("org.sqlite.javax.SQLiteConnectionPoolDataSource");
|
||||
config.setJdbcUrl("jdbc:sqlite:plugins/AuthMe/" + database + ".db");
|
||||
config.setInitializationFailFast(true); // Don't start the plugin if the database is unavariable
|
||||
|
@ -3,10 +3,8 @@ package fr.xephi.authme.listener;
|
||||
import java.io.ByteArrayOutputStream;
|
||||
import java.io.DataOutputStream;
|
||||
import java.io.IOException;
|
||||
import java.lang.reflect.InvocationTargetException;
|
||||
import java.util.ArrayList;
|
||||
import java.util.Arrays;
|
||||
import java.util.Collection;
|
||||
import java.util.List;
|
||||
import java.util.concurrent.ConcurrentHashMap;
|
||||
import java.util.regex.PatternSyntaxException;
|
||||
|
@ -39,26 +39,6 @@ DataSource:
|
||||
mySQLlastlocWorld: world
|
||||
# Column for RealName
|
||||
mySQLRealName: realname
|
||||
GroupOptions:
|
||||
# if you want to set up a particulary Permission Group for
|
||||
# users that arent registered yet. Pay attention this option
|
||||
# is casesensitive!
|
||||
# Example: UnregisteredPlayerGroup: GuestUser
|
||||
UnregisteredPlayerGroup: ''
|
||||
# Same as UnregisteredGroup if u want to set a switch
|
||||
# between unregistered and registered player group
|
||||
# set the group name below
|
||||
RegisteredPlayerGroup: ''
|
||||
# with this option you can add specified permission onJoin
|
||||
# like for example LoginBonus from another plugins, AuthMe
|
||||
# will check onJoin if player has that permissions in his Group
|
||||
# if true it add a temporany permissions to that user. This Field
|
||||
# is needed beacuse AuthMe switch all unlogged players on a
|
||||
# specified restricted Permission Group, so plugins that will use
|
||||
# some particolary permissions on join doesnt work, without
|
||||
# compiling option below!
|
||||
Permissions:
|
||||
PermissionsOnJoin: []
|
||||
settings:
|
||||
sessions:
|
||||
# Do you want to enable session? When enabled
|
||||
@ -290,10 +270,10 @@ ExternalBoardOptions:
|
||||
# WordPress prefix defined during WordPress installation process
|
||||
wordpressTablePrefix: 'wp_'
|
||||
permission:
|
||||
# take care with this options, if u dont want
|
||||
# Take care with this options, if you dont want
|
||||
# to use Vault and Group Switching of
|
||||
# AuthMe for unloggedIn players put False
|
||||
# below, default is true.
|
||||
# AuthMe for unloggedIn players put true
|
||||
# below, default is false.
|
||||
EnablePermissionCheck: false
|
||||
BackupSystem:
|
||||
# Enable or Disable Automatic Backup
|
||||
|
Loading…
Reference in New Issue
Block a user