- 浏览: 282976 次
- 性别:
- 来自: 宁波
最新评论
文章列表
各个框架官网 下载地址
- 博客分类:
- 自己备注
struts 官网
http://struts.apache.org/
struts 的所有版本
http://archive.apache.org/dist/struts/
struts jar包下载
http://archive.apache.org/dist/struts/binaries/
struts 源码下载
http://archive.apache.org/dist/struts/source/
spring主页
http://www.springsource.org/
spring下载 带了源码了 下载那个比较大的 project目录下
http:/ ...
oracle 函数综合小例子 日期的操作等
- 博客分类:
- 数据库
前提有一张学生表student 里面有个birthday字段(日期字段)
让你求出 大于10岁的学生 这边仅仅以年份判断
这里思路是把birthday与当前的日期相比 通过年份的差来判断
首先要把日期类型转化成字符串,
to_char(obj,formart)
to_char(birthday,'yyyyMMdd') 顺带一句
转化成日期 to_date(str,formart)
to_date(sysdate,'yyyy-mm-dd')
取得年份
substr(str,起始索引,截取长度)
substr(to_char(birthday,'yyyyM ...
sql 语句的 内连接 外连接 以及 交叉连接
- 博客分类:
- 数据库
sql的连接 分为三大类
1.内连接 2.外连接 3.交叉连接
1.内连接
内连接又分为3类 inner join
等值连接,不等值连接,自然连接
select *from table1 join table2 on table1.条件列名 = table2.条件列名
等价于
select table1.* ,table2.* from table1 A ,table2 B where table1.条件列名 =table2.条件列名
select * form table1 cross join table2 where table1.条件列名 = table ...
winrar4.0.1破解
- 博客分类:
- 破解
找到安装目录
我的电脑是默认的安装目录 C:\Program Files\WinRAR
创建一个文件rarreg.key
用文本编辑器打开(我用的editplus)
写入
RAR registration datawncnUnlimited Company LicenseUID=1b064ef8b57de3ae9b5264122122509b52e35fd885373b214a4a64cc2fc1284b77ed14fa2066ebfca6509f9813b32960fce6cb5ffde62890079861be576387177131ced835ed65cc743d9777 ...
jquery日常总结
- 博客分类:
- web 前端
1.checkbox操作
1.判断 有id的单个checkbox是否被选中
方法一 用attr属性
$("#showPoint").attr("checked")=="checked" 注意此处返回的是checked or undefined
方法二 用is方法$("#showPoint").is(":checked")==true 注意此处返回的是true or false
<input type="checkbox" id="showPoint ...
cxf是创建bus的时候会去jar包的META-INF目录下寻找org.apache.cxf.bus.factory这个文件
这个文件的内容是
org.apache.cxf.bus.spring.SpringBusFactoryorg.springframework.context.ApplicationContext
当你的环境是spring的换件 而且classpath下他找到了
org.apache.cxf.bus.spring.SpringBusFactoryorg.springframework.context.ApplicationContext这2个类 ,随 ...
环境 tomcat 集群 有一个定时器
为了防止所有集群的服务器都跑定时而出错
选择其中一台服务器 修改tomcat bin 目录下的
windows catalina.bat
linux catalina.sh
你定义的变量 必须以-D开头 否则System.getProperty()无法获取到该参数值
以 scheduler.start为例子
set JAVA_OPTS= -Dscheduler.start=true
System.getProperty('scheduler.start')可以获取到 true值
当获取到true时 那台服务器就会开始定时任务 其他服 ...
<hr/> 水平线
<!-- -->html注释
<big>大号字体
<small>小号字体
<em> 着重字体
<i> 斜体
<del> 删除字
<sub>下标体
<sup>上标体
<ins>插入字
<strong> 加重语气
用来展示不同的“计算机输出”标签的显示效果
<code>计算机代码</code>
<kbd>键盘码</kbd>
<tt>打字机代码&l ...
步骤一:下载已经绑定的开发工具
google刚出的 将sdk eclipse adt 结合在一起的包
下载地址:
http://developer.android.com/sdk/index.html
解压后可以直接使用
步骤二 下载phonegap最新版本
下载地址:
http://phonegap.com/download/
解压后 选择lib目录下的android目录
打开bin目录,修改里面的create.js文件 第140行
var args = WScript.Arguments, PROJECT_PATH="example",
...
<body><div name="zw1"><input type="text" id="zw11" name="zw11"><input type="text" id="zw11" class="zw11"></div><div id="zw2"><input type="text" id="zw12" name=& ...
jtom 分布式事务 配置小记
- 博客分类:
- 企业框架
Spring 通过AOP技术可以让我们在脱离EJB的情况下享受声明式事务的丰盛大餐,脱离Java EE应用服务器使用声明式事务的道路已经畅通无阻。但是很大部分人都还认为脱离Java EE应用服务器就无法使用JTA事务,这是一个误解。其实,通过配合使用ObjectWeb的JOTM开源项目,不需要Java EE应用服务器,Spring也可以提供JTA事务。
?正因为AOP让Spring拥有了脱离EJB容器的声明式事务能力,而JOTM让我们在脱离Java EE应用服务器下拥有JTA事务能力。所以,人们将AOP和JOTM称为Java软件开发的两个圣杯。
?本文将讲解Spring在不同环境下提 ...
(1) 基本的使用方法是
<bean id="propertyConfigurerForAnalysis" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
<property name="location">
<value>classpath:/spring/include/dbQuery.properties</value>
</property> ...
js 日期类型的转化
- 博客分类:
- web 前端
function parseDate(str) { var date = new Date(); if(null != str){ date.setTime(Date.parse(str.replace("-", "/"))); } return date;}
struts 上传的时候 tomcat的temp目录会生成好几个临时文件,真正上传的文件的临时文件struts将自动帮你删除,但是如果你表单提交的时候带了 参数 那么参数也会生成对应的临时文件,而且这些临时文件是不会被删除的,一般都在1K左右,不是很大,但考虑到挤压,可以做个定时器,每天去清理一下 temp目录