首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >Java程序在Netbeans中运行良好,但在构建的JAR中运行时却无法运行

Java程序在Netbeans中运行良好,但在构建的JAR中运行时却无法运行
EN

Stack Overflow用户
提问于 2013-01-04 08:03:27
回答 1查看 1.4K关注 0票数 1

目前,我完全是java的新手,我所要做的就是将MySQL日志记录添加到这个Java Proxy for a Minecraft中。

当程序在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导入到我的Dependencies中,它们都在jar文件中。

下面是建立连接的类:

代码语言:javascript
复制
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查询和所有操作的类:

代码语言:javascript
复制
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,以防我在构建过程中遇到一些错误或类似的问题:

代码语言:javascript
复制
<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块时的完整堆栈跟踪。

代码语言:javascript
复制
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
EN

回答 1

Stack Overflow用户

发布于 2013-01-04 17:02:05

错误的原因是在使用maven-shade构建JAR时排除了.properties文件。我强烈建议您不要构建大的jar,而是简单地使用类路径机制,并将驱动程序等保存在它们自己的jar文件中。

堆栈跟踪的以下部分演示了这一点:

代码语言:javascript
复制
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过滤器:

代码语言:javascript
复制
<filters>
    <filter>
        <artifact>*:*</artifact>
        <excludes>
            <exclude>**/*.java</exclude>
            <exclude>**/*.properties</exclude>
            <exclude>**/*.SF</exclude>
            <exclude>**/*.DSA</exclude>
        </excludes>
    </filter>
</filters>

它在IDE中工作的原因是,它使用的是使用maven下载的实际JAR文件。

票数 1
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/14149262

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档