fx-excel-uploader

ExcelアップロードとViewerです。

       

初期設定

mysqlの設定

# スキーマの作成
mysql> CREATE DATABASE fx_excel;
# ユーザの作成と権限の付与
mysql> GRANT ALL PRIVILEGES ON fx_excel.* TO 'fx_excel'@'localhost' IDENTIFIED BY 'fx_excel';
# テーブルの作成
> mysql -uroot -p fx_excel < {{プロジェクトDir}}/entity/src/test/resources/dump/fx_excel.dmp

アプリケーションの起動

tomcatサーバの起動

基底ディレクトリwebにおいて

> mvn tomcat7:run

http://tomcat.apache.org/maven-plugin-2.0/tomcat7-maven-plugin/

JavaFX8 クライアントアプリの起動

> mvn jfx:run

https://github.com/zonski/javafx-maven-plugin