`
wcq881215
  • 浏览: 4248 次
  • 性别: Icon_minigender_1
  • 来自: 上海
社区版块
存档分类
最新评论
文章列表
1.删除带有关系的节点   a、先删除关系 match (n:Node)-[r:关系名称]-() where (n...条件) delete r   b、删除节点 match (n:Node) where (n...条件)  delete n 2.批量更新   :param batch:[{prop1:'property1',prop2:'property2'},{prop1:'property11',prop2:'property22'}] UNWIND $batch  as data MATCH (c:Label1)-[r:关系]->(d:Label2) where c.pro ...

jstl语法

1.scope中数据的调用 在java代码中session.setAttribute("session_member", member); //member为基本数据类型或其封装类或String${ sessionScope.session_member} 在页面上调用;   如果member为对象; 那么页面调用的时候${ sessionSc

linux几个常用命令

find . -name  *.js 查找当前文件夹下面的js文件;   find . -name  *.js|xargs chmod a-x 去掉所有js的执行权限;   chmod -R a+xrw a 对a文件夹赋权限读写执行权限;   ps -ef|grep httpd 查看apache的运行信息;   grep -lr abc ./ 查看内容含有abc的文件名称;   netstat -lpn 显示当前用户占用端口;   df -h 显示全部磁盘大小信息;   du -sh ./ 显示当前目录大小信息;   tar -cvf a.tar ./ 把当前文 ...
Global site tag (gtag.js) - Google Analytics