- 浏览: 34266 次
- 来自: 上海
最新评论
文章列表
http://blog.csdn.net/hereiskxm/article/details/7861759
(推荐)生成密钥对
因为这种方式不用把密钥卸载程序里,所以更安全
第一步:生成密匙对,我用的是rsa的密钥。使用命令 "ssh-keygen -t rsa"
[user1@rh user1]$ ssh-keygen -t rsa
Generating public/private rsa key pair.
Enter file in which to save the key (/home/user1/.ssh/id_rsa):
Create ...
问题分析
com.ibm.ws.webcontainer.annotation.WASAnnotationHelpercollectClasses unable to instantiate class
java.lang.UnsupportedClassVersionError:JVMCFRE003bad major version;class=com/soa/listener/SpringContextLoaderListener, offset=6
at java.lang.ClassLoader.defineClassImpl(NativeMethod) at java.lang ...
public void saveBlob(String path) throws SQLException, FileNotFoundException, IOException
{
//ITRDR_environment.xlsx
PreparedStatement pstmt= connection.prepareStatement("update blob_FILE set file =?where id =123456");
InputStream is = new FileInputStrea ...
转载自 Spring 让 LOB 数据操作变得简单易行
Spring 让 LOB 数据操作变得简单易行
本文讲解了在 Spring 中处理 LOB 数据的原理和方法,对于 Spring JDBC 以及 Spring 所集成的第三方 ORM 框架(包括 JPA、Hibernate 和 iBatis)如何处理 LOB 数据进行了阐述。
转载自Spring整合Hessian
前言:
近日着手研究了一下Hessian的rmi方案,因为客户端是多种移动终端平台,本来想采用传说中的phprpc(hprose?)的,但看了下官方的文档,发现没有object-c的版本,故而放弃。
跟着hessian 的官方例子走,跑起来是没有问题的,但我在试着跟spring整合的时候,出了不少的问题。记录一下,方便自己以及路人,呵呵。
环境说明:
深入浅出JMS(四)--Spring和ActiveMQ整合的完整实例
1. spring jdbc call oralce procedure:
final String callFunctionSql = "{call SP_Test(?,?,?)}";
List<SqlParameter> params = new ArrayList<SqlParameter>();
params.add(new SqlParameter(Types.INTEGER));
params.add(new SqlReturnResultSet(&q ...
import java.util.ArrayList;
import java.util.Collection;
import java.util.HashMap;
import java.util.Iterator;
import java.util.List;
import java.util.Map;
import net.sf.json.JSONArray;
import net.sf.json.JSONObject;
import net.sf.json.JsonConfig;
/**
* 后台数据转换成JSON操作的一些方法
*
* @a ...
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8" %>
<%@include file="/webapp/systempublic/common.jsp" %>
<html>
<head>
<title>客户清单管理</title>
<meta http-equ ...
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8" %>
<%@include file="/webapp/systempublic/common.jsp" %>
<%
String bingcount = (String)request.getAttribute("BINGCOUNT");
String messcount = (Str ...
一. 页面JSP代码如下
<%
String userName = (String)request.getAttribute("username");
%>
<html>
<head>
<title></title>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<script type="text/javascript&quo ...
http://blog.csdn.net/chaijunkun/article/details/6925889
计划任务确实是差不多每隔3秒钟被调度的,但是每次调度执行了任务方法两次。设想一下,这仅仅是个开销很小的例子,但是如果这个方法执行的是一个非常耗时耗资源的任务,好不容易执行完一次后又要执行一次,这是对计算资源的极大浪费。于是查找了一天的原因,最后在国外的一个论坛上找到了解决的办法(http://forum.springsource.org/showthread.php?33311-IoC-Container-initializes-my-app-twice)。
楼主ro ...
原因分析如下:
1:
If you set the <code>dataProvider</code> property and then immediately call
the <code>expandChildrenOf()</code> method, you may not see the correct behavior.
You should either wait for the component to validate,
or call the <code>validateNow()< ...
1.
padding: 0px 0px 9px 3px;
2.
padding: 0px 0px 9px 3;
1,2 两种在Ie 8 都可以正常解析;
但是在ie 11 解析时 第2 种 页面展示异常。
- 2015-03-18 14:56
- 浏览 293
- 评论(0)