- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我现在完全是 java 的菜鸟,我想做的就是将 MySQL 日志记录添加到这个 Minecraft 服务器的 Java 代理。
当程序在 NetBeans 中运行时,程序运行良好,没有任何错误。但是,当构建 jar 并从 jar 运行程序时,登录到 Minecraft 服务器时会抛出此错误:
SQLNestedException 错误:无法为连接 URL 'jdbc:mysql://localhost:3306/userips' @ org.apache.commons.dbcp.BasicDataSource:1452 创建类 'com.mysql.jdbc.Driver' 的 JDBC 驱动程序
基本上它应该做的是记录用户的 IP、用户名、时间和登录日期。
我正在使用 Netbeans IDE 7.2.1 并使用 Maven 构建 jar 来处理所有依赖项。
我使用 Maven 将 commons-dbcp-1.4.jar、mysql-connector-java-5.1.22.jar 和 commons-pool-1.5.4.jar 导入到我的依赖项中,它们位于 jar 文件中。
这是建立连接的类:
import java.sql.Connection;
import java.sql.SQLException;
import org.apache.commons.dbcp.BasicDataSource;
public final class ConnectionPooler {
public static final Configuration config = new Configuration();
private static final BasicDataSource dataSource = new BasicDataSource();
static {
config.load();
dataSource.setDriverClassName("com.mysql.jdbc.Driver");
dataSource.setUrl(config.sql_url);
dataSource.setUsername(config.sql_user);
dataSource.setPassword(config.sql_pass);
dataSource.setInitialSize(5);
dataSource.setMaxActive(30);
}
public static Connection getConnection() throws SQLException {
return dataSource.getConnection();
}
}
这里是 mysql 查询和所有执行的类:
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.text.DateFormat;
import java.text.SimpleDateFormat;
import java.util.Calendar;
import java.util.Date;
import java.util.TimeZone;
public class IPLogger {
public boolean logip(String player, String ipp) throws SQLException {
Connection connection = null;
PreparedStatement statement = null;
ResultSet resultSet = null;
Calendar now = Calendar.getInstance();
TimeZone timeZone1 = now.getTimeZone();
String timeZone = timeZone1.getDisplayName();
DateFormat dateFormat = new SimpleDateFormat("MM/dd/yyyy");
DateFormat timeFormat = new SimpleDateFormat("HH:mm:ss");
Date date1 = new Date();
Date date2 = new Date();
String date;
String time;
date = dateFormat.format(date1);
time = timeFormat.format(date2);
String SQL_EXIST = "INSERT INTO `proxyips` (`username`, `ip`,`date`,`time`) VALUES ('"+player+"', '"+ipp+"','"+date+"','"+time+" "+timeZone+"')";
try{
connection = ConnectionPooler.getConnection();
statement = connection.prepareStatement(SQL_EXIST);
statement.executeUpdate();
} finally {
if (resultSet != null) {
try { resultSet.close(); } catch (SQLException ignore) {ignore.printStackTrace(); }
}
if (statement != null) {
try { statement.close(); } catch (SQLException ignore) {ignore.printStackTrace(); }
}
if (connection != null) {
try { connection.close(); } catch (SQLException ignore) {ignore.printStackTrace(); }
}
}
return true;
}
}
这是 pom.xml,以防我在构建或类似问题时遇到一些错误:
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>net.md-5</groupId>
<artifactId>BungeeCordKC</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>jar</packaging>
<name>BungeeCordKC</name>
<url>http://maven.apache.org</url>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
<showDeprecation>false</showDeprecation>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>2.0</version>
<configuration>
<filters>
<filter>
<artifact>*:*</artifact>
<excludes>
<exclude>**/*.java</exclude>
<exclude>**/*.properties</exclude>
<exclude>**/*.SF</exclude>
<exclude>**/*.DSA</exclude>
</excludes>
</filter>
</filters>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.4</version>
<configuration>
<archive>
<manifestEntries>
<Main-Class>${main.class}</Main-Class>
<Implementation-Version>${describe}</Implementation-Version>
</manifestEntries>
</archive>
</configuration>
</plugin>
</plugins>
</build>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<build.number>unknown</build.number>
<main.class>net.md_5.bungee.BungeeCord</main.class>
</properties>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.yaml</groupId>
<artifactId>snakeyaml</artifactId>
<version>1.11</version>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>0.11.4</version>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>13.0.1</version>
</dependency>
<dependency>
<groupId>com.google.code.findbugs</groupId>
<artifactId>annotations</artifactId>
<version>2.0.1</version>
</dependency>
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcprov-ext-jdk15on</artifactId>
<version>1.47</version>
</dependency>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>5.1.22</version>
<type>jar</type>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>commons-dbcp</groupId>
<artifactId>commons-dbcp</artifactId>
<version>1.4</version>
</dependency>
<dependency>
<artifactId>commons-pool</artifactId>
<groupId>commons-pool</groupId>
<type>jar</type>
<version>1.5.4</version>
</dependency>
</dependencies>
</project>
如果有人知道哪里出了问题,或者如果您对我如何设置环境有任何疑问,请告诉我。
编辑:这是我将该 catch 语句添加到 try block 时的完整堆栈跟踪。
org.apache.commons.dbcp.SQLNestedException: Cannot create JDBC driver of class '
com.mysql.jdbc.Driver' for connect URL 'jdbc:mysql://localhost.com:3306/use
rips'
at org.apache.commons.dbcp.BasicDataSource.createConnectionFactory(Basic
DataSource.java:1452)
at org.apache.commons.dbcp.BasicDataSource.createDataSource(BasicDataSou
rce.java:1371)
at org.apache.commons.dbcp.BasicDataSource.getConnection(BasicDataSource
.java:1044)
at net.md_5.bungee.ConnectionPooler.getConnection(ConnectionPooler.java:
30)
at net.md_5.bungee.IPLogger.logip(IPLogger.java:44)
at net.md_5.bungee.InitialHandler.run(InitialHandler.java:77)
at java.util.concurrent.Executors$RunnableAdapter.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
Caused by: java.lang.ExceptionInInitializerError
at com.mysql.jdbc.Util.stackTraceToString(Util.java:355)
at com.mysql.jdbc.Util.<clinit>(Util.java:120)
at com.mysql.jdbc.NonRegisteringDriver.parseURL(NonRegisteringDriver.jav
a:764)
at com.mysql.jdbc.NonRegisteringDriver.acceptsURL(NonRegisteringDriver.j
ava:265)
at java.sql.DriverManager.getDriver(Unknown Source)
at org.apache.commons.dbcp.BasicDataSource.createConnectionFactory(Basic
DataSource.java:1437)
... 11 more
Caused by: java.lang.RuntimeException: Can't load resource bundle due to underly
ing exception java.util.MissingResourceException: Can't find bundle for base nam
e com.mysql.jdbc.LocalizedErrorMessages, locale en_US
at com.mysql.jdbc.Messages.<clinit>(Messages.java:61)
... 17 more
Caused by: java.util.MissingResourceException: Can't find bundle for base name c
om.mysql.jdbc.LocalizedErrorMessages, locale en_US
at java.util.ResourceBundle.throwMissingResourceException(Unknown Source
)
at java.util.ResourceBundle.getBundleImpl(Unknown Source)
at java.util.ResourceBundle.getBundle(Unknown Source)
at com.mysql.jdbc.Messages.<clinit>(Messages.java:59)
... 17 more
最佳答案
错误的原因是您排除了 .properties
使用 maven-shade 构建 JAR 时的文件。我强烈建议您不要构建大 jar,而只需按预期使用类路径机制并将驱动程序等保存在它们自己的 jar 文件中。
堆栈跟踪的以下部分证明了这一点:
Caused by: java.lang.RuntimeException: Can't load resource bundle due to underly
ing exception java.util.MissingResourceException: Can't find bundle for base nam
e com.mysql.jdbc.LocalizedErrorMessages, locale en_US
at com.mysql.jdbc.Messages.<clinit>(Messages.java:61)
资源包也是.properties
.
因此,要解决此问题,我的第一个建议是不要构建一个大 jar ,否则,您将需要通过删除 <exclude>**/*.properties</exclude>
来更改 maven-shade exlusion 过滤器。来自:
<filters>
<filter>
<artifact>*:*</artifact>
<excludes>
<exclude>**/*.java</exclude>
<exclude>**/*.properties</exclude>
<exclude>**/*.SF</exclude>
<exclude>**/*.DSA</exclude>
</excludes>
</filter>
</filters>
它在您的 IDE 中工作的原因是它使用使用 maven 下载的实际 JAR 文件。
关于Java 程序在 Netbeans 中运行良好,但是从构建的 JAR 运行时它不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14149262/
SQLite、Content provider 和 Shared Preference 之间的所有已知区别。 但我想知道什么时候需要根据情况使用 SQLite 或 Content Provider 或
警告:我正在使用一个我无法完全控制的后端,所以我正在努力解决 Backbone 中的一些注意事项,这些注意事项可能在其他地方更好地解决......不幸的是,我别无选择,只能在这里处理它们! 所以,我的
我一整天都在挣扎。我的预输入搜索表达式与远程 json 数据完美配合。但是当我尝试使用相同的 json 数据作为预取数据时,建议为空。点击第一个标志后,我收到预定义消息“无法找到任何内容...”,结果
我正在制作一个模拟 NHL 选秀彩票的程序,其中屏幕右侧应该有一个 JTextField,并且在左侧绘制弹跳的选秀球。我创建了一个名为 Ball 的类,它实现了 Runnable,并在我的主 Draf
这个问题已经有答案了: How can I calculate a time span in Java and format the output? (18 个回答) 已关闭 9 年前。 这是我的代码
我有一个 ASP.NET Web API 应用程序在我的本地 IIS 实例上运行。 Web 应用程序配置有 CORS。我调用的 Web API 方法类似于: [POST("/API/{foo}/{ba
我将用户输入的时间和日期作为: DatePicker dp = (DatePicker) findViewById(R.id.datePicker); TimePicker tp = (TimePic
放宽“邻居”的标准是否足够,或者是否有其他标准行动可以采取? 最佳答案 如果所有相邻解决方案都是 Tabu,则听起来您的 Tabu 列表的大小太长或您的释放策略太严格。一个好的 Tabu 列表长度是
我正在阅读来自 cppreference 的代码示例: #include #include #include #include template void print_queue(T& q)
我快疯了,我试图理解工具提示的行为,但没有成功。 1. 第一个问题是当我尝试通过插件(按钮 1)在点击事件中使用它时 -> 如果您转到 Fiddle,您会在“内容”内看到该函数' 每次点击都会调用该属
我在功能组件中有以下代码: const [ folder, setFolder ] = useState([]); const folderData = useContext(FolderContex
我在使用预签名网址和 AFNetworking 3.0 从 S3 获取图像时遇到问题。我可以使用 NSMutableURLRequest 和 NSURLSession 获取图像,但是当我使用 AFHT
我正在使用 Oracle ojdbc 12 和 Java 8 处理 Oracle UCP 管理器的问题。当 UCP 池启动失败时,我希望关闭它创建的连接。 当池初始化期间遇到 ORA-02391:超过
关闭。此题需要details or clarity 。目前不接受答案。 想要改进这个问题吗?通过 editing this post 添加详细信息并澄清问题. 已关闭 9 年前。 Improve
引用这个plunker: https://plnkr.co/edit/GWsbdDWVvBYNMqyxzlLY?p=preview 我在 styles.css 文件和 src/app.ts 文件中指定
为什么我的条形这么细?我尝试将宽度设置为 1,它们变得非常厚。我不知道还能尝试什么。默认厚度为 0.8,这是应该的样子吗? import matplotlib.pyplot as plt import
当我编写时,查询按预期执行: SELECT id, day2.count - day1.count AS diff FROM day1 NATURAL JOIN day2; 但我真正想要的是右连接。当
我有以下时间数据: 0 08/01/16 13:07:46,335437 1 18/02/16 08:40:40,565575 2 14/01/16 22:2
一些背景知识 -我的 NodeJS 服务器在端口 3001 上运行,我的 React 应用程序在端口 3000 上运行。我在 React 应用程序 package.json 中设置了一个代理来代理对端
我面临着一个愚蠢的问题。我试图在我的 Angular 应用程序中延迟加载我的图像,我已经尝试过这个2: 但是他们都设置了 src attr 而不是 data-src,我在这里遗漏了什么吗?保留 d
我是一名优秀的程序员,十分优秀!