- 浏览: 26663 次
- 性别:
- 来自: 广州
最新评论
文章列表
代码
web.xml记得加上
<filter>
<filter-name>openSessionInView</filter-name>
<filter-class>org.springframework.orm.hibernate4.support.OpenSessionInViewFilter</filter-class>
</filter>
<filter-mapping>
<filter-name>openSessionInView</filter-n ...
import java.awt.BasicStroke;
import java.awt.Graphics;
import java.awt.Graphics2D;
import java.awt.Image;
import java.awt.Shape;
import java.awt.geom.RoundRectangle2D;
import java.awt.image.BufferedImage;
import java.io.File;
import java.io.IOException;
import java.util.Hashtable;
im ...
import java.io.*;
public class ZDecodes extends FilterInputStream {
/**
* @param is the input stream to decompress
* @exception IOException if the header is malformed
*/
public ZDecodes(InputStream is) throws IOException
{
super(is);
pars ...
1、创建敏感字Map
public static Map addWordToHashMap(Set<String> keyWordSet) {
if(0 == keyWordSet.size()) return new HashMap();
Map map = new HashMap(keyWordSet.size());
String key = null;
Map nowMap = null;
Map<String, String> newWorMap = null;
...
<link href="/static/jquery-select2/3.4/select2.min.css" rel="stylesheet" />
<script src="/static/jquery-select2/3.4/select2.min.js" type="text/javascript"></script>
<link href="/static/bootstrap/2.3.1/css_cerulean/bootstrap.min.css ...
在页面中有个iframe 1
<iframe id="iframe1" src="${ctx}/product/list/" width="100%" height="91%" frameborder="0"></iframe>
而在list页面中有个方法mode,通过mode打开了另一个iframe2。
function mode(href){
top.$.jBox.open('iframe:'+href,'修改产品库存',$(top.do ...
在spring4.0 + mybatis + druid-1.0.11 中通过复写Spring 中的processProperties方法是实现不了.properties中的username和password 的加密的,因为好像druid会直接读取.properties中的东西,而不是直接在Spring管理的容器中获取。因此我们要通过其他的方法来实现加密。
在网上查询资料的过程中发现原来druid自己提供加密的方法具体流程看https://github.com/alibaba/druid/wiki/%E4%BD%BF%E7%94%A8ConfigFilter ...
1、复写processProperties方法实现
package com.*.*;
import java.util.Properties;
import org.springframework.beans.BeansException;
import org.springframework.beans.factory.config.ConfigurableListableBeanFactory;
import org.springframework.beans.factory.config.PropertyPlaceholderConfigurer; ...
在升级struts2.3.24后发现
HTTP Status 500 - Unable to instantiate Action, messageList!sendbox, defined for 'messageList!sendbox' in namespace '/personal'messageList!sendbox,messageList类中的sendbox方法发现报500错误,最终发现是因为
在使用动态方法调用,必须设置Struts2允许动态方法调用,通过设置struts.enable.DynamicMethodInvocation常量来完成,该常量属性的默认值是true,因此在 ...