摘要: 下载地址:https://i.cnblogs.com/files generatorConfig.xml(Oracle数据库) <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE generatorConfiguration PUBLIC "-//myb 阅读全文
posted @ 2020-11-08 13:43 芃蓉蓁蓁 阅读(161) 评论(0) 推荐(0) 编辑
摘要: 1、普通用户切换root (1)sudo -i [tmn@localhost bin]$: sudo -i 通过这种方法输入当前普通用户的密码就可以进到root用户。 (2)如果想一直使用root权限,要通过su切换到root用户。 那我们首先要重设置root用户的密码: [tmn@localhos 阅读全文
posted @ 2020-11-04 16:15 芃蓉蓁蓁 阅读(1315) 评论(0) 推荐(0) 编辑
摘要: 下载CamelCase插件 选中要转换的词,按Shift+Alt+U就可以转换,按多次,几种格式任选。 补充:idea转换大小写快捷键:Shift+Ctrl+U 阅读全文
posted @ 2020-11-02 18:08 芃蓉蓁蓁 阅读(2716) 评论(0) 推荐(1) 编辑
摘要: 参考博文链接:https://www.cnblogs.com/shaosks/p/9617401.html apache-cxf发布包下载地址: http://cxf.apache.org/download.html 将下面这三个文件放到cxf的bin下面 在cmd中执行命令:(-d表示代码生成路径 阅读全文
posted @ 2020-11-02 17:54 芃蓉蓁蓁 阅读(345) 评论(0) 推荐(0) 编辑
摘要: (1)jqgrid加载并获取所有行数据 //获取当前表格的所有数据 function getJQAllData() { var obj = jQuery("#jqGridId"); //获取当前显示的数据 var rows = obj.jqGrid('getRowData'); var rowNum 阅读全文
posted @ 2020-10-29 10:33 芃蓉蓁蓁 阅读(2468) 评论(0) 推荐(0) 编辑
摘要: 1,排在最前面用order by name nulls first; eg:select * from table t where t.code!='1' order by name nulls first; 2,排在最后面order by name nulls last; eg:select * 阅读全文
posted @ 2020-10-28 15:30 芃蓉蓁蓁 阅读(252) 评论(0) 推荐(0) 编辑
摘要: 不等于符号会把code为null的记录过滤掉 SELECT * FROM person WHERE sex='女' and code != 'xxx'; 解决方法: SELECT * FROM person WHERE sex='女' and (code != 'xxx' or code is nu 阅读全文
posted @ 2020-10-10 16:37 芃蓉蓁蓁 阅读(838) 评论(0) 推荐(0) 编辑
摘要: not exists能查出数据 SELECT * FROM students st WHERE not exists(selec... 阅读全文
posted @ 2020-10-10 12:21 芃蓉蓁蓁 阅读(738) 评论(0) 推荐(0) 编辑
摘要: 报错:org.hibernate.TransientObjectException: object references an unsaved transient instance - save the transient instance before flushing: com.hp.pms.p 阅读全文
posted @ 2020-09-29 19:29 芃蓉蓁蓁 阅读(975) 评论(0) 推荐(0) 编辑
摘要: 访问某个jsp页面时报错:Unable to compile class for JSP: An error occurred at line: [173] in the generated java file: [C:\Users\23769.IntelliJIdea2019.3\system\t 阅读全文
posted @ 2020-09-29 17:00 芃蓉蓁蓁 阅读(166) 评论(0) 推荐(0) 编辑