- 浏览: 391737 次
- 性别:
- 来自: 杭州
最新评论
文章列表
1:注解的方式
<bean id="sessionFactory" class="org.springframework.orm.hibernate3.annotation.AnnotationSessionFactoryBean"">
<property name="packagesToScan">
<list>
<value>com.xx.xxx</value>
</list>
</prop ...
XmlBeanFactory过时替换方法
ClassPathResource res = new ClassPathResource("NewFile.xml");
DefaultListableBeanFactory factory = new DefaultListableBeanFactory();
XmlBeanDefinitionReader reader = new XmlBeanDefinitionReader(factory);
System.out.println(res.contentLength ...
在Spring3中,配置DataSource的方法有五种。
第一种:beans.xml
<bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource"
destroy-method="close">
<property name="driverClassName" value="com.microsoft.sqlserver.jdbc.SQLServerDriver&q ...
ParameterMethodNameResolver
InternalPathMethodNameResolver
PropertiesMethodNameResolver
定义一个Controller继承与MultiActionController
package cn.iwoo.server.controller;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import org.springframework.web.se ...
1.首先需要了解web.xml 两种参数
(1)application范围内的参数,存放在servletcontext中,在web.xml中配置如
<context-param>
<param-name>context/param</param-name>
<param-value>avalible during application</param-value>
</context-param>
这
代码中获取这个参数
(2)servlet范围内 ...
DispatcherServlet究竟如何将上下文中的Spring MVC组件Bean装配到DispatcherServlet实例中呢?通过查看DispatcherServlet的initStrategies()方法体中的代码,一切的真相就大白于天下了:
protected void initStrategies(ApplicationContext context) {
initMultipartResolver(); ①初始化上传文件解析器(直译为多部分请求解析器)
initLocaleResolver(); ②初始化本地化解析器
initThemeResolver(); ③初始化 ...
在配置文件定义URL的映射方式(HandlerMapping)。Spring提供了几种常用的HandlerMapping。
1.使用SimpleUrlHandlerMapping
SimpleUrlHandlerMapping提供了最简单的URL映射,通过Properties将URL和Controller对应起来,配置示例如下。
<bean id="simpleUrlHandlerMapping" class="org.springframework.web.servlet. handler.SimpleUrlHandlerMapping"> ...
<?xml version="1.0" encoding="UTF-8"?>
<beans
xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.spri ...
String中==与equals区别验证!java中堆与栈的真谛
String a ="abc";
String b ="abc";
String c = new String ("abc");
System.out.println(a==b);
System.out.println(a.equals(b));
System.out.println(a==c);
System.out.prin ...
上班第一天.base work
1.重装系统
2.开发环境
JDK1.6官方下载_JDK6官方下载地址:http://www.java.net/download/jdk6/6u10/promoted/b32/binaries/jdk-6u10-rc2-bin-b32-windows-i586-p-12_sep_2008.exe
JDK6 API CHM中文参考下载:
JDK6API中文参考070114.rar :http://chinesedocument.com/upimg/soft/JDK6API中文参考070114.rar
JDK1.5下载和Aptana Studio下载
h ...
Java虚拟机(JVM)参数配置说明
转至:http://blog.csdn.net/youfly/archive/2009/02/12/3884380.aspx
在Java、J2EE大型应用中,JVM非标准参数的配置直接关系到整个系统的性能。
JVM非标准参数指的是JVM底层的一些配置参数,这些参数在一般开发中默认即可,不需要任何配置。但是在生产环境中,为了提高性能,往往需要调整这些参数,以求系统达到最佳新能。
另外这些参数的配置也是影响系统稳定性的一个重要因素,相信大多数Java开发人员都见过“OutOfMemory”类型的错误。呵呵,这其中很可能就是JVM参数配置不当或者就没有配置没意识到 ...
假如 [分区表] 在字段 [createdate] 上进行分区,每个月为一个分区:
2009年6月为分区P200906
2009年7月为分区P200907
2009年8月为分区P200908
。。。
执行SQL 使用分区键检索:
select*from 分区表 t where createdate > to_date('2009-07-12','yyyy-mm-dd') and createdate < to_date('2009-08-12','yyyy-mm-dd')
执行计划如下,使用分区键进行索引,会自动在数据存在的区进行检索。因为开始区为2,结束区为3,一目了然。
S ...
新建一个vbs脚本 (xx.vbs)记事本打开
输入如下内容:
CreateObject("SAPI.SpVoice").Speak "深入挖掘Windows脚本技术"
CreateObject("SAPI.SpVoice").Speak "你好。世界"
然后保存,双击该文件,你便可听到.
1.多线程的原理
2.hibernate 缓存源码是怎么实现的。
3.共享缓存。
4.同步异步
5.ajax跨域访问
6.
l tcpdump [ -adeflnNOpqRStvxX ] [ -c count ] [ -F file ][ -i interface ] [ -m module ] [ -r file ][ -s snaplen ] [ -T type ] [ -w file ][ -E algo:secret ] [ expression ]
p –e:在输出行打印出数据链路层的头部信息
p –i:报文捕获监听的接口,如果不指定,默认为系统最小编号的接口(不包括loop-back接口)
p –n:不将IP地址或端口号转化为域名或协议名称
p –r:从文件中读取(该文件由-w选项创建)
p ...