2016年8月31日
摘要: 1: 编写DAO类或接口 dao类/接口 需继承 1 public interface JpaSpecificationExecutor<T> 接口; 如果需要分页,还可继承 1 public interface PagingAndSortingRepository<T, ID extends Se 阅读全文
posted @ 2016-08-31 10:44 临界 阅读(22492) 评论(2) 推荐(2) 编辑
  2016年8月25日
摘要: 最近几天几天做项目用到了Spring Data JPA,确实是个好东西,省了很多力气。但是由于刚开始用,也遇到不少头疼的问题,如下,调用JpaRepository接口的save方法保存一个对象到数据库中的时候出错: ERROR: com.mysql.jdbc.exceptions.jdbc4.MyS 阅读全文
posted @ 2016-08-25 17:00 临界 阅读(30946) 评论(2) 推荐(4) 编辑
  2016年8月17日
摘要: 首先需要下载mail.jar文件,我个人通常是使用maven中心库的那个: 或者自己下载jar包, javax.mail-1.5.4.jar 地址:http://download.csdn.net/detail/sun2015_07_24/9392090 代码如下: 给参数赋值, 测试可以通过. 阅读全文
posted @ 2016-08-17 10:17 临界 阅读(3689) 评论(3) 推荐(1) 编辑
  2016年8月16日
摘要: MD5带盐值的java加密算法 import java.security.MessageDigest; public class PasswordEncoder { private final static String[] hexDigits = { "0", "1", "2", "3", "4" 阅读全文
posted @ 2016-08-16 11:27 临界 阅读(7598) 评论(2) 推荐(0) 编辑
  2016年8月5日
摘要: 1. append(content)方法 方法作用:向每个匹配的元素内部追加内容。 参数介绍:content (<Content>): 要追加到目标中的内容。 用法示例: HTML代码为<p>I come from </p><p>I love </p> 向所有p标签中追加一个单词china,则写法为 阅读全文
posted @ 2016-08-05 10:32 临界 阅读(2507) 评论(0) 推荐(0) 编辑
  2016年8月4日
摘要: 软件中总免不了要使用诸如 Log4net, Log4j, Tracer 等东东来写日志,不管用什么,这些东东大多是大同小异的,一般都提供了这样5个日志级别: × Debug × Info × Warn × Error × Fatal 一个等级比一个高,但是在具体开发中,关于应该如何选择适应的等级,却 阅读全文
posted @ 2016-08-04 15:39 临界 阅读(17026) 评论(1) 推荐(0) 编辑
摘要: 显示: the trim length is 4the length is 8 trim()方法的作用是去掉字符串头尾的空格 阅读全文
posted @ 2016-08-04 15:26 临界 阅读(1124) 评论(0) 推荐(1) 编辑
  2016年7月22日
摘要: 举个例子,比如页面上有 <input type="text" name="p_name" value="aileen"><input type="text" name="p_age" value="12"><input type="text" name="p_school" value="育红小学" 阅读全文
posted @ 2016-07-22 15:03 临界 阅读(630) 评论(0) 推荐(0) 编辑
  2016年7月19日
摘要: 错误大致如下: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'commonDao': Injection of autowired dependencies failed 阅读全文
posted @ 2016-07-19 16:03 临界 阅读(533) 评论(0) 推荐(0) 编辑
摘要: 用maven 工程搭建项目,在搭建好之后,运行时却抛出了这样的错误: Error configuring application listener of class org.springframework.web.context.ContextLoaderListener java.lang.Cla 阅读全文
posted @ 2016-07-19 09:42 临界 阅读(516) 评论(0) 推荐(0) 编辑