我用的是spring-data-redis
2.7.5版本。
对象声明:
@Data
@AllArgsConstructor
@NoArgsConstructor
@Getter
@Setter
@ToString
@RedisHash("Applications")
public class Applications implements Serializable {
private String appName;
private String appType;
@Id
private String appId;
}
控制器方法:
@GetMapping("/filterAppsByAppsTypes")
public List<Applications> filterAppsByAppsTypes(@RequestParam String appType) {
List<Applications> apps = applicationRepository.findByAppType(appType);
return apps;
}
资料档案库:
@Repository
public interface ApplicationsRepository extends CrudRepository<Applications, String> {
List<Applications> findByAppType(String appType);
}
我有一些对象的值是我想要过滤的,但它返回的是一个空数组。我尝试添加@Indexed
注解,但它没有修复它。
1条答案
按热度按时间2lpgd9681#
要做到这一点,你应该在声明实体时为搜索的字段包含@Indexed注解:
确保它是从org.springframework.data.redis.core.index.Indexed导入的