package com.hxzk.gps; import javafx.application.Application; import javafx.application.Platform; import javafx.geometry.Insets; import javafx.geometry.Orientation; import javafx.scene.Node; import javafx.scene.Scene; import javafx.scene.control.*; import javafx.scene.layout.*; import javafx.scene.paint.Color; import javafx.scene.text.Font; import javafx.stage.Stage; import javafx.stage.StageStyle; import org.mybatis.spring.annotation.MapperScan; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.cache.annotation.EnableCaching; import org.springframework.context.ConfigurableApplicationContext; import org.springframework.scheduling.annotation.EnableScheduling; import org.springframework.transaction.annotation.EnableTransactionManagement; import java.time.LocalDate; import java.time.format.DateTimeFormatter; @SpringBootApplication @EnableTransactionManagement @EnableScheduling @EnableCaching @MapperScan(basePackages = "com.hxzk.gps.mapper") public class GpsAdminApplication { public static void main(String[] args) { SpringApplication.run(GpsAdminApplication.class, args); } }