摘要:
下载地址:https://i.cnblogs.com/files generatorConfig.xml(Oracle数据库) <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE generatorConfiguration PUBLIC "-//myb 阅读全文
摘要:
1、普通用户切换root (1)sudo -i [tmn@localhost bin]$: sudo -i 通过这种方法输入当前普通用户的密码就可以进到root用户。 (2)如果想一直使用root权限,要通过su切换到root用户。 那我们首先要重设置root用户的密码: [tmn@localhos 阅读全文
摘要:
下载CamelCase插件 选中要转换的词,按Shift+Alt+U就可以转换,按多次,几种格式任选。 补充:idea转换大小写快捷键:Shift+Ctrl+U 阅读全文
摘要:
参考博文链接:https://www.cnblogs.com/shaosks/p/9617401.html apache-cxf发布包下载地址: http://cxf.apache.org/download.html 将下面这三个文件放到cxf的bin下面 在cmd中执行命令:(-d表示代码生成路径 阅读全文
摘要:
(1)jqgrid加载并获取所有行数据 //获取当前表格的所有数据 function getJQAllData() { var obj = jQuery("#jqGridId"); //获取当前显示的数据 var rows = obj.jqGrid('getRowData'); var rowNum 阅读全文
摘要:
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 * 阅读全文
摘要:
不等于符号会把code为null的记录过滤掉 SELECT * FROM person WHERE sex='女' and code != 'xxx'; 解决方法: SELECT * FROM person WHERE sex='女' and (code != 'xxx' or code is nu 阅读全文
摘要:
not exists能查出数据 SELECT * FROM students st WHERE not exists(selec... 阅读全文
org.hibernate.TransientObjectException: object references an unsaved transient instance - save the t
摘要:
报错:org.hibernate.TransientObjectException: object references an unsaved transient instance - save the transient instance before flushing: com.hp.pms.p 阅读全文
Unable to compile class for JSP:The code of method _jspService(HttpServletRequest, HttpServletRespon
摘要:
访问某个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 阅读全文