- 浏览: 117220 次
- 性别:
- 来自: 北京
-
最新评论
-
wangyuyang:
找到解决的办法了,谢谢!
linux安装mysql二进制文件tar.gz -
wangyuyang:
你这样设置能从其他主机访问这个mysql。我这里提示:mysq ...
linux安装mysql二进制文件tar.gz -
wl296784423:
撒的发
特殊字符转义 -
wl296784423:
阿萨德发生的[b][/b][i][/i][u][/u]
特殊字符转义 -
萧十一狼:
<result name="invalid.t ...
webwork token防止表单重复提交(转)
文章列表
转自(http://www.blogjava.net/jackstudio/archive/2006/11/09/80060.html)
spring有三种启动方式,使用ContextLoaderServlet,ContextLoaderListener和ContextLoaderPlugIn.
看一下ContextLoaderListener的源码,这是一个ServletContextListener
/**
* Initialize the root web application context.
*/
public void contextInitialized( ...
1.定义你自己的拦截器栈:
<interceptors>
<interceptor-stack name="submitToken">
<interceptor-ref name="token-session"/>
<interceptor-ref name="defaultStack"/>
</interceptor-stack>
</interceptors>
2.在需要防止重复提交的act ...
(转)
在用SSH做程序的时候,我要在数据库的外键表里插入数据,可是它总提示org.hibernate.TransientObjectException, 说主键id不可以插入到外键表中。数据库里也是没有插入进信息的,谁能告诉我这个错误到底是错在哪里啊?
原因:主键对象是暂态对象 因为它和外键对象都在同一个hibernate事务中这个事务没有提交主键对象就没有在数据库生成数据,那么你再用它的id插入外键表 当然是不行了
可能是hibernate配置文件的主外键关联配置的不对
解决方法:1)xml配置:原因就像上面的说的,你可以尝试着在 <many-to-one>里加入cascad ...
jquery弹出隐藏div
代码如下:
$(document).ready(function() {
//select all the a tag with name equal to modal
$('#media').click(function(e) {
//Cancel the link behavior
e.preventDefault();
var id = '#dialog';
//Get the screen height and width
var maskHeight = $(document).height();
...
一、动态设置元素readonly属性时,js里面的readOnly一定要大写O
document.getElementById("id").readOnly=true;
二、动态给表插入行:
function addRow(){
//动态插入一行,mediaMes是表对象
var oRow1=mediaMes.insertRow(mediaMes.rows.length);
//设置tr的id
oRow1.id="tr"+thisId;
//获得表总的行数
var aRows=mediaMes.rows;
//获得新 ...