SpringDataJPA笔记(6)-value注解的使用

使用查询的时候可以使用value注解,也是一种视图查询

1. 在类上面使用Lombok的value注解
@Value
public class NameEntity {
    String name;
    Long id;
}

添加对应查询方法

<T> List<T> findByAgeGreaterThan(int age, Class<T> type);

测试方法

@ApiOperation(value = "find", httpMethod = "GET")
@GetMapping("/find")
public List<NamesOnly> find(@RequestParam int age) {
	return catRepository.findByAge(age);
}
2. 在接口类上面使用org.springframework.beans.factory.annotation.Value的value注解
public interface NamesOnly {
    String getName();

    @Value("#{target.name + ' ' + target.id}")
    String getFullName();

    @Value("#{@valueUtils.getName(target)}")
    String getValue();
}

添加对应查询方法

List<NamesOnly> findByAge(int age);
3. 使用泛型将返回类传入查询方法
<T> List<T> findByAgeGreaterThan(int age, Class<T> type);

<T> List<T> findBy(Class<T> type);

<T> Page<T> findBy(Pageable pageable, Class<T> type);

添加对应的查询方法

  @ApiOperation(value = "findType", httpMethod = "GET")
    @GetMapping("/find/type")
    public List<NamesOnly> findType() {
        return catRepository.findBy(NamesOnly.class);
    }

    @ApiOperation(value = "findType2", httpMethod = "GET")
    @GetMapping("/find/type2")
    public List<NameEntity> findType2() {
        return catRepository.findBy(NameEntity.class);
    }

    @ApiOperation(value = "findTypeAge", httpMethod = "GET")
    @GetMapping("/find/type/age")
    public List<NamesOnly> findTypeAge(@RequestParam int age) {
        return catRepository.findByAgeGreaterThan(age, NamesOnly.class);
    }

    @ApiOperation(value = "findTypeAge2", httpMethod = "GET")
    @GetMapping("/find/type/age2")
    public List<NameEntity> findTypeAge2(@RequestParam int age) {
        return catRepository.findByAgeGreaterThan(age, NameEntity.class);
    }

    @ApiOperation(value = "findTypePage", httpMethod = "GET")
    @GetMapping("/find/type/page")
    public Page<NamesOnly> findTypePage(@RequestParam int pageSize, @RequestParam int pageNum) {
        Pageable pageable = PageRequest.of(pageNum, pageSize);
        return catRepository.findBy(pageable, NamesOnly.class);
    }

    @ApiOperation(value = "findTypePage2", httpMethod = "GET")
    @GetMapping("/find/type/page2")
    public Page<NameEntity> findTypePage2(@RequestParam int pageSize, @RequestParam int pageNum) {
        Pageable pageable = PageRequest.of(pageNum, pageSize);
        return catRepository.findBy(pageable, NameEntity.class);
    }

源码参考 GITHUB
欢迎关注微信交流
在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值