91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Service類怎么用

發布時間:2022-01-19 16:28:59 來源:億速云 閱讀:123 作者:iii 欄目:開發技術

這篇“Service類怎么用”文章的知識點大部分人都不太理解,所以小編給大家總結了以下內容,內容詳細,步驟清晰,具有一定的借鑒價值,希望大家閱讀完這篇文章能有所收獲,下面我們一起來看看這篇“Service類怎么用”文章吧。

Service用于處理業務邏輯和調用DAO操作數據庫。

配置文件

系統的Service在com.jspxcms.core.ContextConfig的@ComponentScan({"com.jspxcms.core.service.impl", "com.jspxcms.ext.service.impl"})配置。

本例的Service在com.jspxcms.plug.ContextConfig的@ComponentScan({ "com.jspxcms.plug.service.impl"})配置。

Service類

package com.jspxcms.plug.service.impl;

@Service
@Transactional(readOnly = true)
public class ResumeServiceImpl implements ResumeService {
    public Page<Resume> findAll(Integer siteId, Map<String, String[]> params,
            Pageable pageable) {
        return dao.findAll(spec(siteId, params), pageable);
    }

    public RowSide<Resume> findSide(Integer siteId,Map<String, String[]> params,
    Resume bean, Integer position, Sort sort) {
        if (position == null) {
            return new RowSide<Resume>();
        }
        Limitable limit = RowSide.limitable(position, sort);
        List<Resume> list = dao.findAll(spec(siteId, params), limit);
        return RowSide.create(list, bean);
    }

    private Specification<Resume> spec(final Integer siteId,
            Map<String, String[]> params) {
        Collection<SearchFilter> filters = SearchFilter.parse(params).values();
        final Specification<Resume> fsp = SearchFilter.spec(filters, Resume.class);
        Specification<Resume> sp = new Specification<Resume>() {
            public Predicate toPredicate(Root<Resume> root,
                    CriteriaQuery<?> query, CriteriaBuilder cb) {
                Predicate pred = fsp.toPredicate(root, query, cb);
                if (siteId != null) {
                    pred = cb.and(pred, cb.equal(root.get("site")
                            .<Integer> get("id"), siteId));
                }
                return pred;
            }
        };
        return sp;
    }

    private ResumeDao dao;

    @Autowired
    public void setDao(ResumeDao dao) {
        this.dao = dao;
    }
}

該類使用到JPA的Specification查詢方式。可實現后臺列表點擊表頭,按任意列排序;列表頁按任意字段查詢;編輯頁面上一條、下一條功能。

以上就是關于“Service類怎么用”這篇文章的內容,相信大家都有了一定的了解,希望小編分享的內容對大家有幫助,若想了解更多相關的知識內容,請關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

毕节市| 东辽县| 湘潭县| 衡水市| 定兴县| 镇原县| 专栏| 洪湖市| 巍山| 九江县| 邮箱| 泸西县| 汝州市| 桃园市| 松溪县| 石渠县| 文安县| 江源县| 莆田市| 莱芜市| 龙山县| 鄂州市| 收藏| 客服| 天祝| 绿春县| 青铜峡市| 紫云| 自贡市| 双流县| 平阴县| 萍乡市| 游戏| 洪雅县| 崇明县| 西吉县| 扶绥县| 呼和浩特市| 张家界市| 鞍山市| 罗甸县|