springboot mybatis-plus swing实现报警监听

通过声音控制报警器,实现声光报警,使用beautyeye_lnf.jar美化界面如下
在这里插入图片描述
在这里插入图片描述

@EnableTransactionManagement(proxyTargetClass = true)
@SpringBootApplication
@EnableScheduling
public class AlarmWarnApplication {public static void main(String[] args) {try {org.jb2011.lnf.beautyeye.BeautyEyeLNFHelper.launchBeautyEyeLNF();BeautyEyeLNFHelper.frameBorderStyle = BeautyEyeLNFHelper.FrameBorderStyle.translucencyAppleLike;UIManager.put("RootPane.setupButtonVisible", false);} catch(Exception e) {//TODO exception}new SpringApplicationBuilder(AlarmWarnApplication.class).headless(false).run(args);//显示界面ViewStart.run();}}
public class ViewStart {public static void run() {EventQueue.invokeLater(new Runnable() {public void run() {try {SpringContextUtils.getBean(SwingArea.class).setVisible(true);} catch (Exception e) {e.printStackTrace();}}});}
}
@Component("SwingArea")
@Scope("prototype") //创建多例
@SuppressWarnings("all")
public class SwingArea extends JFrame {private ImageIcon imageIcon;private URL url;private JLabel imageLabel;private JLabel label;private JButton openBtn;private Timer timer;private AudioPlay audioPlay;@Autowiredprivate DevicealarmMapper devicealarmMapper;public SwingArea() {//报警要加载的音乐InputStream inputStream = getClass().getResourceAsStream("/music/music.wav");System.out.println(inputStream);audioPlay = new AudioPlay(inputStream);setTitle("报警监听程序");setDefaultCloseOperation(JFrame.DO_NOTHING_ON_CLOSE);addWindowListener(new WindowAdapter() {@Overridepublic void windowClosing(WindowEvent e) {// 处理关闭事件,例如显示确认对话框int option = JOptionPane.showConfirmDialog(SwingArea.this, "确定要关闭报警监听吗?", "提示", JOptionPane.YES_NO_OPTION);if (option == JOptionPane.YES_OPTION) {// 用户确认关闭,执行关闭操作dispose();}}});setResizable(false);setLayout(null);//尺寸setSize(800, 500);//背景图片((JPanel)this.getContentPane()).setOpaque(false);url = this.getClass().getResource("/music/green.png");imageIcon = new ImageIcon(url); //添加图片imageLabel = new  JLabel(imageIcon);imageLabel.setBounds(0, 0, imageIcon.getIconWidth(), imageIcon.getIconHeight());getLayeredPane().add(imageLabel, new Integer(Integer.MIN_VALUE));label = new JLabel("无报警");label.setFont(new Font(null, Font.BOLD, 30));label.setForeground(new Color(91, 182, 91));label.setBounds(120, -60, 500, 200);label.setHorizontalAlignment(JLabel.CENTER);add(label);openBtn = new JButton("消音");openBtn.setBounds(295,320,144,60);openBtn.setBackground(new Color(255,255,255));openBtn.setFont(new Font("宋体", Font.BOLD,28));openBtn.setForeground(Color.red);//字体颜色openBtn.setRolloverEnabled(true);//更改鼠标移入按钮背景色一直不起作用
//        openBtn.addMouseListener(new MouseAdapter() {
//            @Override
//            public void mouseEntered(MouseEvent e) {
//                // 鼠标进入时设置悬浮颜色
//                openBtn.setBackground(new Color(255,219,213 ));
//            }
//            @Override
//            public void mouseExited(MouseEvent e) {
//                // 鼠标离开时设置背景颜色
//                openBtn.setBackground(new Color(255,255,255));
//            }
//        });openBtn.setVisible(false);add(openBtn);setVisible(true);QueryWrapper<Devicealarm> queryWrapper = new QueryWrapper<>();//未消音queryWrapper.eq("mute", 0);//未处理queryWrapper.eq("isprocessing", 0);// 定时器,对报警监听timer = new Timer(2000, new ActionListener() {@Overridepublic void actionPerformed(ActionEvent e) {java.util.List<Devicealarm> devicealarms = devicealarmMapper.selectList(queryWrapper);if(devicealarms.size() > 0){//动态更改背景图重点,要先进行removegetLayeredPane().remove(imageLabel);label.setBounds(120, -30, 500, 200);label.setFont(new Font(null, Font.BOLD, 28));url = this.getClass().getResource("/music/alarm.gif");imageIcon = new ImageIcon(url); //添加图片imageLabel = new  JLabel(imageIcon);imageLabel.setBounds(0, 0, imageIcon.getIconWidth(), imageIcon.getIconHeight());getLayeredPane().add(imageLabel, new Integer(Integer.MIN_VALUE));openBtn.setVisible(true);setVisible(true);setExtendedState(JFrame.NORMAL);toFront();java.util.List<String> messageArr = new ArrayList<>();java.util.List<String> idArr = new ArrayList<>();for(int i = 0; i < devicealarms.size(); i++){messageArr.add(devicealarms.get(i).getName() + "报警,浓度" + devicealarms.get(i).getValue() + "%LEL");idArr.add(devicealarms.get(i).getId());}String message = "<html>" + String.join("<br/>", messageArr) + "</html>";label.setText(message);label.setForeground(Color.RED);audioPlay.start();openBtn.addActionListener(it -> {//动态更改背景图重点,要先进行removegetLayeredPane().remove(imageLabel);url = this.getClass().getResource("/music/green.png");imageIcon = new ImageIcon(url); //添加图片imageLabel = new  JLabel(imageIcon);imageLabel.setBounds(0, 0, imageIcon.getIconWidth(), imageIcon.getIconHeight());getLayeredPane().add(imageLabel, new Integer(Integer.MIN_VALUE));getLayeredPane().repaint();openBtn.setVisible(false);Devicealarm devicealarm = new Devicealarm();devicealarm.setMute(1);devicealarmMapper.update(devicealarm, new QueryWrapper<Devicealarm>().in("id", idArr));audioPlay.pause();label.setForeground(new Color(91, 182, 91));label.setBounds(120, -60, 500, 200);label.setText("<html>无报警</html>");});}}});// 启动定时器timer.start();}
}

其他工具类

@Component
public class SpringContextUtils implements ApplicationContextAware {/*** 上下文对象实例*/private static ApplicationContext applicationContext;@Overridepublic void setApplicationContext(ApplicationContext applicationContext) throws BeansException {this.applicationContext = applicationContext;}/*** 获取applicationContext** @return*/public static ApplicationContext getApplicationContext() {return applicationContext;}/*** 通过name获取 Bean.** @param name* @return*/public static Object getBean(String name) {return getApplicationContext().getBean(name);}/*** 通过class获取Bean.** @param clazz* @param <T>* @return*/public static <T> T getBean(Class<T> clazz) {return getApplicationContext().getBean(clazz);}/*** 通过name,以及Clazz返回指定的Bean** @param name 标识名* @param clazz 类型对象* @param <T>* @return*/public static <T> T getBean(String name, Class<T> clazz) {return getApplicationContext().getBean(name, clazz);}
}
@Component
public class SpringContextUtils implements ApplicationContextAware {/*** 上下文对象实例*/private static ApplicationContext applicationContext;@Overridepublic void setApplicationContext(ApplicationContext applicationContext) throws BeansException {this.applicationContext = applicationContext;}/*** 获取applicationContext** @return*/public static ApplicationContext getApplicationContext() {return applicationContext;}/*** 通过name获取 Bean.** @param name* @return*/public static Object getBean(String name) {return getApplicationContext().getBean(name);}/*** 通过class获取Bean.** @param clazz* @param <T>* @return*/public static <T> T getBean(Class<T> clazz) {return getApplicationContext().getBean(clazz);}/*** 通过name,以及Clazz返回指定的Bean** @param name 标识名* @param clazz 类型对象* @param <T>* @return*/public static <T> T getBean(String name, Class<T> clazz) {return getApplicationContext().getBean(name, clazz);}
}

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.hqwc.cn/news/416303.html

如若内容造成侵权/违法违规/事实不符,请联系编程知识网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

基于SpringBoot Vue博物馆管理系统

大家好✌&#xff01;我是Dwzun。很高兴你能来阅读我&#xff0c;我会陆续更新Java后端、前端、数据库、项目案例等相关知识点总结&#xff0c;还为大家分享优质的实战项目&#xff0c;本人在Java项目开发领域有多年的经验&#xff0c;陆续会更新更多优质的Java实战项目&#x…

一文了解【完全合作关系】下的【多智能体强化学习】

处于完全合作关系的多智能体的利益一致&#xff0c;获得的奖励相同&#xff0c;有共同的目标。比如多个工业机器人协同装配汽车&#xff0c;他们的目标是相同的&#xff0c;都希望把汽车装好。 在多智能体系统中&#xff0c;一个智能体未必能观测到全局状态 S。设第 i 号智能体…

Protobuf小记(万字)

Protobuf小记 序列化概念序列化和反序列化 ProtoBuf 初识快速上手通讯录 1.0通讯录 1.0 - 函数 API 小结 编译 contacts.proto 文件&#xff0c;生成 C 文件 proto 3 语法详解字段规则消息类型的定义与使用定义 通讯录 2.0通讯录 2.0 的写入实现通讯录 2.0 的输出实现通讯录 2.…

翻译: LLM构建 GitHub 提交记录的聊天机器人二 使用 Timescale Vector、pgvector 和 LlamaIndex

接着上篇内容&#xff1a;翻译: LLM构建 GitHub 提交记录的聊天机器人一 使用 Timescale Vector、pgvector 和 LlamaIndex TSV Time Machine 示例应用有三个页面&#xff1a; Home主页&#xff1a;提供应用程序使用说明的应用程序主页。Load Data加载数据&#xff1a;页面以加…

Linux 设备树详解

目录 1、概述 2、节点&#xff08; node&#xff09;和属性&#xff08; property&#xff09; 2.1、DTS 描述键值对的语法&#xff1a; 2.2 节点语法规范说明 2.3节点名及节点路径 2.4 节点别名&#xff08;节点引用&#xff09; 2.5 合并节点内容 2.6 替换节点内容 2…

禅道:从安装到使用,一篇文章带你全面了解

博客前言&#xff1a; 在这个充满竞争和快节奏的世界里&#xff0c;项目管理已经成为了许多行业的关键环节。禅道作为一种功能强大、易用的项目管理工具&#xff0c;正在被越来越多的企业和团队所采用。它不仅能帮助我们高效地管理项目&#xff0c;还能提升团队协作和沟通的效…

[C#]winform部署官方yolov8-obb旋转框检测的onnx模型

【官方框架地址】 https://github.com/ultralytics/ultralytics 【算法介绍】 Yolov8-obb&#xff08;You Only Look Once version 8 with Oriented Bounding Boxes&#xff09;是一种先进的对象检测算法&#xff0c;它在传统的Yolov3和Yolov4基础上进行了优化&#xff0c;加…

项目管理工具——禅道在企业内部的使用

目录 一、禅道的下载安装 1.1 禅道官网 1.2 安装步骤 二、禅道启动 2.1 访问禅道 三、禅道的使用 3.1 公司信息编辑 3.2 admin管理组织结构 3.2.1 岗位母部门添加 3.2.2 岗位子部门添加 3.2.3 用户新增 3.2.4 用户职位编辑 3.3 产品经理使用禅道 3.3.1 添加产品…

linux单机部署mysql(离线环境解压即可)

一、下载官网压缩包&#xff08;tar.gz&#xff09; MySQL :: Download MySQL Community Serverhttps://dev.mysql.com/downloads/mysql/根据自己的操作系统发行版本、位数、gclib版本、mysql版本来选择对应的压缩包 比如我是 linux系统debian10&#xff08;官网只有linux ge…

【前端性能优化】如何取消http请求

文章目录 需要取消http请求的3种经典场景原生XMLHttpRequest取消http请求fetch取消http请求axios取消http请求哪些情况需要取消HTTP请求取消http请求能带来哪些性能提升 ✍创作者&#xff1a;全栈弄潮儿 &#x1f3e1; 个人主页&#xff1a; 全栈弄潮儿的个人主页 &#x1f3d9…

网络原理--http

目录 一、 DNS&#xff08;应用层协议&#xff09; 1、域名概念 2、维护ip地址和域名之间的映射&#xff08;域名解析系统&#xff09; 3、DNS系统&#xff08;服务器&#xff09; 4、如何解决DNS服务器高并发问题 二、HTTP&#xff08;应用层协议&#xff09; 1、htt…

旅游项目day07

目的地攻略展示 根据目的地和主题查询攻略 攻略条件查询 攻略排行分析 推荐排行榜&#xff1a;点赞数收藏数 取前十名 热门排行榜&#xff1a;评论数浏览数 取前十名 浏览数跟评论数差距过大&#xff0c;可设置不同权重&#xff0c;例如&#xff1a;将浏览数权重设置为0.3…