- 浏览: 318398 次
- 性别:
- 来自: 北京
最新评论
-
如果这就是爱情:
有相应的CSS和JS代码吗?
div+css js按钮特效 鼠标移上去显示子菜单 -
awaterway:
正好要用。哈哈哈哈。。
java调用window的cmd的ping指令 -
一江山:
...
Eclipse 项目有红感叹号 -
autorun:
...
Eclipse 项目有红感叹号 -
本色是本色:
试了 好像不行哦
form表单中enctype="multipart/form-data"的意思
文章列表
1.在项目的src下建了一个xfireservice的包,然后在这个包下建了一个名为XFireService的接口和XFireServiceImpl这个实现接口的类。把相关的jar文件添加进项目里。
XFireService.java接口
package xfireservice;
public interface XFireService {
public String sayHello();
}
XFireServiceImpl.java
package xfireservice;
import org.springframework.stereotype.Compo ...
SSH中出现java.lang.NoSuchMethodError: org.objectweb.asm.ClassWriter.&#...
java.lang.NoSuchMethodError: org.objectweb.asm.ClassWriter.<init>(I)V
解决办法:
把hibernate中的cglib-*.jar和asm-*.jar删除,添加spring中的cglib-2.1.3.jar
在Hibernate 3.2.6.ga 中的 cglib 是 cglib-2.1.3.,jar 使用 cglib-2.2.jar 则出现以上问题。
将 ...
var activityId = $("#activityId").val();
$.ajax({
type: "post",
url: "/arweb/reserve/add.action",
async: false,
data: "activityId = " + activityId,
dateType: "html",
success: function(){
alert("您已预约成功!&qu ...
一段JavaScript脚本程序,负责关闭窗口,如果网页不是通过脚本程序打开的(window.open()),调用window.close()脚本关闭窗口前,必须先将window.opener对象置为null,否则浏览器(IE7、IE8)会弹出一个确定关闭的对话框。
解决方案有以下几种方法:
1.指向自己关闭法
<script language="javaScript">
function closeWindow()
{
window.opener = null;
window.open(' ', '_self', ' ');
wind ...
今天初次用Spring注解,原来只要jsp中标签的name和实体类中的属性名一一对应上,标签的值就会自动赋值给实体,如添加一条记录,只要名字都对应上了,在action中就可以这么写:
@RequestMapping("/reserve/add")
public String add(Reserve reserve){
reserveService.saveReserve(reserve);
return "/reserve/success";
}
这样就把在页面上输入的值保存到数据库了,中途碰到个小问题,其中有个字段是long型 ...
function checkForm(){
var reserveTm = document.getElementById("reserveTm").value;
var myDate= new Date(Date.parse(reserveTm.replace(/-/g, "/")));
var now = new Date();
if(myDate.getFullYear() < now.getFullYear()){
document.getElementById(&quo ...
Spring MVC 注解中,没有了一系列的配置文件,但需要注意各个类的注解:
1.实体类
@Table(name = "reserve")
public class Reserve implements Serializable {
private static final long serialVersionUID = -5597231321878246638L;
@Id
@Column(name = "reserve ...
public class SetCharacterEncodingFilter implements Filter {
protected String encoding = null;
protected FilterConfig filterConfig = null;
protected boolean ignore = true;
public void init(FilterConfig filterConfig) throws ServletException {
this.filterConfig=filterConfig;
this.encodi ...
拒绝访问是因为不是管理员的身份
开始-->附件-->开始->附件->命令提示符->右键->以管理员的身份...
停止服务:net stop mysql
启动服务:net start mysql
使用Connector/J连接MySQL数据库,程序运行较长时间后就会报以下错误:
Communications link failure,The last packet successfully received from the server was *** millisecond ago.The last packet successfully sent to the server was *** millisecond ago。
其中错误还会提示你修改wait_timeout或是使用Connector/J的autoReconnect属性避免该错误。
后来查了一些资料,才发现 ...
Mysql服务器默认的“wait_timeout”是8小时,也就是说一个connection空闲超过8个小时,Mysql将自动断开该 connection。connections如果空闲超过8小时,Mysql将其断开,而DBCP并不知道该connection已经失效,如果这时有 Client请求connection,DBCP将该失效的Connection提供给Client,将会造成上面的异常。
mysql配置中my.cnf 的wait_timeout值一定要大于等于连接池种的idle_timeout 值。否则mysql会在wait_timeout的时间后关闭连接,然而连接池还认为该连接可 ...
hibernate提供了产生自动增长类型主键的多种策略,这里以increment为例说明具体用法:
1、在数据库中建立表,主键名称为ID,类型为varchar2(字符串型)
2、在**.hbm.xml(hibernate映射文件)中配置如下 <class name="com.jat.bisarea.ho.Tes ...
- 2012-04-12 14:24
- 浏览 1443
- 评论(0)
报这个错时因为我的java类里是ResultSet内嵌套ResultSet,但是用的同一个Statement,这样不行,得创建两个Statement
declare @tmp int
declare @sql varchar(2000)
set @tmp=1
while @tmp<31
begin
if @tmp<10
begin
set @sql =
'insert Temp_Rpt_List1(表名) (select count(*) from sm_sending_temp_sm_list_all(表名)
where
sendtarget in(select col003 from tbl_sm_rpt_11110(表名)' +cast(@tmp as varchar(10)) + ' where col005=''0'') ...
insert 表A(字段1,字段2) select 字段1,字段2 from 表B