摘要: webApi上传服务,根据FileName重命名,根据Path创建文件夹 阅读全文
posted @ 2018-02-08 11:21 Jerry很简单 阅读(878) 评论(0) 推荐(0) 编辑
摘要: list不能new;要使用arraylist 阅读全文
posted @ 2015-06-25 16:30 Jerry很简单 阅读(136) 评论(0) 推荐(0) 编辑
摘要: 最近使用java做项目,研究了一下热部署,能够提高工作效率。需要准备的工具:1.安装文件http://update.zeroturnaround.com/update-site/2.破解 下载破解包地址:http://pan.baidu.com/s/1gd4HqKz 3.配置tomcat 阅读全文
posted @ 2015-06-16 14:24 Jerry很简单 阅读(258) 评论(0) 推荐(0) 编辑
摘要: 只要在hibernate.cfg.xml添加这句话,就可以自动生成数据表 updateupdate:表示自动根据model对象来更新表结构,启动hibernate时会自动检查数据库,如果缺少表,则自动建表;如果表里缺少列,则自动添加列。还有其他的参数: create:启动hibernate时,自动删... 阅读全文
posted @ 2015-06-11 21:50 Jerry很简单 阅读(4605) 评论(0) 推荐(0) 编辑
摘要: 问题:文件明明存在,资源找不到,报错解决方法:原因是没有build path,这有点像。net里边的build .点击相应的文件夹选择build path ,解决问题 阅读全文
posted @ 2015-06-09 22:56 Jerry很简单 阅读(2737) 评论(0) 推荐(0) 编辑
摘要: 我的路径D:\MyEclipse 10\.metadata\.plugins\org.eclipse.core.runtime\.settings我也遇到过这个问题,就是工作空间的问题好像是删除你工作空间的一个文件就可以解决了,我记得好像是下面这么操作的,不知道对不对!未确定这样之后还会不会出现这个... 阅读全文
posted @ 2015-06-06 10:28 Jerry很简单 阅读(138) 评论(0) 推荐(0) 编辑
摘要: com.sun.faces.config.ConfigureListener contextInitialized解决:进入到你自己的tomcat安装目录:C:\Program Files\Apache Software Foundation\Tomcat 6.0\webapps这里边是你部署过的工... 阅读全文
posted @ 2015-06-06 09:58 Jerry很简单 阅读(526) 评论(0) 推荐(0) 编辑
摘要: 1、不要使用游标 2、规范化你的数据表 3、不要使用SELECT. * 4、了解你将要对数据进行的操作 5、不要给“性别”列创建索引 6、使用事务 7、小心死锁 8、不要打开大的数据集 9、不要使用服务器端游标 10、使用参数查询 11、在程序编码时使用大数据量的数据库 12... 阅读全文
posted @ 2015-03-20 14:35 Jerry很简单 阅读(1601) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Data;using System.Configuration;using System.Collections.Generic;using System.Linq;using System.Text;using System.Xml.Linq;u... 阅读全文
posted @ 2015-03-12 16:19 Jerry很简单 阅读(898) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Collections.Generic;using System.Linq;using System.Text;//导命名空间using System.Data;using MySql.Data.MySqlClient;using System.C... 阅读全文
posted @ 2015-03-12 16:07 Jerry很简单 阅读(514) 评论(0) 推荐(0) 编辑