博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
SpringCloud使用jpa之Rest方式
阅读量:5955 次
发布时间:2019-06-19

本文共 708 字,大约阅读时间需要 2 分钟。

这个与上一篇的基本相同,需要修改的只有Dao层的文件:

TablesDao.java

package com.shinho.dao;import org.springframework.data.jpa.repository.Query;import  org.springframework.data.repository.CrudRepository;import org.springframework.data.rest.core.annotation.RepositoryRestResource;import com.shinho.entity.Tables;@RepositoryRestResource(collectionResourceRel = "people", path = "people")public interface TablesDao extends CrudRepository
{ @Query(value="select count(*) from props",nativeQuery=true) int getcount();}

这里有个学问,就是访问的地址,是这样一个规则,比如现在看到的这个getcount的方法:

http://localhost:7088/people/search/getcount

蛋疼!

还有,这个东西是Spring Data JPA,一定要看官网,不要看网上的野文!

官网地址:

转载于:https://www.cnblogs.com/wpcnblog/p/8945280.html

你可能感兴趣的文章
shell脚本笔记
查看>>
10.11 Linux网络相关 10.12 firewalld和netfilter 10.13 ne
查看>>
JXLS 2.4.0学习
查看>>
Spring-Cloud-Config消息总线和高可用
查看>>
Python基础:文件的操作
查看>>
程序调试之全知调试
查看>>
LXR安装过程简介
查看>>
Obez'yanka-Nol
查看>>
centos7静态IP设置
查看>>
ESXi ftpd安装
查看>>
js去掉空格和
查看>>
PSU更新之后是否更改数据库版本号呢
查看>>
一次应对PowerShell+WMI挖矿***的记录
查看>>
第一天 echo test (()) [[]]
查看>>
OSN2500
查看>>
分享一个NHibernate的博客链接
查看>>
Web开发中8个基础&&常见功能
查看>>
docker之快速部署gogs git
查看>>
jquery返回顶部效果
查看>>
tomcat下如何才能运行shtml文件?
查看>>