在APACHE服务器上的访问方式上去除index.php下面我说下apache下,如何去掉URL里面的index.php例如:你原来的路径是:localhost/index.php/index改变后的路径是:localhost/index1.httpd.conf配置文件中加载了mod_rewrite...
分类:
Web程序 时间:
2014-05-16 05:12:22
阅读次数:
351
text/html;charset=UTF-8 ...
分类:
编程语言 时间:
2014-05-16 04:59:21
阅读次数:
338
线性推,矩阵乘法+快速幂求通项。
传送门:点击打开链接
#include
#include
#include
#include
using namespace std;
#define LL long long
struct Mat{
LL f[2][2];
};
LL MOD;
Mat mul(Mat a,Mat b)
{
LL i,j,k;
...
分类:
其他好文 时间:
2014-05-15 14:53:10
阅读次数:
225
Divide two integers without using multiplication, division and mod operator.
public class Solution {
public int divide(int dividend, int divisor) {
int sign = 1;
if (dividend < 0) {
...
分类:
其他好文 时间:
2014-05-15 14:40:50
阅读次数:
285
前段时间有个需求在springmvc mapping的url跳转前完成一个统计的业务。显然需要进行异步的处理,不然出错或者异常会影响到后面的网页跳转。异步的方式也就是非阻塞式的,当异步调用成功与否程序会接着往下执行,不必等到输入输出处理完毕才返回。
主要用到httpasyncclient-4.0.1.jar,httpclient-4.3.2.jar,httpcore-4.3.2.jar,http...
分类:
编程语言 时间:
2014-05-15 06:37:55
阅读次数:
359
1、使用新建线程结合handler来更新UI线程中的 ListView,快速点击“刷新”,会出现下面的错误:
??
The content of the adapter has changed but ListView did not receive a notification. Make sure the content of your adapter is not mod...
分类:
其他好文 时间:
2014-05-15 02:30:17
阅读次数:
254
Difference Between Mod_Python & Mod_Wsgi |
eHow x YES NO Why not? Thanks for helping us to make eHow better for everyone.
eHow Computers Computer Netw...
分类:
编程语言 时间:
2014-05-15 02:12:12
阅读次数:
390
mod_python: the long story - Grisha
TrubetskoyMod_python: The Long StoryOct 25th, 2013 | CommentsThis story started
back in 1996. I was in my early tw...
分类:
编程语言 时间:
2014-05-15 01:46:29
阅读次数:
393
一、使用事务
1、spring配置文件中开启事务注解机制
2、在方法上使用@Transactional注解来使用事务
二、使用事务注意事项
1、只能在一个类中调用另一个类中的事务方法。
2、事务默认对RunTimeException进行回滚,用rollbackfor=Exception.class可指定对所有异常回滚。
3、...
分类:
编程语言 时间:
2014-05-14 19:19:16
阅读次数:
379
在系列(2)中我们展示了一个简单的get请求,并返回了一个简单的helloworld页面。本篇我们来学习如何来配置一个action的url映射规则。在系列(2)中我们在HelloWorldController上配置了一个@RequestMapping(value
= "/helloworld")这表...
分类:
编程语言 时间:
2014-05-14 11:09:46
阅读次数:
424