- 浏览: 216290 次
- 性别:
- 来自: 广州
最新评论
-
路温舒:
后台数据有变化的时候是怎么自动推送到前台的?
DWR推送技术运用 -
wzwahl36:
Json在线转Javabean工具 http://www.at ...
发现了google的gson,javabean与JSON转换 -
wzwahl36:
Json在线转Javabean工具 http://www.at ...
发现了google的gson,javabean与JSON转换 -
xiaolang078:
我的qq邮箱:374958285@qq.com ...
DWR推送技术运用 -
mly799280326:
不错,问题解决,谢谢
对于spring security3中自定义securityMetadataSource时,无法注入要使用的dao问题解决方案
文章列表
JTable 使用细讲,好爽
JTable是Swing编程中很常用的控件,这里总结了一些常用方法以备查阅.
一.创建表格控件的各种方式:
1) 调用无参构造函数.
JTable table = new JTable();
2) 以表头和表数据创建表格.
Object[][] cellData = {{"row1-col1", ...
java Txt文件读写操作 重写内容
- 博客分类:
- java se
package com.test.file;
import java.io.BufferedReader;
import java.io.File;
import java.io.FileOutputStream;
import java.io.FileReader;
import java.io.FileWriter;
import java.io.IOException;
import java.io.RandomAccessFile;
import java.util.ArrayList;
import java.util.List;
public class AppendToFile ...
微信wap开发---页面自适应大小
<meta name="viewport" content="width=device-width, initial-scale=0.5, minimum-scale=0.3, maximum-scale=2.0, user-scalable=yes" />
<meta content="yes" name="apple-mobile-web-app-capable" />
<meta ...
CAS 单点登录札记
- 博客分类:
- CAS
server:cas-server-3.4.12-release.zip
client:cas-client-3.2.1-release.zip
1、准备cas-server-3.4.12-release.zip
拷贝modules下的cas-server-webapp-3.4.12.war至 tomcat下,并重命名服务为cas
2、.不采用https验证,服务器端需要配置
修改第一处:
cas/WEB-INF/deployerConfigContext.xml
<bean class="org.jasig.cas.authentication.handl ...
Spring 事务管理器
- 博客分类:
- spring
Spring事务配置的五种方式
前段时间对Spring的事务配置做了比较深入的研究,在此之间对Spring的事务配置虽说也配置过,但是一直没有一个清楚的认识。通过这次的学习发觉Spring的事务配置只要把思路理清,还是比较好掌握的。
总结如下:
Spring配置文件中关于事务配置总是由三个组成部分,分别是DataSource、TransactionManager和代理机制这三部分,无论哪种配置方式,一般变化的只是代理机制这部分。
DataSource、TransactionManager这两部分只是会根据数据访问方式有所变化,比如使用Hibe ...
为了设计GPS地图显示轨迹程序 为了查询某段时间的轨迹而想设计一个弹窗对话层
<%@ page language="java" import="java.util.*" pageEncoding="gb2312"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServ ...
一天 不小心把数据库的某用户表的别人的用户密码改了 当想帮他改回去的时候才知道忘记备份
这时利用10G的闪回 可以恢复修改的数据
Flashback table portal.t_base_user to timestamp to_timestamp('2012-11-08 15:00:00','yyyy-mm-dd hh24:mi:ss');
提示ORA-08189: 因为未启用行移动功能, 不能闪回表
所以执行以下语句 再执行闪回
alter table portal.t_base_user enable row movement;
成功闪回修改
package com.redis.test;
import redis.clients.jedis.Jedis;
import redis.clients.jedis.JedisPool;
import redis.clients.jedis.JedisPoolConfig;
public class JedisPubSubTest {
public static JedisPool pool;
static {
JedisPoolConfig jedispool_config = new JedisPoolConfig();
jedispool_c ...
java 查询某一天的数据
- 博客分类:
- java se
public List findLineDataByProperty(String propertyName, Object value) {
log.debug("finding VehicleInfo instance with property: " + propertyName
+ ", value: " + value);
SimpleDateFormat sf =new SimpleDateFormat("yyyy-MM-dd");
Calendar rightNow =Calendar.get ...
public boolean addFileContent(final DocTransfer docTransfer, String enconding, boolean isBom, String fileName) {
boolean bool = false; StringBuffer updateXmlSqlStr = new StringBuffer();
// DOC_TRANSFER_BACKUP DOC_TRANSFER
String sql2 = updateXmlSqlStr.append("insert into ").appen ...
一、处理过程
1.通过查找出已被锁定的数据库表及相关的sid、serial#及spid:
select object_name as 对象名称,s.sid,s.serial#,p.spid as 系统进程号
from v$locked_object l , dba_objects o , v$session s , v$process p
where l.object_id=o.object_id and l.session_id=s.sid and s.paddr=p.addr;
2.在数 ...
oracle 查询用户表名 与描述
- 博客分类:
- oracle
查义表名与comments
select distinct a.table_name, b.comments from user_tables a,ALL_TAB_COMMENTS b where a.table_name=b.table_name
查询字段的名字和comments
select distinct a.COLUMN_NAME,b.comments from user_tab_columns a,user_col_comments b where a.TABLE_NAME=b.table_name and a.table_name=upper('A_COUN ...
EXTJS表格行提示信息
- 博客分类:
- extjs
listeners: {
render: function(g){
var view = g.getView();
var store = g.getStore();
var rowTip = new Ext.ToolTip({
target: view.mainBody,
...
在项目中经常用到的按时间段搜索数据的条件
ExTJS搜索表单代码如下:
this.formField = {
contaNo :{
xtype:'textfield',
fieldLabel: '集装箱号',
cls:'x-upper-text',
width:120,
name: 'contaNo',
vtype:'alphanum',
...
在JDK 5之后,Java使用了新的内存模型。volatile关键字有了明确的语义——在JDK1.5之前,volatile是个关键字,但是并没有明确的规定其用途——被volatile修饰的写变量不能和之前的读写代码调整,读变量不能和之后的读写代码调整! ...