真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

SpringBootjpaService層的示例分析

這篇文章主要介紹了Spring Boot jpa Service層的示例分析,具有一定借鑒價(jià)值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。

讓客戶滿意是我們工作的目標(biāo),不斷超越客戶的期望值來(lái)自于我們對(duì)這個(gè)行業(yè)的熱愛(ài)。我們立志把好的技術(shù)通過(guò)有效、簡(jiǎn)單的方式提供給客戶,將通過(guò)不懈努力成為客戶在信息化領(lǐng)域值得信任、有價(jià)值的長(zhǎng)期合作伙伴,公司提供的服務(wù)項(xiàng)目有:空間域名、網(wǎng)站空間、營(yíng)銷(xiāo)軟件、網(wǎng)站建設(shè)、二連浩特網(wǎng)站維護(hù)、網(wǎng)站推廣。

示例:

package com.fei.service.impl;

import java.util.ArrayList;
import java.util.List;

import javax.persistence.criteria.CriteriaBuilder;
import javax.persistence.criteria.CriteriaQuery;
import javax.persistence.criteria.Predicate;
import javax.persistence.criteria.Root;

import org.springframework.beans.BeanUtils;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.data.domain.Page;
import org.springframework.data.domain.Pageable;
import org.springframework.data.jpa.domain.Specification;
import org.springframework.stereotype.Service;

import com.fei.NotFoundException;
import com.fei.po.Blog;
import com.fei.po.Type;
import com.fei.repository.BlogRepository;
import com.fei.service.BlogService;

/**
 * Created by zxf on 2019年10月3日
 */
@Service
public class BlogServiceImpl implements BlogService {

  @Autowired
  private BlogRepository blogRepository;

  /**
   * 根據(jù)id查詢(xún)一條博客
   * 
   * @param id
   * @return
   */
  @Override
  public Blog getBlog(Long id) {
    return blogRepository.findById(id).get();
  }

  /**
   * 多條件動(dòng)態(tài)查詢(xún)博客列表
   * 
   * @param pageable
   * @param blog
   * @return
   */
  @Override
  public Page listBlog(Pageable pageable, Blog blog) {
    return blogRepository.findAll(new Specification() {

      @Override
      public Predicate toPredicate(Root root, CriteriaQuery cq, CriteriaBuilder cb) {
        List predicates = new ArrayList<>();

        String title = blog.getTitle();
        if (!"".equals(title) && title != null) {
          predicates.add(cb.like(root.get("title"), "%" + title + "%"));
        }

        Long id = blog.getType().getId();
        if (id != null) {
          predicates.add(cb.equal(root.get("type").get("id"), id));
        }

        boolean isRecommend = blog.isRecommend();
        if (isRecommend) {
          predicates.add(cb.equal(root.get("recommend"), isRecommend));
        }

        cq.where(predicates.toArray(new Predicate[predicates.size()]));
        return null;
      }
    }, pageable);
  }

  /**
   * 保存一條博客
   * 
   * @param blog
   * @return
   */
  @Override
  public Blog saveBlog(Blog blog) {
    return blogRepository.save(blog);
  }

  /**
   * 更新一條博客,先根據(jù)id查出結(jié)果回顯
   * 
   * @param id
   * @param blog
   * @return
   */
  @Override
  public Blog updateBlog(Long id, Blog blog) {
    Blog b = blogRepository.findById(id).get();
    if (b == null) {
      throw new NotFoundException("你要更新的博客不存在!");
    }

    BeanUtils.copyProperties(b, blog);
    return blogRepository.save(blog);
  }

  /**
   * 根據(jù)id刪除一條博客
   * 
   * @param id
   */
  @Override
  public void deleteBlog(Long id) {
    blogRepository.deleteById(id);
  }

}

感謝你能夠認(rèn)真閱讀完這篇文章,希望小編分享的“Spring Boot jpa Service層的示例分析”這篇文章對(duì)大家有幫助,同時(shí)也希望大家多多支持創(chuàng)新互聯(lián),關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,更多相關(guān)知識(shí)等著你來(lái)學(xué)習(xí)!


網(wǎng)站標(biāo)題:SpringBootjpaService層的示例分析
文章網(wǎng)址:http://weahome.cn/article/jdphgc.html

其他資訊

在線咨詢(xún)

微信咨詢(xún)

電話咨詢(xún)

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部