摘要:
先进入oracle用户 su - oracle 1. 用户模式: 导出用户所有对象以及对象中的数据 将数据库中test用户与test用户的表导出到d:\daochu.dmp中 exp test/test@orcl file=d:\daochu.dmp owner=(test,test1) 2. 表模 阅读全文
摘要:
[2020-11-28 13:24:09:267 CST] [ERROR] [localhost-startStop-1] [org.apache.dubbo.registry.integration.RegistryDirectory:323] - urls to invokers error . 阅读全文
摘要:
转自:https://blog.csdn.net/joyce0323/article/details/83543243 https://www.sysgeek.cn/windows-10-change-priority-order-network-adapters/ 阅读全文
摘要:
转自:https://www.cnblogs.com/bill89/p/11044928.html 阅读全文
摘要:
转自:https://www.jianshu.com/p/c38a80447389 阅读全文
摘要:
update CMS.CI_MONITOR t set t.eyes_type = 'fl1';commit; --挖坑 create table tmp_ci_monitor asselect * from cms.ci_monitor as of timestamp sysdate-15/60/ 阅读全文
摘要:
问题: bug: 解决方法,写在内部: 阅读全文
摘要:
String date = "2017-09-19 14:40:01"; String response = date.replaceAll("[[\\s-:punct:]]",""); 转:https://blog.csdn.net/sswh5123/article/details/7802983 阅读全文
摘要:
阶段处理描述 验证 validate 验证项目 验证项目是否正确且所有必须信息是可用的 编译 compile 执行编译 源代码编译在此阶段完成 测试 Test 测试 使用适当的单元测试框架(例如JUnit)运行测试。 包装 package 打包 创建JAR/WAR包如在 pom.xml 中定义提及的 阅读全文
摘要:
#{}是预编译处理,${}是字符串替换。 Mybatis在处理#{}时,会将sql中的#{}替换为?号,调用PreparedStatement的set方法来赋值; Mybatis在处理${}时,就是把${}替换成变量的值。 使用#{}可以有效的防止SQL注入,提高系统安全性。 阅读全文