- 浏览: 66684 次
- 性别:
- 来自: 杭州
最新评论
-
timer_yin:
感谢分享,原来mysql的AES加密用的是ECB模式
java mysql 通用aes加密算法 -
wddpwzzhao123:
需要在spring配置文件里引用这个类
加载数据库配置信息到spring容器中 -
yckiven:
敢问 测试过了么
加载数据库配置信息到spring容器中
文章列表
package com.sf.wop.common.util;
import java.text.DateFormat;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.Calendar;
import java.util.Date;
import java.util.GregorianCalendar;
import java.util.HashMap;
import java.util.Lis ...
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Easyui datagrid 行上下移动</title>
<link id="others_jquery_easyui_131" rel="stylesheet" type="text/css&qu ...
将下面脚本粘贴到tools->execute commands->edit/run script里运行。
Option Explicit
ValidationMode = True
InteractiveMode = im_Batch
Dim mdl ' the current model
' get the current active model
Set mdl = ActiveModel
If (mdl Is ...
1989年,吴孟达与刚出道的周星驰合演《盖世豪侠》和《他来自江湖》,从此开始了长达十几年的亲密关系,两人还以“干父子”相称,可谓感情深厚,然而2004年周星驰开拍《功夫》时吴孟达被传与周星驰不和,使吴孟达再没有与周星驰合作。
周星驰和吴孟达是认识了20多年的老朋友,所以按照吴孟达的说法就是,他和周星驰已经彼此了解到不能再了解的程度了。吴孟达告诉记者,早在1980年的时候,他就和周星驰认识了,又因为一起拍摄《他来自江湖》,成了特别好的朋友。“这些年,有关周星驰的负面新闻越来越多,大家都说他性格古怪,不好相处,这些话不是完全没有道理的,但是实际上,这是周星驰对自己要求太高的表现,比如,他觉得 ...
package ser;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
public class MyEclipseGen {
private static final String LL = "Decompiling this copyrighted software is a violation of both your license agreement and the Digital Millenium Copyri ...
将下面命令放在dos下运行
msg %username% /time:15 The whole point to remind.it's time: %time%.
dos命令弹出对话框---Msg命令详解
cmd下执行:
:::在当前用户的桌面弹出一个对话框, 显示哈哈二字, 并且十秒后自动关闭
::%usename%是系统环境变量, 表当前用户名
msg %username% /time:10 哈哈
::表示向局域网中的192.168.1.100 ip的机子的所有用户(*)发送消息Hello, 当然也可以是自己的ip, 或者某一个具体用户名, 如xiao
...
数据库停止在启动起来会卡在sql执行上
- 博客分类:
- mysql
名称: RecoveryFileThread4
状态: RUNNABLE
总阻止数: 2, 总等待数: 10
堆栈跟踪:
java.net.SocketInputStream.socketRead0(Native Method)
java.net.SocketInputStream.socketRead(SocketInputStream.java:116)
java.net.SocketInputStream.read(SocketInputStream.java:170)
java.net.SocketInputStream.read(SocketInputStrea ...
多个使用or拼接。
EXPLAIN SELECT rs.id id, rs.operatortime operatortime, rs.asnno asnno, rs.source source, rs.asnstatus asnstatus from tb_receipt_status rs
where (asnno,source,asnstatus) in (('11111','FLWMS','22')) or (asnno,source,asnstatus) in (('22222','FLWMS','11'));
1SIMPLErsrangeunique_keyu ...
show keys from tb_receipt_status;
show keys from tb_receipt_transaction;
-- 入库状态表
alter table tb_receipt_status add unique key `unique_key`(asnno, source, asnstatus);
-- 交易事务(收货明细)
alter table tb_receipt_transaction add unique key `unique_key`(transactionid, source);
-- 上架任务
alter table tb_t ...
plugins 加入datetimebox_ten模块
plugins : ["draggable", "droppable", "resizable", "pagination", "tooltip", "linkbutton", "menu", "menubutton", "splitbutton", "progressbar", "tree", "t ...
<?php
if(!defined('DEDEINC')) exit("Request Error!");
/**
* 文档类
*
* @version $Id: arc.archives.class.php 4 15:13 2010年7月7日Z tianya $
* @package DedeCMS.Libraries
* @copyright Copyright (c) 2007 - 2010, DesDev, Inc.
* @license http://help.dedecms.c ...
<?php
class TagReplaceApi{
public function tagReplace($content, $tags){//替换内容及所有tags
$replaceArr = array();
$tagslength=count($tags);
for($i=0; $i<$tagslength; $i++) {
$content = $this -> tagReplaceContent($content, $tags[$i], $replaceArr, $i);
}
foreach($replaceArr ...
public class EmployeeInfoServiceFactory {
private static EmployeeInfoService employeeInfoService;
public static EmployeeInfoService getEmployeeInfoServiceInstance() {
if(employeeInfoService == null) {
JaxWsProxyFactoryBean factory= new JaxWsProxyFactoryBean();
factory.setSer ...
package com.sf.module.gui.configcopy.util;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.util.Enumeration;
import java.util.jar.JarEntry;
import java.util.jar.JarFile;
import java. ...
jboss部署配置使用教程
- 博客分类:
- jboss
1. Jboss启动停止脚本
#!/bin/bash
# start or stop Instance "default_gw"
JBOSS_HOME=/app/jboss/jboss-as
INSTANCE="default_gw"
LISTEN_IP="0.0.0.0"
JMX_PORT="1199"
JBOSS_PIDFILE="$JBOSS_HOME/logs/$INSTANCE.pid"
export CONF_PATH="/app/appconf/$ ...