过滤器,是在java
web中,你传入的request,response提前过滤掉一些信息,或者提前设置一些参数,然后再传入servlet或者struts2的action进行业务逻辑,比如过滤掉非法url(不是login.do的地址请求,如果用户没有登陆都过滤掉),或者在传入servlet或者
s....
分类:
其他好文 时间:
2014-07-22 23:16:33
阅读次数:
440
org.hibernate.exception.SQLGrammarException:
Could not execute JDBC batch update
分类:
数据库 时间:
2014-07-22 23:15:14
阅读次数:
417
解决方案 修改jbpm.hibernate.cfg.xml文件为
//org.hibernate.dialect.MySQLDialect 修改为
org.hibernate.dialect.MySQLInnoDBDialect ...
分类:
其他好文 时间:
2014-04-30 21:23:40
阅读次数:
445
在JavaWeb开发中,使用tomcat,与字符编码有关的有浏览器当前使用的编码(用于请求数据的编码),如果是jsp页面且没有手动修改浏览器浏览器编码,则就是page指令的pageEncoding属性所指定的编码tomcat的server.xml中的Connector元素的URIEncoding和u...
分类:
其他好文 时间:
2014-04-30 21:01:54
阅读次数:
507
在做项目时遇到了这个异常,网上一查才知道 JSTL core库的版本问题。
当我们在web.xml中使用: ..... 时 我们在jsp才用方式引入。 而当我们的web.xml是 或 则需要: 在jsp中用方式引入。
若若版本不对应在运行时可能...
分类:
其他好文 时间:
2014-04-30 19:40:13
阅读次数:
443
java中结合struts2自定义标签的使用一、建立一个继承于SimpleTagSupport类实现它的doTag方法
1 package com.xiangshang.tag; 2 3 import java.io.IOException; 4 import
java.util.List; 5 ....
分类:
编程语言 时间:
2014-04-30 16:51:52
阅读次数:
619
这是微软官方SignalR 2.0教程Getting Started with Entity
Framework 6 Code First using MVC 5 系列的翻译,这里是第三篇:排序、筛选和分页原文:Sorting, Filtering,
and Paging with the Enti...
分类:
Web程序 时间:
2014-04-29 16:25:46
阅读次数:
691
获取contextPath 获取requestURI
分类:
其他好文 时间:
2014-04-29 11:41:46
阅读次数:
313
【转】Hibernate的getSQLQuery方法对char类型的解析问题建立数据库:create table T_TEST1( id char (32),
name varchar (255), other varchar (255), primary key(id))insert into T...
分类:
数据库 时间:
2014-04-29 11:24:46
阅读次数:
456
js方式的页面跳转1.window.location.href方式
2.window.navigate方式跳转
3.window.loction.replace方式实现页面跳转,注意跟第一种方式的区别有3个jsp页面(1.aspx, 2.aspx,
3.aspx),进系统默认的是1.aspx,当我进...
分类:
Web程序 时间:
2014-04-29 11:11:47
阅读次数:
402