- 浏览: 7186 次
最新评论
文章列表
1.新建maven-webapp项目
mySpringMVC
右键项目->Properties->Java Build Path->Libraries
移除自带的JRE,添加本地的JRE
2.在src/main目录下新建java文件夹
3.修改pom.xml文件
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocatio ...
import java.io.UnsupportedEncodingException;
import java.security.InvalidKeyException;
import java.security.NoSuchAlgorithmException;
import java.security.SecureRandom;
import java.util.Date;
import javax.crypto.BadPaddingException;
import javax.crypto.Cipher;
import javax.crypto.Illega ...
import java.io.IOException;
import java.io.InputStream;
import java.util.Properties;
public class PropertiesUtil {
private static Properties prop = new Properties();
public static void readProperties(String filename){
try {
InputStream in = PropertiesUtil.class.getClassLoader().getR ...
import java.security.MessageDigest;
public class MD5Util {
public static String encrypt32(String encryptStr) {
MessageDigest md5;
try {
md5 = MessageDigest.getInstance("MD5");
byte[] md5Bytes = md5.digest(encryptStr.getBytes());
StringBuffer hexValue = new StringBuffer();
for ...
今天项目中遇到一个问题,页面有多个conbobox控件,其中一部分是隐藏起来默认不展示的;
然后通过JS事件把隐藏combobox全部展开以后,发现combobox下拉框错位了;
但是单独展开隐藏的combobox,下拉框又是正常的。
只有在IE8中有这个问题,在chrome中没有这个问题。
一开始以为这是样式问题
然后就开始查资料,论坛百度之类的,一开始没有找到解决办法。
最后阴差阳错的在博客里找到了解决办法,博客地址如下:
http://blog.csdn.net/mafan121/article/details/52251824
只需要在JSP文件头更改声明即可
<!DOCTY ...
以window7专业版为例
一、 完全卸载Oracle(以Oracle 11g 64位服务端为例)
1. 右键我的电脑->管理->服务和应用程序->服务,停止所有Oracle服务。
2. 开始->程序->Oracle – OraDb11g_home1->Oracle Installation Products-> Universal Instal ...
从原来的source页面经过response.sendRedirect(url)跳转到指定的页面后,原来source页面的request对象消亡,在指定页面中执行request.getAttribute("loginName"),得到的将会是null;因此,sendRedirect经常和session配合使用;在source页面里通过session.setAttribute("loginName",loginName)将登录信息存储到session中,然后在指定页面中再通过session.getAttribute("userloginname&q ...