Добавление MySQL connector java в модульный проект Javafx при упаковке с maven

#mysql #maven #intellij-idea #javafx #module

Вопрос:

Я создаю модульный проект Javafx с maven и Intellij 2021 .1.3 . И я хочу использовать для этого MySQL. Я добавил зависимости в pom.xml вот так:

 <?xml version="1.0" encoding="UTF-8"?>
<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>org.openjfx</groupId>
    <artifactId>AccountZeyny</artifactId>
    <version>1.0-SNAPSHOT</version>
    <packaging>jar</packaging>

    <name>AccountZeyny</name>

    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <maven.compiler.release>11</maven.compiler.release>
        <javafx.version>15</javafx.version>
        <javafx.maven.plugin.version>0.0.6</javafx.maven.plugin.version>
    </properties>

    <organization>
        <!-- Used as the 'Vendor' for JNLP generation -->
        <name>ORGZ</name>
    </organization>

    <dependencies>
        <dependency>
            <groupId>org.openjfx</groupId>
            <artifactId>javafx-controls</artifactId>
            <version>15</version>
        </dependency>
        <dependency>
            <groupId>org.openjfx</groupId>
            <artifactId>javafx-fxml</artifactId>
            <version>15</version>
        </dependency>
        <dependency>
            <groupId>org.openjfx</groupId>
            <artifactId>javafx-swing</artifactId>
            <version>17-ea 9</version>
        </dependency>
        <dependency>
            <groupId>mysql</groupId>
            <artifactId>mysql-connector-java</artifactId>
            <version>8.0.25</version>
        </dependency>
    </dependencies>
    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>3.8.1</version>
                <configuration>
                    <source>15</source>
                    <target>15</target>
                    <release>${maven.compiler.release}</release>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.openjfx</groupId>
                <artifactId>javafx-maven-plugin</artifactId>
                <version>0.0.6</version>
                <configuration>
                    <compress>2</compress>
                    <noHeaderFiles>true</noHeaderFiles>
                    <stripDebug>true</stripDebug>
                    <noManPages>true</noManPages>
                    <launcher>AccountZeyny</launcher>
                    <jlinkImageName>AccountZeyny</jlinkImageName>
                    <jlinkZipName>AccountZeyny</jlinkZipName>
                   <mainClass>AccountZeyny/org.openjfx.Main</mainClass>
                </configuration>
            </plugin>
    </plugins>
    </build>
</project> 

затем добавьте зависимость в module-info.java:

 module AccountZeyny {
requires javafx.fxml;
requires javafx.controls;
requires java.sql;
requires javafx.swing;
requires mysql.connector.java;
opens org.openjfx to javafx.fxml;
exports org.openjfx;
exports org.openjfx.controllers to javafx.fxml;
opens org.openjfx.controllers to javafx.fxml;
exports org.openjfx.controllers.list to javafx.fxml;
opens org.openjfx.controllers.list to javafx.fxml;
exports org.openjfx.controllers.dataScreenControllers to  javafx.fxml;
opens org.openjfx.controllers.dataScreenControllers to javafx.fxml;
exports org.openjfx.controllers.dialogControllers to javafx.fxml;
opens org.openjfx.controllers.dialogControllers to javafx.fxml;
exports org.openjfx.settergetters to javafx.base;
opens org.openjfx.settergetters to javafx.base;}
 

при запуске с плагинами->javafx->>javafx:запуск работает нормально. но когда я пытаюсь упаковать проект, я получаю предупреждение:

 * Required filename-based automodules detected: [mysql-connector-java-8.0.25.jar]. Please don't publish this project to a public artifact repository! *
 

и при запуске я получаю ошибку:

 no main manifest attribute, in D:Account-ZeynytargetAccountZeyny-1.0-SNAPSHOT.jar
 

Какая-нибудь помощь??

Комментарии:

1. Это потому, что драйвер MySQL не имеет объявления модуля (module-info.java)

2. Основной манифест, из-за manifest.mf не содержит главного атрибута, который должен указывать на класс с основным методом.

3. я добавил атрибут манифеста в pom.xml и он побежал. но теперь у меня новая ошибка: Не найден подходящий драйвер для jdbc:mysql://localhost:3306/»…….что-то». я не знаю, что такое объявление драйвера MySQL в module-info.java. разве это не «требует mysql.connector.java;»?