- 浏览: 210508 次
- 性别:
- 来自: 苏州
最新评论
-
ddccjjwwjj:
谢谢你总算找到一个正确的答案!!!
ExtJs 中 combo 获得displayField 和 valueField -
yulanlian:
uld not open ServletContext res ...
web.xml中配置Spring -
jinnianshilongnian:
id能进行SAX解析ID验证,name不行。name在使用如s ...
Spring配置中<bean>的id和name属性区别 -
白色蜻蜓:
不错顶下
s2sh框架搭建需要的jar包
文章列表
java.util.Date date = new java.util.Date();
..
ps.setDate(1, new java.sql.Date(date.getTime());
如果要具体时分秒的话,用:
ps.setTimestamp(1, new java.sql.Timestamp(date.getTime());
EXTJS学习网址
- 博客分类:
- javascript
http://www.bianceng.cn/webkf/Extjs/201004/16589.htm
前言
Java的路径问题,非常难搞。最近的工作涉及到创建和读取文件的工作,这里我就给大家彻底得解决Java路径问题。
我编写了一个方法,比ClassLoader.getResource(String 相对路径)方法的能力更强。它可以接受“../”这 ...
http://www.ibm.com/developerworks/cn/xml/x-dom4j.html
http://www.blogjava.net/junglesong/archive/2008/02/21/181196.html
/**
02 * 将inputFile复制到outputFile
03 *
04 * @param inputFile
05 * @param outputFile
06 * @throws IOException
07 */
08 public void fileCopy(File inputFile, File outputFile) throws IOException {
09
10 // for folder ...
简单的说:id用来标识bean,是唯一的,且只有一个;name定义的是bean的alias,可以有多个,并可能与其他的bean重名。
详细的说:
id是唯一标识bean.不能用特殊字符:×#@ ,不能用数字开头。在bean引用的时候只能用id指向你需要的bean;
name 可以用特殊字符,并且一个bean可以用多个名称:name=“bean1,bean2,bean3”,用逗号隔开。
通过id和name都可以取出该Bean.
BeanFactory factory=new XmlBeanFactory(new ClassPathResource("config.xml&quo ...
1. spring.jar 是包含有完整发布模块的单个jar 包。
2. org.springframework.aop 包含在应用中使用Spring的AOP特性时所需的类。
3. org.springframework.asm Spring独立的asm程序, Spring2.5.6的时候需要asmJar 包,3.0开始提供他自己独立的asmJar。
4. org.springframework.aspects 提供对AspectJ的支持,以便可以方便的将面向方面的功能集成进IDE中,比如Eclipse AJDT。
5. org.springframework.bean ...
http://hi.baidu.com/%EE%D1%D7%D300544/blog/item/8a26295250b536030df3e313.html
在基于Spring MVC的Web应用程序中,我们可以为DispatcherServlet提供多个Handler- Mapping供其使用。DispatcherServlet在选用HandlerMapping的过程中,将根据我们所指定的一系列HandlerMapping的优先级进行排序,然后优先使用优先级在前的HandlerMapping。如果当前的HandlerMapping能够返回可用的Handler,DispatcherServlet则使用当前返回的Handler进行Web请求的处理,而不再继续询问其他的HandlerMapping。否则,DispatcherServlet将继续按照各个H ...
http://tech.hexun.com/2010-12-29/126463761.html
web.xml 通过contextConfigLocation配置spring 的方式
SSI框架配置文件路径问题:
struts2的 1个+N个 路径:src+src(可配置) 名称: struts.xml + N
spring 的 1个 路径: src 名称: applicationContext.xml
ibatis 的 1个+N个 路径: src+src(可配置) 名称: SqlMapConfig.xml + N
部署到tomcat后,src目录下的配置文件会和class文件一样,自动c ...
我在fusioncharts的官网上找到答案了,有个scrollToEnd属性,scrollToEnd='1'就可以将滚动条置右。
网址如下:http://www.fusioncharts.com/flex/docs/charts/contents/ChartSS/ScrollLine2D.html#Scroll
jar包:commons-logging-1.1.jar;dwr.jar;
web.xml:
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_ ...
<%@ page language="java" contentType="text/html;charset=UTF-8"
pageEncoding="UTF-8"%>
<html>
<head>
<title>Ajax一</title>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8">
<script type="text ...