上一页 1 ··· 4 5 6 7 8 9 10 11 下一页
摘要: 解压与重新打包说明,如isa-ucd-service-taskflow为例 cd /data/ucdapp/isa-ucd-service-taskflow unzip isa-ucd-service-taskflow.jar -d isa-ucd-service-taskflow unzip is 阅读全文
posted @ 2019-11-19 16:36 林被熊烟岛 阅读(586) 评论(0) 推荐(0) 编辑
摘要: 1.连接查询的表顺序 select a.empno,a.ename,c.deptno,c.dname,a.log_action from emp_log a,emp b,dept c 在执行时,oracle会先查询dept表,根据dept表查询的行作为数据源串行连接emp表继续执行,因此dept表又 阅读全文
posted @ 2019-11-19 12:03 林被熊烟岛 阅读(131) 评论(0) 推荐(0) 编辑
摘要: List list = operationsOfficeService.getOperationalProgress(param); Map<String, List> map = new HashMap<>(16); for(int i=0; i<list.size(); i++) { Map o 阅读全文
posted @ 2019-10-25 16:58 林被熊烟岛 阅读(375) 评论(0) 推荐(0) 编辑
摘要: 获取插件信息 比如查看插件目标有哪些参数可以使用、使用方式、示例、常见问题等: 网址:http://maven.apache.org/plugins/index.html 下载地址:http://repo1.maven.org/maven2/org/apache/maven/plugins/ 先将我 阅读全文
posted @ 2019-10-15 20:52 林被熊烟岛 阅读(2480) 评论(0) 推荐(0) 编辑
摘要: 一、NFS服务简介 NFS 是Network File System的缩写,即网络文件系统。一种使用于分散式文件系统的协定,由Sun公司开发,于1984年向外公布。功能是通过网络让不同的机器、不同的操作系统能够彼此分享个别的数据,让应用程序在客户端通过网络访问位于服务器磁盘中的数据,是在类Unix系 阅读全文
posted @ 2019-08-10 17:09 林被熊烟岛 阅读(292) 评论(0) 推荐(0) 编辑
摘要: 1.spring boot (jar包形式)启停 #!/usr/bin/env bash APP_NAME=whale-uip-datasource-0.0.1-SNAPSHOT #JVM参数 JVM_OPTS="-DPGM_ID=$APP_NAME -Dname=$APP_NAME -Xmx102 阅读全文
posted @ 2019-07-19 15:19 林被熊烟岛 阅读(767) 评论(0) 推荐(0) 编辑
摘要: 在文件 /etc/sysctl.conf 中添加 net.ipv4.ip_forward = 1 ,标识开启端口转发sysctl -p 立即生效配置 在iptables中添加路由转发,linux 命令: 阅读全文
posted @ 2019-06-03 16:53 林被熊烟岛 阅读(730) 评论(0) 推荐(0) 编辑
摘要: 1.计算当前时间最近的15分整点数据 select rdc.city_code as city_id, rdc.city_name, rdc.DIS_FAIL_ORDER_NUM as RES_PREE_FAILURE_NUM, --以下是计算最近的整分时间 to_char(sysdate, 'hh 阅读全文
posted @ 2019-04-28 14:36 林被熊烟岛 阅读(576) 评论(0) 推荐(0) 编辑
摘要: 接口获取参数方式1: @RequestMapping(value = "/commitExam", method = RequestMethod.POST, headers = "Accept=application/json") @ResponseBody public String commit 阅读全文
posted @ 2019-03-27 19:41 林被熊烟岛 阅读(621) 评论(0) 推荐(0) 编辑
摘要: 原来的保存function create or replace function get_area_path_name(areaId in number) return varchar2 is pathName varchar2(1000); begin select replace(to_char 阅读全文
posted @ 2019-03-20 16:29 林被熊烟岛 阅读(662) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8 9 10 11 下一页