- 浏览: 706304 次
- 性别:
- 来自: 成都
最新评论
-
yajie870423:
为什么验证码到时间180秒了,还可以用
springsecurity3和JCaptcha的整合 -
Belong:
[img][i]引用[list]
[*][img][img][ ...
ckeditor的配置属性相关 -
纵观全局:
666666666666666 Mark !
Spring Security3 - MVC 整合教程 (初识Spring Security3) -
Hiderevenger:
,教程很好,循序渐进,融会贯通
Spring Security3 - MVC 整合教程 (初识Spring Security3) -
smileyangtest:
按了add怎么什么反映都没有,也没有报错什么的,什么都没有,请 ...
Spring3MVC和jQuery的集成
文章列表
ie下可以用
style="cursor:hand;"
表示鼠标移动到某控件时,鼠标变手掌型.
但在Firefox下不能显示
不过如果改成
style="cursor:pointer;"
IE和firefox都能使用
- 2009-07-20 17:42
- 浏览 1536
- 评论(0)
更新或添加时,英文输入没有问题,但是当输入中文的时候,
MySql里插入的却是 "?"
解决办法:
在jdbc:properties配置文件里,有个属性为
jdbc.url
表示JDBC的url路径
如:
jdbc.url=jdbc:mysql://127.0.0.1/lliipdb?zeroDateTimeBehavior=convertToNull
可以再最后加上 &characterEncoding=utf-8 表示编码格式转换成utf-8
添加后如下:
jdbc.url=jdbc:mysql://127.0.0.1/lliipdb?zeroDateTimeBe ...
- 2009-05-08 12:16
- 浏览 1532
- 评论(1)
完成一个上传功能.
IE8下能提交 但firefox3.5不能提交
找了半天才发现
<form>里的ID忘写了...写成name了.
但是ie8自动的把name的值丢到getElementById()里了...
firefox不能执行.
form里添加ID,改正后一切OK.
- 2009-05-06 16:25
- 浏览 1112
- 评论(0)
今天突然发现在firefox3浏览器中,一个整合了apache+tomcat项目中,以apache为服务器时.
当瞬间多次点击提交按钮, 提交后, 虽然转到了提交成功的页面 , 但弹出框体可能不会消失.再次点击则报错.
找到一个临时解决方法,虽然多次点击后在弹出框体闪烁时点击依然会报错.但是却能避免多次点击后必定报错的局面.
在onclick=""里加入一个无意义的函数名,甚至不需要写出函数
如:
<img src="images/tijiao.gif" alt="提交" style="cursor: hand" ...
- 2009-05-05 17:38
- 浏览 2003
- 评论(0)
转载http://www.iteye.com/topic/368070
感谢陈志平
package com.cnc.erp.jdbc;
import java.sql.Blob;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.ResultSetMetaData;
import java.sql.SQLException;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Has ...
- 2009-04-30 11:17
- 浏览 4258
- 评论(2)
Spring提供了3个模板类供选择:
■ JdbcTemplate—The most basic of Spring’s JDBC templates, this class provides
simple access to a database through JDBC and simple indexed-parameter
queries.(按照索引参数传递)
■ NamedParameterJdbcTemplate—This JDBC template class enables you to
perform queries where values are bound to ...
- 2009-04-16 10:33
- 浏览 5941
- 评论(1)
Connection is read-only. Queries leading to data modification are not allowed
如果出现以上的错误可能是由于事务配置文件上
<tx:advice id="txAdvice">
<tx:attributes>
<tx:method name="*" read-only="true" />
<tx:method name="insert*" />
<tx ...
- 2009-04-02 10:30
- 浏览 36628
- 评论(3)