博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
springboot jpa使用
阅读量:5268 次
发布时间:2019-06-14

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

package com.jxd.Boot.dao;

import java.util.List;

import org.springframework.data.jpa.repository.JpaRepository;

import org.springframework.data.jpa.repository.Query;

import com.jxd.Boot.po.Student;

/**

* @author jinxudong
*
*/
public interface StudentDao extends JpaRepository<Student, Long> {
Student findByName(String studentName);

@Query(value = "sql", nativeQuery = true)

Student findByUid(String uid);

/**

* @Description (原生态sql)
* @return
*/
@Query(value = "select s.* from student s where 1=1 ", nativeQuery = true)
List<Student> selectStudent();

/**

* @Description (多条件查询)
* @param name
* @param age
* @return
*/
List<Student> findByNameAndAge(String name, Integer age);

List<Student> findByNameLike(String name);

/**

* @Description (模糊搜索按字段排序)
* @param name
* @return
*/
List<Student> findByNameLikeOrderByAge(String name);

/**

* @Description (按字段排序)
* @return
*/
List<Student> findByOrderByAgeDesc();
/**
* @Description (按字段统计)
* @param name
* @return
*/
long countByName(String name);

}

转载于:https://www.cnblogs.com/coderdxj/p/9117335.html

你可能感兴趣的文章
PHP截取中英文混合字符
查看>>
电子眼抓拍大解密
查看>>
51nod1076 (边双连通)
查看>>
Linux pipe函数
查看>>
java equals 小记
查看>>
2019春 软件工程实践 助教总结
查看>>
Zerver是一个C#开发的Nginx+PHP+Mysql+memcached+redis绿色集成开发环境
查看>>
程序的静态链接,动态链接和装载 (补充)
查看>>
关于本博客说明
查看>>
Linux服务器在外地,如何用eclipse连接hdfs
查看>>
[Kaggle] Sentiment Analysis on Movie Reviews
查看>>
价值观
查看>>
mongodb命令----批量更改文档字段名
查看>>
MacOS copy图标shell脚本
查看>>
国外常见互联网盈利创新模式
查看>>
android 签名
查看>>
android:scaleType属性
查看>>
mysql-5.7 innodb 的并行任务调度详解
查看>>
shell脚本
查看>>
Upload Image to .NET Core 2.1 API
查看>>