摘要:
修改my.ini文件中的 [mysql] default-character-set=gbk [mysqld] # The default character set that will be used when a new schema or table is# created and no ch 阅读全文
摘要:
从这段代码开始 ApplicationContext context = new ClassPathXmlApplicationContext("beans.xml"); PersonService personService = (PersonServiceBean)context.getBean 阅读全文
摘要:
我们都知道,使用springmvc要在web.xml中配置servlet:org.springframework.web.servlet.DispatcherServlet。那我们就从这个servlet开始,看看他的继承体系。 集成体系:DispatcherServlet是继承自FrameworkS 阅读全文
摘要:
tomcat管理session 理解tomcat是如何生成session的。 当用户请求到web资源有request.getSession()这段代码的时候,request首先会对请求的url判读是否带有';jsessionid='字符串的方式,如果有,则判断该jessionid的值是否存在,如果存 阅读全文
摘要:
在java的IO中就是运用装饰模式设计的。一层装饰一层如:DataOutputStream dos = new DataOutputStream(new BufferedOutputStream(new FileOutputStream("data.txt")));装饰模式的组成:1、抽象构件角色:... 阅读全文
摘要:
下载GraphicsMagick-1.3.21.tar.gz解压:tar -zxvfGraphicsMagick-1.3.21.tar.gzcd /usr/local/GraphicsMagick-1.3.21(解压到的路径)./configure '--build=i686-redhat-linu... 阅读全文
摘要:
先来看看HashMap的一些成员变量以及他们的含义 /** * The default initial capacity - MUST be a power of two. */ static final int DEFAULT_INITIAL_CAPACITY = 16;//... 阅读全文
摘要:
TreeSet存储原则是:不可重复,有序的。public TreeSet() { this(new TreeMap()); } public TreeSet(Comparator comparator) { this(new TreeMap(comparato... 阅读全文