偶尔有一些文件你不想让git提交到代码配置库上,这里有一些方法可以告诉git,有哪些文件可以忽略。 创建一个本地的.gitignore 如果你在你的git库(repository)中创建了一个名为.gitignore的文件,git会使用该文件来决定在commit之前忽略哪些文件和目录。 .gitig ...
分类:
其他好文 时间:
2017-08-04 09:58:52
阅读次数:
142
baseAction中: public void write2JsonArray(List<?> list, String[] excludes) throws IOException { // JsonConfig: 配置转换的json数据中不需要的属性 JsonConfig jsonConfig ...
分类:
编程语言 时间:
2017-08-03 17:38:58
阅读次数:
146
SQLmap是现在搞web人手一个的注入神器,不仅包含了主流数据库的SQL注入检测,而且包含提权以及后渗透模块。基于python2.x开发而成,使用方便。所以研究web安全少不了分析源码,学习代码的同时,也可以学习先进的漏洞检测技术。多的不多说,咱们来分析一下源码。 0x00 从入口文件开始 我们在 ...
分类:
数据库 时间:
2017-07-01 13:43:08
阅读次数:
339
Json-lib Json-lib 是一个 Java 类库(官网:http://json-lib.sourceforge.net/)可以实现如下功能: 转换 javabeans, maps, collections, java arrays 和 XML 成为 json 格式数据 转换 json 格式 ...
分类:
Web程序 时间:
2017-04-14 20:50:38
阅读次数:
461
Git笔记 一:知识点 1 Githug游戏通关流程-简书 :http://www.jianshu.com/p/482b32716bbe 有几个概念: (1)Woking directory (对应changes not staged for commited) (2)Staging area (对 ...
分类:
其他好文 时间:
2017-04-12 13:28:06
阅读次数:
245
在成功安装SublimeLinter-lua与luacheck以后,如果没有语法error,则会进行警告提示. 如下图 waring: line contains trailing whitespace. 这样的警告在项目代码里太多了,虽然sublime能够自动去除trailing,但是考虑到其他同 ...
分类:
其他好文 时间:
2017-03-21 00:03:05
阅读次数:
3120
用json过滤掉不需要序列化的属性 。解决Refrence和LazyLoading引起的死循环问题 。 这里用阿里巴巴的fastjson会更方便,性能更好。当返回的是一个对象,或集合,需要序列化回显到页面的,以返回list为例 举个例子: //将list数据序列化为json格式数据,返回到客户端浏览 ...
分类:
Web程序 时间:
2017-02-25 12:12:23
阅读次数:
312
idea编译器:file-》setting-》build,execution,deployment-》compiler1)可以设置自动编译,不建议使用2)heap默认设置700,出现OutofMemoryError时,加大这里的配置,改为1500或以上3)VM参数,一般不用compiler->excludes编译时可以设置跳过一些文件setting-》editor-..
分类:
其他好文 时间:
2017-02-23 14:15:26
阅读次数:
258
maven,在pom文件里 <build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.3</version>
<configuration>
<source>1.8</source>
<target>1.8&..
分类:
编程语言 时间:
2016-12-19 00:40:50
阅读次数:
430
Description Adjusts a text file to local conventions. The set of files to be adjusted can be refined with the includes, includesfile, excludes, exclud ...
分类:
编程语言 时间:
2016-12-05 14:05:13
阅读次数:
316