利用SpringBoot和javafx進(jìn)行桌面開發(fā)
原文合集地址如下,有需要的朋友可以關(guān)注
[本文地址](https://mp.weixin.qq.com/s?__biz=MzI5MjY4OTQ2Nw==&mid=2247484245&idx=1&sn=8d72d223d79bd95165d2c6929a5eade7&chksm=ec7cc001db0b49178f21cd6a41ac91065dec5cbf6441530a090efa631a10abec4f6c06fedfd3#rd)
[合集地址](https://mp.weixin.qq.com/mp/appmsgalbum?__biz=MzI5MjY4OTQ2Nw==&action=getalbum&album_id=2970034039950671876&scene=173&from_msgid=2247484245&from_itemidx=1&count=3&nolastread=1#wechat_redirect)
>眾所周知,SpringBoot是一款強(qiáng)大的Javaweb開發(fā)程序,這得益于其構(gòu)造了一個(gè)Spring容器,然后通過依賴注入和控制反轉(zhuǎn),維護(hù)起一套Java對象和實(shí)例的管理機(jī)制,方便開發(fā)者去使用。在web應(yīng)用開發(fā)的應(yīng)用中,Springboot在Java層應(yīng)用非常廣,同樣的,也可以利用SpringBoot來編寫桌面程序。
## 標(biāo)準(zhǔn)的JavaFx代碼
JavaFx是java中比較新的桌面端應(yīng)用程序開發(fā)框架,一般來說,簡單的使用JavaFx編寫一個(gè)桌面程序的代碼如下:
下面是一個(gè)實(shí)現(xiàn)一個(gè)樹形結(jié)構(gòu)的javafx程序
```java
package com.demo123567.desktop.auto_tools;
import com.demo123567.desktop.auto_tools.menu.FxUtils;
import com.demo123567.desktop.auto_tools.utils.DatetimeUtil;
import com.demo123567.desktop.auto_tools.utils.Json;
import com.google.gson.JsonArray;
import com.google.gson.JsonObject;
import com.jcraft.jsch.*;
import javafx.application.Application;
import javafx.scene.Scene;
import javafx.scene.control.*;
import javafx.scene.control.cell.TextFieldTreeCell;
import javafx.scene.layout.*;
import javafx.stage.Stage;
import javafx.util.converter.DefaultStringConverter;
import java.io.FileOutputStream;
import java.io.InputStream;
import java.io.OutputStream;
import java.time.LocalDateTime;
import java.util.*;
public class SftpExample extends Application {
? ? @Override
? ? public void start(Stage primaryStage) {
? ? ? ? // 創(chuàng)建根節(jié)點(diǎn)
? ? ? ? TreeItem<String> rootItem = new TreeItem<>("Root");
? ? ? ? // 創(chuàng)建TreeView
? ? ? ? TreeView<String> treeView = new TreeView<>(rootItem);
? ? ? ? // 創(chuàng)建一個(gè)按鈕,用于動(dòng)態(tài)添加節(jié)點(diǎn)
? ? ? ? Button addButton = new Button("Add Node");
? ? ? ? addButton.setOnAction(event -> {
? ? ? ? ? ? // 獲取當(dāng)前選定的節(jié)點(diǎn)
? ? ? ? ? ? TreeItem<String> selectedItem = treeView.getSelectionModel().getSelectedItem();
? ? ? ? ? ? // 創(chuàng)建一個(gè)新的子節(jié)點(diǎn)
? ? ? ? ? ? TreeItem<String> newItem = new TreeItem<>("New Node");
? ? ? ? ? ? // 將新節(jié)點(diǎn)添加到選定節(jié)點(diǎn)的子節(jié)點(diǎn)列表中
? ? ? ? ? ? selectedItem.getChildren().add(newItem);
? ? ? ? ? ? // 展開選定節(jié)點(diǎn)
? ? ? ? ? ? selectedItem.setExpanded(true);
? ? ? ? });
? ? ? ? // 創(chuàng)建編輯按鈕,用于編輯選定節(jié)點(diǎn)的名稱
? ? ? ? Button editButton = new Button("Edit Node");
? ? ? ? editButton.setOnAction(event -> {
? ? ? ? ? ? // 獲取當(dāng)前選定的節(jié)點(diǎn)
? ? ? ? ? ? TreeItem<String> selectedItem = treeView.getSelectionModel().getSelectedItem();
? ? ? ? ? ? // 如果沒有選定節(jié)點(diǎn),則返回
? ? ? ? ? ? if (selectedItem == null) {
? ? ? ? ? ? ? ? return;
? ? ? ? ? ? }
? ? ? ? ? ? // 創(chuàng)建一個(gè)對話框,用于輸入新節(jié)點(diǎn)名稱
? ? ? ? ? ? TextInputDialog dialog = new TextInputDialog(selectedItem.getValue());
? ? ? ? ? ? dialog.setTitle("Edit Node");
? ? ? ? ? ? dialog.setHeaderText(null);
? ? ? ? ? ? dialog.setContentText("Enter new node name:");
? ? ? ? ? ? // 顯示對話框,等待用戶輸入
? ? ? ? ? ? Optional<String> result = dialog.showAndWait();
? ? ? ? ? ? // 如果用戶輸入了新名稱,則將其保存到選定節(jié)點(diǎn)中
? ? ? ? ? ? result.ifPresent(name -> selectedItem.setValue(name));
? ? ? ? });
? ? ? ? // 設(shè)置單元格工廠,用于更新節(jié)點(diǎn)名稱
? ? ? ? treeView.setCellFactory(TextFieldTreeCell.forTreeView());
? ? ? ? // 創(chuàng)建BorderPane,將TreeView和按鈕添加到其中
? ? ? ? BorderPane root = new BorderPane();
? ? ? ? root.setCenter(treeView);
? ? ? ? // 創(chuàng)建VBox,將按鈕添加到其中
? ? ? ? VBox buttonBox = new VBox();
? ? ? ? buttonBox.getChildren().addAll(addButton, editButton);
? ? ? ? root.setRight(buttonBox);
? ? ? ? // 創(chuàng)建場景
? ? ? ? Scene scene = new Scene(root, 300, 250);
? ? ? ? // 設(shè)置舞臺(tái)標(biāo)題并顯示
? ? ? ? primaryStage.setTitle("TreeView Example");
? ? ? ? primaryStage.setScene(scene);
? ? ? ? primaryStage.show();
? ? ? ? // 添加監(jiān)聽器,在對話框關(guān)閉時(shí)輸出JSON
? ? ? ? primaryStage.setOnCloseRequest(event -> {
? ? ? ? ? ? // 獲取TreeView的根節(jié)點(diǎn)
? ? ? ? ? ? TreeItem<String> rootNode = treeView.getRoot();
? ? ? ? ? ? // 將根節(jié)點(diǎn)轉(zhuǎn)換為Map
? ? ? ? ? ? Map<String,Object> ans = toMap(rootNode);
? ? ? ? ? ? // 輸出JSON字符串
? ? ? ? ? ? System.out.println(Json.toJson(ans));
? ? ? ? });
? ? }
? ? private Map<String,Object> toMap(TreeItem<String> node) {
? ? ? ? Map<String,Object> ans = new HashMap<>();
? ? ? ? ans.put("name",node.getValue());
? ? ? ? if (node.getChildren().size() > 0) {
? ? ? ? ? ? List<Map<String,Object>> children = new ArrayList<>();
? ? ? ? ? ? for (TreeItem<String> child : node.getChildren()) {
? ? ? ? ? ? ? ? children.add(toMap(child));
? ? ? ? ? ? }
? ? ? ? ? ? ans.put("children", children);
? ? ? ? }
? ? ? ? return ans;
? ? }
? ? public static void main(String[] args) {
? ? ? ? launch(args);
? ? }
}
```
運(yùn)行的結(jié)構(gòu)為
/markdown_images/9c0b22e19492163f5a41c02f4be8abf0.png)
## 融合SpringBoot的JavaFx方法
可見,標(biāo)準(zhǔn)的啟動(dòng)方法為創(chuàng)建一個(gè)Main函數(shù)進(jìn)行處理,那么我們可以聯(lián)想到,如果使用Springboot,該如何啟動(dòng),下面是一個(gè)完整的使用Springboot創(chuàng)建Javafx桌面應(yīng)用的方法
### springboot啟動(dòng)類
```java
@SpringBootApplication
public class AutoToolsApplication {
? ? public static void main(String[] args) {
? ? ? ? Application.launch(MainApp.class, args);
? ? }
}
```
## 在Start函數(shù)中編寫如下代碼
```java
? ? @Override
? ? public void start(Stage stage) throws Exception {
? ? ? ? // 創(chuàng)建 Spring 應(yīng)用程序上下文
? ? ? ? AnnotationConfigApplicationContext context = new AnnotationConfigApplicationContext();
? ? ? ? // 注冊一個(gè)配置類,以便 Spring 能夠掃描和識(shí)別所有的 Bean
? ? ? ? context.register(Config.class);
? ? ? ? context.register(RestTemplateConfig2.class);
//? ? ? ? context.register(ThreadPoolConfig.class);
? ? ? ? // 啟動(dòng) Spring 應(yīng)用程序上下文
? ? ? ? context.refresh();
? ? ? ? stage.setTitle("效率工具");
? ? ? ? HostServices hostServices = getHostServices();
? ? ? ? MenuService functionMenuService = SpringContextUtil.getBean(MenuService.class);
? ? ? ? MenuBar menuBar = new MenuBar(thingMenu(functionMenuService),
? ? ? ? ? ? ? ? chatMenu(functionMenuService),
? ? ? ? ? ? ? ? browserMenu(functionMenuService,hostServices),
? ? ? ? ? ? ? ? logMenu(functionMenuService),
? ? ? ? ? ? ? ? projectMenu(functionMenuService),
? ? ? ? ? ? ? ? knowledgeMenu(functionMenuService),
? ? ? ? ? ? ? ? scriptMenu(functionMenuService),
? ? ? ? ? ? ? ? toolsMenu(functionMenuService),
? ? ? ? ? ? ? ? buttMenu(functionMenuService),
? ? ? ? ? ? ? ? networkToolsButton(functionMenuService),
? ? ? ? ? ? ? ? reminderMenu(functionMenuService),
? ? ? ? ? ? ? ? configurationMenu(functionMenuService),
? ? ? ? ? ? ? ? loveMenu(functionMenuService),
? ? ? ? ? ? ? ? knowledgeTreeMenu(functionMenuService,hostServices),
? ? ? ? ? ? ? ? sidelineMenu(functionMenuService),
? ? ? ? ? ? ? ? dataMenu(functionMenuService)
? ? ? ? );
? ? ? ? // 創(chuàng)建一個(gè)用于顯示時(shí)鐘的標(biāo)簽
? ? ? ? Label clockLabel = new Label();
? ? ? ? clockLabel.setFont(Font.font("Arial", FontWeight.BOLD, 48));
? ? ? ? // 創(chuàng)建一個(gè)用于顯示"慢"字的標(biāo)簽
? ? ? ? Label slowLabel = new Label("沉心、平和、穩(wěn)扎穩(wěn)打");
? ? ? ? slowLabel.setFont(Font.font("SimSun", FontWeight.BOLD, 48));
? ? ? ? slowLabel.setTextFill(new Color(0f, 0f, 0f, 1));
? ? ? ? slowLabel.setPrefWidth(800);
? ? ? ? slowLabel.setAlignment(Pos.CENTER);
? ? ? ? StackPane clockContainer = new StackPane();
? ? ? ? StackPane.setAlignment(clockLabel, Pos.CENTER);
? ? ? ? StackPane.setAlignment(slowLabel, Pos.TOP_CENTER);
? ? ? ? clockContainer.getChildren().addAll(slowLabel, clockLabel);
? ? ? ? BorderPane.setAlignment(clockContainer, Pos.CENTER);
? ? ? ? BorderPane.setMargin(clockContainer, new Insets(150));
? ? ? ? // 創(chuàng)建一個(gè)用于更新時(shí)鐘的時(shí)間線程
? ? ? ? Thread clockThread = new Thread(() -> {
? ? ? ? ? ? while (true) {
? ? ? ? ? ? ? ? Platform.runLater(() -> {
? ? ? ? ? ? ? ? ? ? // 獲取當(dāng)前時(shí)間并設(shè)置到標(biāo)簽上
? ? ? ? ? ? ? ? ? ? LocalDateTime currentTime = LocalDateTime.now();
? ? ? ? ? ? ? ? ? ? String formattedTime = currentTime.format(DateTimeFormatter.ofPattern("HH:mm:ss"));
? ? ? ? ? ? ? ? ? ? clockLabel.setText(formattedTime);
? ? ? ? ? ? ? ? });
? ? ? ? ? ? ? ? try {
? ? ? ? ? ? ? ? ? ? // 等待1秒鐘
? ? ? ? ? ? ? ? ? ? Thread.sleep(1000);
? ? ? ? ? ? ? ? } catch (InterruptedException e) {
? ? ? ? ? ? ? ? ? ? e.printStackTrace();
? ? ? ? ? ? ? ? }
? ? ? ? ? ? }
? ? ? ? });
? ? ? ? clockThread.setDaemon(true);
? ? ? ? clockThread.start();
? ? ? ? BorderPane root = new BorderPane();
? ? ? ? root.setTop(menuBar);
? ? ? ? root.setCenter(clockContainer);
? ? ? ? Scene scene = new Scene(root, 1920 * 0.6, 1080 * 0.6);
? ? ? ? stage.setScene(scene);
? ? ? ? stage.show();
? ? }
```
簡單梳理一下這段代碼,首先,利用下面的代碼,創(chuàng)建Springboot上下文,并注冊兩個(gè)配置,叫Config和RestTemplateConfig2
```java
// 創(chuàng)建 Spring 應(yīng)用程序上下文
? ? ? ? AnnotationConfigApplicationContext context = new AnnotationConfigApplicationContext();
? ? ? ? // 注冊一個(gè)配置類,以便 Spring 能夠掃描和識(shí)別所有的 Bean
? ? ? ? context.register(Config.class);
? ? ? ? context.register(RestTemplateConfig2.class);
//? ? ? ? context.register(ThreadPoolConfig.class);
? ? ? ? // 啟動(dòng) Spring 應(yīng)用程序上下文
? ? ? ? context.refresh();
```
然后在Config Bean的代碼中加入@ComponentScan注解,那么整個(gè)應(yīng)用的所有Bean都將被掃描并被spring上下文管理起來
```java
@Configuration
@ComponentScan
public class Config {
}
```
然后,在后面的代碼中,我們只需要像編寫后端代碼一樣,編寫桌面端程序即可。不需要額外學(xué)習(xí)任何的庫或者技術(shù)