Gradle Goodness: Init Script for Adding Extra Plugins to Existing ProjectsGradle is very flexible. One of the ways to alter the build configuration is...
分类:
其他好文 时间:
2014-12-27 10:07:36
阅读次数:
180
对于数据的批量增删改最慢的就是操作一条就提交一次事务。以下是对增删改操作的优化测试同样的300条数据 批量新增只提交一次事务 用时:10673.5444ms 批量新增只提交一次事务并把context.Configuration....
分类:
其他好文 时间:
2014-12-27 01:30:51
阅读次数:
153
在Linux中,给kernel传递参数以控制其行为总共有三种方法:1.build kernel之时的各个configuration选项。2.当kernel启动之时,可以参数在kernel被GRUB或LILO等启动程序调用之时传递给kernel。3.在kernel运行时,修改/proc或/sys目录下...
分类:
其他好文 时间:
2014-12-26 18:14:39
阅读次数:
345
今天本来是想要在自己本地搭建一个wamp环境用来做一些代码的测试和框架的学习。鉴于目前工作的时候用到了php5.5,所以就用了wamp-server V2.5版本,安装完成之后配置虚拟主机一直出现403,各种重启N次卸载重装,最后才好到问题的所在,故记录下来,希望其他同学有这样的问题的时候可以快速的...
分类:
Web程序 时间:
2014-12-26 16:14:22
阅读次数:
208
来自: http://www.blogjava.net/zJun/archive/2006/06/28/55511.htmlLog4J的配置文件(Configuration File)就是用来设置记录器的级别、存放器和布局的,它可接key=value格式的设置或xml格式的设置信息。通过配置,能够创...
分类:
其他好文 时间:
2014-12-26 16:04:59
阅读次数:
198
问题:在eclipse中设置了代理,然后git的时候报错cannot open git-upload-pack 解决:打开eclipse中的windows-->Preferences-->Team-->Git-->Configuration-->User Settings.然后点Add Entry新建一个键值对,输入...
分类:
其他好文 时间:
2014-12-25 20:41:55
阅读次数:
140
以管理员执行以下操作1、vi /etc/inittabid:5:initdefault: //设置系统运行级为5,如果本来就是5就无需修改id:5:respawn:/usr/sbin/gdm //添加到最后一行2、vi /etc/gdm/custom.conf# GDM configuration....
分类:
其他好文 时间:
2014-12-25 18:09:39
阅读次数:
159
using System;using System.Configuration;using System.Data;using System.Linq;using System.Web;using System.Web.Security;using System.Web.UI;using Syste...
分类:
数据库 时间:
2014-12-25 17:56:15
阅读次数:
219
<plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <executions> <execution> <phase>package</phase> <goals> <goal>jar</goal> </goals> <configuration> <cla...
分类:
编程语言 时间:
2014-12-25 11:34:35
阅读次数:
155
<configuration>
<system.webServer>
<security>
<requestFiltering allowDoubleEscaping="true"></requestFiltering>
</security>
</system.webServer>
</configuration>...