摘要: 第一步查看eclipse版本号,因为下载包需要 2然后下载对应得中文包 下载地址: https://archive.eclipse.org/technology/babel/index.php 3、把文件解压然后放到dropins文件里面(需要替换文件点击替换就行),如何重启eclipse即可,刚开 阅读全文
posted @ 2023-05-17 15:52 羊小洋 阅读(56) 评论(0) 推荐(0) 编辑
摘要: var restTemplate = new RestTemplate();LinkedMultiValueMap<String, String> params = new LinkedMultiValueMap<>(); //http://localhost:8084/api/usb-key-in 阅读全文
posted @ 2022-07-25 16:34 羊小洋 阅读(70) 评论(0) 推荐(0) 编辑
摘要: discard java.sql.SQLSyntaxErrorException: SELECT command denied to user 'chinare'@'localhost' for table 'db' 解决办法 权限问题 使用root 登录 可以直接修改权限: GRANT ALL P 阅读全文
posted @ 2022-06-13 10:14 羊小洋 阅读(106) 评论(0) 推荐(0) 编辑
摘要: 查看权限 SHOW GRANTS FOR chinare@localhost; GRANT ALL PRIVILEGES ON chinare.* TO 'chinare'@'localhost'; SELECT command denied TO USER 'chinare'@'localhost 阅读全文
posted @ 2022-02-17 15:01 羊小洋 阅读(272) 评论(0) 推荐(0) 编辑
摘要: 出现原因: LayUI官方文档也明确表示:“当你使用表单时,layui 会对 select、checkbox、radio 等原始元素隐藏,从而进行美化修饰处理。但这需要依赖于 form 组件,所以你必须加载 form。” 所以我们必须加载form模块,才能使它完整地渲染出来。 解决方法: 在你js文 阅读全文
posted @ 2021-07-20 14:36 羊小洋 阅读(260) 评论(0) 推荐(0) 编辑
摘要: Eclipse使用Maven启动Tomcat(如tomcat6:run或tomcat7:run),调试时设置断点有可能会出现找不到源码的问题,显示Source not found.,如: 在run--》run configurations-->选中命令--》source-->add-->projec 阅读全文
posted @ 2020-03-19 10:26 羊小洋 阅读(313) 评论(0) 推荐(0) 编辑
摘要: 在使用Eclipse3.7及以后的版本的时候,加入jQuery文件会报错(missing semicolon),文件中会显示红色小X,虽然这个错误并不会影响项目的运行,但是这个却会大大的影响到开发人员的心情,看这总是很不爽,怎么样才能解决呢。 很简单,首先我们先分析下造成这种情况的原因,如果你是个心 阅读全文
posted @ 2020-02-12 11:45 羊小洋 阅读(210) 评论(0) 推荐(0) 编辑
摘要: Dictionary<String, String> pList = new Dictionary<String, String>(); 创建 pList.Add("Item1", "ZheJiang");添加 pList["Item1"] = "ShangHai"; 修改 阅读全文
posted @ 2017-04-19 16:15 羊小洋 阅读(132) 评论(0) 推荐(0) 编辑
摘要: 引用 using System.Data; DataSet ds xml.ConvertToDataSet(); 阅读全文
posted @ 2017-04-19 16:13 羊小洋 阅读(102) 评论(0) 推荐(0) 编辑