在pom文件中加入如下配置 <plugin>
<artifactId>maven-resources-plugin</artifactId>
<executions>
<execution>
<id>copy-resources</id>
<phase>compile</phase>
<goals>
<goal>copy-resourc...
分类:
其他好文 时间:
2015-09-21 18:03:02
阅读次数:
135
一、切入点表达式 1、execution:匹配方法的执行 格式:execution(修饰符 返回值类型 包.类.方法(参数) throw 异常) 1.1修饰符,表示方法的修饰符,一般省略。 1.2返回类型 String表示返回String;void表示没有返回值;*表示返...
分类:
Web程序 时间:
2015-09-21 13:51:58
阅读次数:
216
zhuanhttp://www.codemachine.com/article_x64deepdive.htmlX64 Deep DiveThis tutorial discusses some of the key aspects of code execution on the X64 CPU ...
分类:
其他好文 时间:
2015-09-19 10:48:44
阅读次数:
302
--统计sql语句执行效率SELECT (total_elapsed_time / execution_count)/1000 N'平均时间ms' ,total_elapsed_time/1000 N'总花费时间ms' ,total_worker_time/1000 N'所用的CPU总时间ms' ,...
分类:
数据库 时间:
2015-09-18 10:22:31
阅读次数:
228
1.使用insert into插入 ini_set('max_execution_time','0');//限制超时时间,因为第一种时间较长,索性设为0不限制 $pdo = new PDO("mysql:host=localhost;dbname=oradt_cloud1520","root"...
分类:
数据库 时间:
2015-09-17 15:13:25
阅读次数:
424
1.修改php的配置文件,找到php.ini文件 max_execution_time = 120 ;//设置成你想要的值,单位是秒2.使用ini_set()函数,使用这个函数来改变你的最大执行时间限制值 ini_set('max_execution_time', '100');则设置为100秒.....
分类:
Web程序 时间:
2015-09-17 11:29:16
阅读次数:
116
SSH(Secure SHELL) is an open source and most trusted network protocol that is used to login into remote servers for execution of commands and programs...
分类:
其他好文 时间:
2015-09-17 01:01:01
阅读次数:
178
<build> ? <plugin> <groupId>com.juvenxu.portable-config-maven-plugin</groupId> <artifactId>portable-config-maven-plugin</artifactId> <version>1.1.4</version> <executions> <execution> <goals> <goal...
分类:
其他好文 时间:
2015-09-16 18:18:50
阅读次数:
189
SELECT TOP 10 TEXT AS 'SQL Statement' ,last_execution_time AS 'Last Execution Time' ,(total_logical_reads + total_physical_reads + total_logical...
分类:
数据库 时间:
2015-09-16 17:51:09
阅读次数:
219
{MySql.Data.MySqlClient.MySqlException (0x80004005): Fatal error encountered during command execution. ---> MySql.Data.MySqlClient.MySqlException (0x8...
分类:
数据库 时间:
2015-09-16 15:33:27
阅读次数:
2840