33 lines
2.7 KiB
XML
33 lines
2.7 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<?import javafx.scene.control.Button?>
|
|
<?import javafx.scene.control.ComboBox?>
|
|
<?import javafx.scene.control.Label?>
|
|
<?import javafx.scene.control.ListView?>
|
|
<?import javafx.scene.control.TextArea?>
|
|
<?import javafx.scene.control.TextField?>
|
|
<?import javafx.scene.layout.AnchorPane?>
|
|
<?import javafx.scene.text.Text?>
|
|
|
|
<AnchorPane prefHeight="649.0" prefWidth="1200.0" xmlns="http://javafx.com/javafx/19" xmlns:fx="http://javafx.com/fxml/1" fx:controller="com.zhangmeng.tools.controller.JwtController">
|
|
<children>
|
|
<Label layoutX="437.0" layoutY="86.0" text="秘钥:" AnchorPane.topAnchor="86.0" />
|
|
<TextField fx:id="secret_key" layoutX="578.0" layoutY="82.0" prefHeight="25.0" prefWidth="520.0" AnchorPane.leftAnchor="578.0" AnchorPane.rightAnchor="102.0" AnchorPane.topAnchor="82.0" />
|
|
<ComboBox fx:id="comboBox" layoutX="578.0" layoutY="132.0" prefWidth="150.0" AnchorPane.leftAnchor="578.0" AnchorPane.rightAnchor="472.0" />
|
|
<Label layoutX="439.0" layoutY="136.0" text="加密方式:" AnchorPane.leftAnchor="439.0" />
|
|
<Button layoutX="578.0" layoutY="501.0" mnemonicParsing="false" onAction="#gen_jwt_token" prefHeight="25.0" prefWidth="188.0" text="生成" AnchorPane.bottomAnchor="123.0" AnchorPane.rightAnchor="434.0" />
|
|
<Label layoutX="439.0" layoutY="195.0" text="加密的数据:" AnchorPane.leftAnchor="439.0" />
|
|
<Label layoutX="750.0" layoutY="187.0" text="(key)" AnchorPane.leftAnchor="750.0" AnchorPane.rightAnchor="422.0" />
|
|
<Label layoutX="961.0" layoutY="187.0" text="(value)" AnchorPane.rightAnchor="200.0" />
|
|
<TextField fx:id="key" layoutX="578.0" layoutY="183.0" AnchorPane.leftAnchor="578.0" />
|
|
<TextField fx:id="value" layoutX="794.0" layoutY="183.0" AnchorPane.rightAnchor="245.0" />
|
|
<Button layoutX="1058.0" layoutY="183.0" mnemonicParsing="false" onAction="#add" text="添加" AnchorPane.rightAnchor="102.0" />
|
|
<Label layoutX="439.0" layoutY="235.0" text="过期时间:" AnchorPane.leftAnchor="439.0" />
|
|
<TextField fx:id="expiration_time" layoutX="578.0" layoutY="231.0" prefHeight="25.0" prefWidth="175.0" AnchorPane.leftAnchor="578.0" />
|
|
<Text layoutX="762.0" layoutY="248.302734375" strokeType="OUTSIDE" strokeWidth="0.0" text="(毫秒)" AnchorPane.leftAnchor="762.0" AnchorPane.rightAnchor="405.984375" />
|
|
<ListView fx:id="listView" layoutX="167.0" layoutY="83.0" prefHeight="443.0" prefWidth="236.0" AnchorPane.bottomAnchor="123.0" AnchorPane.topAnchor="83.0" />
|
|
<TextArea fx:id="token" layoutX="578.0" layoutY="278.0" prefHeight="200.0" prefWidth="520.0" AnchorPane.leftAnchor="578.0" AnchorPane.rightAnchor="102.0" />
|
|
<Label layoutX="439.0" layoutY="278.0" text="token" AnchorPane.leftAnchor="439.0" />
|
|
</children>
|
|
</AnchorPane>
|