Exception,出错
she_smiled
生活从来不会因为你是女生而怜香惜玉
展开
-
ssh+filter+cookie实现自动登陆
在ssh中,filter的web.xml没有正确配置的话,就会出现空指针异常,因为他执行的时候没有去找bean。也就是说filter和spring没有结合起来实现用户自动登陆就是把用户信息保存在cookie里,当用户第二次访问的时候无需登陆。实现自动登陆就是每一次请求都会被filter拦截。这样在filter中把cookie从本地取出,然后把取出的用户数据和数据库验证返回结果,如果验证原创 2017-09-05 20:33:43 · 685 阅读 · 0 评论 -
Uncaught TypeError: $(...).Validform is not a function 如何解决,以及其他方式替换jquery功能
Uncaught TypeError: $(...).Validform is not a function。未捕获TypeError:$(…)。Validform不是一个函数这是在网上搜索到的答案! 最近为项目写cms系统,在新增/编辑文章的页面,一些input诸如文章题目,作者等等需要验证是否已经填写,于是使用jQuery.validate.js来做这个工作,自己写转载 2017-10-11 20:48:25 · 18137 阅读 · 0 评论 -
Expected mime type application/octet-stream but got text/html.
在运行solr技术的工程的时候出现Expected mime type application/octet-stream but got text/html.错误网上找的原因有:在使用Tomcat部署Solr后,Collection1的地址为:http://ip:8080/solr/#/collection1,但使用SolrJ进行索引的时候,应该使用http://ip:8080/s原创 2017-11-10 16:28:44 · 4293 阅读 · 0 评论 -
com.mysql.jdbc.MysqlDataTruncation: Data truncation: Truncated incorrect DOUBLE
提示的原因是“ xxx ”double型不是正确的,错误的原因在于把数据库update user set username='xxx',password='yyy' where id='zzz'错写成update user set username='xxx' and password='yyy' where id='zzz'将分隔符,错写为and如果是用ssm框架的转载 2017-11-11 21:17:22 · 1667 阅读 · 0 评论 -
SSH阶段常见的异常系列(15条)
异常一异常一 异常描述: Sax解析异常:cvc-复杂的类型,发现了以元素maping开头的无效内容,应该是以 ‘{“http://www.hibernate.org/xsd/orm/cfg“:property, “http://www.hibernate.org/xsd/orm/cfg“:mapping, “http://www.hibernate.org/xsd/orm/c转载 2018-02-01 21:16:48 · 773 阅读 · 0 评论 -
java.util.ConcurrentModificationException
大家应该都知道, 在java中, 在对一些集合迭代的过程中对集合进行一些修改的操作, 比如说add,remove之类的操作, 搞不好就会抛ConcurrentModificationException,前几天在项目中,终于碰到了这个异常。在单线程操作的情况下,在DAO层查询到数据集合后,返回到service层做业务处理,要求:遍历数据集合,判断不符合条件的元素,做删除操作。在用foreach和 I...转载 2018-02-20 15:27:58 · 237 阅读 · 0 评论 -
解决a different object with the same identifier value was already associated with the session错误
1、a different object with the same identifier value was already associated with the session。 错误原因:在hibernate中同一个session里面有了两个相同标识但是是不同实体。 解决方法一:session.clean() PS:如果在clean操作后面又进行了saveOrUpdate(objec...转载 2018-02-21 16:47:06 · 273 阅读 · 0 评论 -
save the transient instance before flushing错误解决办法
近日在项目中遇到以下错误,着实郁闷了一把: org.hibernate.TransientObjectException: object references an unsaved transient instance - save the transient instance before flushing:com.dhcc.itsm.base.model.User。这主要是在ManyTo...转载 2018-02-21 16:47:58 · 4019 阅读 · 0 评论 -
ManyToOne单向配置(错误:object references an unsaved transient instance - save the transient instance befor
一、异常:org.hibernate.TransientObjectException: object references an unsaved transient instance - save the transient instance before flushing: 这主要是在ManyToOne级联操作时遇到,比如new了一个新对象,在未保存之前将它保存进了一个新new的对象(也即不...转载 2018-02-21 16:49:27 · 590 阅读 · 0 评论 -
Batch update returned unexpected row count from update [0]; actual row count: 0;
Batch update returned unexpected row count from update [0]; actual row count: 0; expected: 1不注意的话,还真的有点无所适从,Batch update returned unexpected row count from update [0]; actual row count: 0; expected: 1...转载 2018-03-03 22:58:55 · 392 阅读 · 0 评论 -
BeanFactory not initialized or already closed - call 'refresh' before accessing beans via the Applic
在网上找的时候,很多人说是因为错误写法:ApplicationContext ctx = new ClassPathXmlApplicationContext();时,没有指定配置文件,Spring实例化BeanFactory的时候是默认到classPath下面查找名为applicationContext.xml的文件的,但是又没有指定,所以出现了这个错误。这就是错误的原因原创 2017-10-05 21:54:39 · 389 阅读 · 0 评论 -
a different object with the same identifier value was already associated with the session。
a different object with the same identifier value was already associated with the session。这个错误产生的原因是因为在hibernate中同一个session里面有了两个相同标识但是是不同实体,当这时运行saveOrUpdate(object)操作的时候就会报这个错误。既然是因为转载 2017-09-29 21:15:10 · 1964 阅读 · 0 评论 -
strus中jsp:forward失效,404错误
在Struts2中失效了,不但调转不过去还报404错误。不知道是Struts2中不支持还是需要其他的配置。原因:因为struts2采用过滤器的方式处理请求,默认情况时监控url地址的变化解决办法:转载 2017-09-05 21:43:08 · 522 阅读 · 0 评论 -
write operations are not allowed in read-only mode(flushMode.MANUAL)
write operations are not allowed in read-only mode(flushMode.MANUAL):TURN YOUR SESSION INTO FlushMode.COMMIT/AUTO or remove 'readonly' marker from transaction definition.遇见这种问题的时候,就是applicatio原创 2017-09-17 21:16:32 · 375 阅读 · 0 评论 -
HTTP Status 404-no result defined for action com.huida.action.LinkManAction and result input
可以看看前台数据提交的数据是什么类型HTTP Status 404-no result defined for action com.huida.action.LinkManAction and result input前台传输的数据和后台的数据类型不一致造成的。原创 2017-09-17 21:32:30 · 297 阅读 · 0 评论 -
could not execute statement; SQL [n/a]; constraint [null]级联删除异常
在用ssh做删除客户的同时删除联系人的时候会遇见这种异常:HTTP Status 500 - could not execute statement; SQL [n/a]; constraint [null]; nested exception is org.hibernate.exception.ConstraintViolationException: could not execute原创 2017-09-18 20:09:07 · 17769 阅读 · 0 评论 -
JasperException异常
今天在做分页小程序的时候遇见了一个JasperException的异常:所以百度了很多答案,有jsp页面写错的,有c标签没有引入的,还有jar包没有导入的。但是我的这个项目是实体转换异常,就是在dao里面的代码写错了,我缺少了query.addEntity(Product.class);这句话。在查询语句中如果缺少addEntity这句话那么返回的实体类型就是Object类原创 2017-09-01 21:39:03 · 15112 阅读 · 0 评论 -
MyBatis出错:Error instantiating class com.huida.test.User with invalid types () or values ().
在使用配置mybatis时出现了with invalid types () or values ()错误:如下。1) model中的get/set方法与成员变量不一。2) 构造函数被重载过,但是没有空的构造函数。3) 最好不要使用简单类型,如int, long等,改用对象模式Integer, Long等。在写条件查询时会用到判断 … 的转载 2017-08-28 18:25:14 · 599 阅读 · 0 评论 -
Hibernate配置异常
Orders和OrderItem配置错误如图:找了很久,才发现是因为和数据库对应的字段不同。实体类:ordersOrderItemxxx.hbm.xml由于数据库对应的字段不存在itemid,所以图片上蓝色这一段代码应不要数据库表格:原创 2017-09-02 17:18:30 · 206 阅读 · 0 评论 -
default-autowire="byName" default-lazy-init="true"
在使用全注解开发的时候,出现sessionFactory or hibernateTemplate is requared错误这个要怎么解决呢?看配置也没错。注解也是对的。但是就是报错。后来查了半天才发现要在application配置里加一句话default-autowire="byName" default-lazy-init="true"default-autowire原创 2017-10-06 20:04:25 · 1241 阅读 · 0 评论 -
cannot define positional parameter after any named parameters have been defined
在hql语句中可以使用?或者:***的方式在外部配置查询参数,如:from Customer where cust_name = ?select * from Register where uphone like:uphone参数设置:query.setString(0, "%%");query.setString("uphone", "%%");但是有些人原创 2017-10-08 17:06:25 · 1175 阅读 · 0 评论 -
Control character in cookie value, consider BASE64 encoding your value , 数据保存到cookie遇到中文报错的解决方案
J2EE Doc里面的,cookies只支持ASCII字符,而且不能有逗号,分号,空白。或者以$开头。名字在创建后不能改变。如果要存储中文的,先用URLEcode编码,在存入,取出的时候,用decode解码。在保存cookie之前把值编码下:Cookie cookie_userBeanName=new Cookie("userBean_name",URLEncoder.encode(usernam...原创 2018-05-31 21:14:17 · 696 阅读 · 0 评论