jpa
文章平均质量分 72
朱智文
不求大富大贵,但求一路常青
展开
-
jpa查询所有的记录
public interface JpaSpecificationExecutor { /** * Returns a single entity matching the given {@link Specification}. * * @param spec * @return */ T findOne(Specificati原创 2016-01-27 21:28:19 · 5722 阅读 · 1 评论 -
JPA基础知识
1.JPA简介:Java持久化规范,是从EJB2.x以前的实体Bean(Entitybean)分离出来的,EJB3以后不再有实体bean,而是将实体bean放到JPA中实现。JPA是sun提出的一个对象持久化规范,各JavaEE应用服务器自主选择具体实现,JPA的设计者是Hibernate框架的作者,因此Hibernate作为Jboss服务器中JPA的默认实现,Oracle的Weblogic使转载 2016-01-30 17:37:18 · 450 阅读 · 0 评论 -
Spring工具类ToStringBuilder用法简介
Spring工具类ToStringBuilder用法简介比如说我们需要打印某个方法的User参数对象 package test; /** * * @author zhengtian * @time 2012-6-28 */ public class User { private String name;转载 2016-01-31 11:11:09 · 2714 阅读 · 1 评论 -
jpa 里查询参数设置
5.jpa的(sql)查询jpaSQL语句:面向对象的sql语句,jpa标准的sql语法查询方法:1.位参数查询 select o from Person o where o.id=?1—>query.setParameter(1,2);2.命名查询 select o from Person o where o.id=:id—>query.setParameter("i转载 2016-01-29 12:43:00 · 13330 阅读 · 0 评论 -
jpa 里用的分页实现类org.springframework.data.domain.PageImpl<T>
/* * Copyright 2008-2013 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * Y原创 2016-03-25 19:12:38 · 21876 阅读 · 1 评论 -
jpa 的分页类org.springframework.data.domain.Page<T>
package org.springframework.data.domain;import java.util.Iterator;import java.util.List;/** * A page is a sublist of a list of objects. It allows gain information about the position of it原创 2016-03-25 19:14:09 · 13694 阅读 · 0 评论 -
接口 Iterable ,类是 Iterator
public interface Iterable { /** * Returns an iterator over a set of elements of type T. * * @return an Iterator. */ Iterator iterator();}public interface Iterator {原创 2016-03-25 19:16:15 · 423 阅读 · 0 评论 -
jpa 分页
public Page queryByConditionNQ(String sql, Map param, Pageable pageRequest) { Query q = em.createNativeQuery(sql); String countSql = "select count(*) from (" + sql + ") count_sql";原创 2016-03-25 19:09:56 · 2330 阅读 · 4 评论