12 2012 档案

摘要:参考:Git server on WindowsRepositoriesCreate a directory that contains your Git repositories, for example: D:/dev/repo/git. To get you started, go to the directory and create an empty Git repository.1cd D:/dev/repo/git2git init --bare Test.gitApache configurationIn this tutorial I use Apache 2.2.19. Y 阅读全文
posted @ 2012-12-12 18:45 维唯为为 阅读(1064) 评论(0) 推荐(0) 编辑
摘要:摘自:iLinux0Feb 22 2006 4:26PMCONVERT(CHAR(19), CURRENT_TIMESTAMP, 0)102/22/06CONVERT(CHAR(8), CURRENT_TIMESTAMP, 1)206.02.22CONVERT(CHAR(8), CURRENT_TIMESTAMP, 2)322/02/06CONVERT(CHAR(8), CURRENT_TIMESTAMP, 3)422.02.06CONVERT(CHAR(8), CURRENT_TIMESTAMP, 4)522-02-06CONVERT(CHAR(8), CURRENT_TIMESTAMP, 阅读全文
posted @ 2012-12-12 18:44 维唯为为 阅读(587) 评论(0) 推荐(0) 编辑
摘要:摘自:jiazimo的专栏两个小例:运用El表达式截取字符串${fn:substring(wjcd.lrsj, 0, 16)}使用functions函数来获取list的长度${fn:length(list)}一、内置函数两个小例:运用El表达式截取字符串${fn:substring(wjcd.lrsj, 0, 16)}使用functions函数来获取list的长度${fn:length(list)}1.引入functions标签库<%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/function 阅读全文
posted @ 2012-12-12 18:42 维唯为为 阅读(1572) 评论(0) 推荐(0) 编辑
摘要:建立google code 与github的git 版本控制的代码库先下载并安装好gitgithub与google code都有git下载github:https://help.github.com/articles/set-up-gitgooglecode:http://code.google.com/p/msysgit/downloads/list#对提交设置默认的名字$ git config --global user.name "Your Name Here"#设置全局($HOME/.gitconfig)的email信息$ git config --global u 阅读全文
posted @ 2012-12-12 18:41 维唯为为 阅读(290) 评论(0) 推荐(0) 编辑
摘要:手动安装Maven依赖包例如要安装这样一个依赖到maven本地仓库:1.将此依赖添加到项目的pom.xml<dependency> <groupId>com.microsoft.sqlserver</groupId> <artifactId>sqljdbc4</artifactId> <version>3.0</version></dependency>2.在命令行中执行install命令mvn install:install-file -Dfile=sqljdbc4-3.0.jar -Dgroup 阅读全文
posted @ 2012-12-12 18:34 维唯为为 阅读(870) 评论(0) 推荐(0) 编辑
摘要:各种数据库Hibernate链接配置Derbydb driver maven dependency<dependency><groupId>org.apache.derby</groupId><artifactId>derbyclient</artifactId><version>10.2.2.0</version></dependency>hibernate.propertieshibernate.dialect=org.hibernate.dialect.DerbyDialecthibernat 阅读全文
posted @ 2012-12-12 18:32 维唯为为 阅读(12845) 评论(0) 推荐(1) 编辑
摘要:配置http访问站点编辑httpd.conf文件#方式一:配置虚拟主机<VirtualHost localhost> #ServerAdmin luowei010101@gmail.com DocumentRoot "D:/javascript/js_projects" #ServerName vvvv.com ErrorLog "D:/javascript/js_projects/error.log" <Directory "D:/javascript/js_projects"> Options Indexe 阅读全文
posted @ 2012-12-12 18:30 维唯为为 阅读(150) 评论(0) 推荐(0) 编辑