docker中安装了mysql,过了两天自动关闭了,最后检查发现是被黑客攻击了。提醒大家用云服务器安装组件不要用默认密码。 解决方案:重置镜像,重新安装,修改默认密码。安全组允许访问的ip不要全部开,需要哪个放开哪个。 问题截图: Read More
posted @ 2025-10-28 10:31 黎明的太阳 Views(6) Comments(0) Diggs(0)
问题描述:VMware workstation 安装centos7启动后修改网络ip无效,报错;启动后主机还会蓝屏。 原因:windows10/11需要适配VMware workstation 16及以上,并打开虚拟配置。 解决方案:官网下载安装VMware workstation 17,17已经对 Read More
posted @ 2025-09-16 11:03 黎明的太阳 Views(33) Comments(0) Diggs(0)
案例: <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>Demo</title> <!-- Read More
posted @ 2025-04-22 17:06 黎明的太阳 Views(109) Comments(0) Diggs(0)
错误描述: DEBUG [org.hibernate.SQL] - SELECT orp.ATTR6 FROM DISTRIBUT_VIEW d WHERE d.state = '1' AND d.oper_log LIKE '%下单%' GROUP BY orp.ATTR6 ERROR [org. Read More
posted @ 2024-10-12 17:30 黎明的太阳 Views(102) Comments(0) Diggs(0)
问题:根据id查询订单报错,查出来多个。order = orderService.findById(n.getOrderId()); 原因:hibernate映射关系一对多,回根据id查出来多条记录,然后抛出异常。 解决方案: 使用原生sql查询。select * from order where Read More
posted @ 2024-07-17 18:54 黎明的太阳 Views(98) Comments(0) Diggs(0)
问题:勾选导出记录,form提交,后台报错,请求头太大。 原因:默认提交方法,get请求大小受限。 解决方案:改成post提交。 <form action="exportAction.action" id="myForm" method="post"> <input type="hidden" id Read More
posted @ 2024-07-04 13:55 黎明的太阳 Views(455) Comments(0) Diggs(0)
错误现象:IE浏览器异常js报错,谷歌正常。 错误原因: 父页面结果列表中open弹窗修改信息,子页面提交后,刷新父页面的form表单,显示新值。在新页面没刷新之前,又点击编辑,open子页面,此时在ie模式下,无法提交表单。 解决方案: 1简单方法。 父页面: form下写一个遮罩层。子页面提交后 Read More
posted @ 2024-06-20 18:14 黎明的太阳 Views(65) Comments(0) Diggs(0)
错误: 2024-06-19 13:23:09,873 INFO [com.t.extend.SpringContextLoaderListener] - generate index.html sucess 13:23:10.159 [RMI TCP Connection(3)-127.0.0.1 Read More
posted @ 2024-06-19 14:40 黎明的太阳 Views(31) Comments(0) Diggs(0)
需求:要在一个弹窗中,点击加入按钮时,弹出另外一个弹窗。 实现方法:原来已经存在一个pop.css 弹窗,只能存在一个弹窗。只能加载另外一个框架layui的弹窗。 Read More
posted @ 2024-06-18 13:51 黎明的太阳 Views(64) Comments(0) Diggs(0)
效果图: 流程:列名加两个箭头图片;点击下箭头,触发倒排序,点击上箭头触发正排序。 实现:列名上加两个图标,给图标加点击事件,form表单隐藏域加两个文本框存储排序和字段名,触发搜索事件,搜索结果按某个字段拍好序列。 优点:每次点击都是独立事件,不用存储上次结果,每次加载新数据,后端排序,兼容搜索。 Read More
posted @ 2024-06-18 13:48 黎明的太阳 Views(30) Comments(0) Diggs(0)