排列组合 啊……这题是要求c(n-1,0)+c(n,1)+c(n+1,2)+......+c(n+m-1,m) 这个玩意……其实就等于c(n+m,m) 好吧然后就是模P……Lucas大法好= = 我SB地去预处理 3 #include 4 #include 5 #include 6 #inc...
分类:
其他好文 时间:
2015-02-21 22:16:29
阅读次数:
236
今天笔者在写一个用S2SH的程序的时候,出现了下面的错误:org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sessionFactory' defined in class....
分类:
Web程序 时间:
2015-02-20 20:53:31
阅读次数:
210
先来说说这个坑爹的问题,其实本来我是没注意到的,因为程序跑起来一切都正常。但是在tomcat启动时飞速打印log时,在中间“隐藏”了一个错误:2015-02-15 16:03:22 [ catalina-exec-4:2202 ] - [ DEBUG ] [org.springframework.beans.TypeConverterDelegate] Original ConversionServ...
分类:
Web程序 时间:
2015-02-15 18:09:40
阅读次数:
265
使用注解简化了可以和Junit文章相比较看出。import org.junit.Assert;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.test.c...
分类:
编程语言 时间:
2015-02-12 18:38:21
阅读次数:
213
org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sessionFactory' defined in class path resource [applicationCo....
分类:
移动开发 时间:
2015-02-12 15:35:16
阅读次数:
175
package com.studySpring;
import org.springframework.beans.factory.annotation.Autowired;
public class Boss {
@Autowired
private Car car;
@Autowired
pri...
分类:
其他好文 时间:
2015-02-11 14:37:34
阅读次数:
131
1. BeanFactory 的结构体系如下: 2. XmlBeanFactory ,装载Spring配置信息 package org.springframework.beans.factory.xml; import org.springframework.beans.BeansException...
分类:
编程语言 时间:
2015-02-10 13:17:16
阅读次数:
200
Spring?定时任务配置
<?xml?version="1.0"?encoding="UTF-8"?>
<beans?xmlns="http://www.springframework.org/schema/beans"
????xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
????xml...
分类:
编程语言 时间:
2015-02-10 11:37:00
阅读次数:
218
SqlMapClient对象
这个对象是iBatis操作数据库的接口(执行CRUD等操作),它也可以执行事务管理等操作。这个类是我们使用iBATIS的最主要的类。
<!DOCTYPE beans PUBLIC "-//SPRING//DTD BEAN 2.0//EN"
"http://www.springframework.org/dtd/spring-beans-2....
分类:
编程语言 时间:
2015-02-09 23:14:48
阅读次数:
304
import java.beans.BeanInfo;import java.beans.Introspector;import java.beans.PropertyDescriptor;import java.lang.reflect.InvocationTargetException;impo...
分类:
其他好文 时间:
2015-02-09 17:49:24
阅读次数:
104