mirror of
https://github.com/JeffLi1993/springboot-learning-example.git
synced 2026-03-15 07:03:49 +08:00
WebFlux 整合 Redis 实现缓存
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
package org.spring.springboot.dao;
|
||||
|
||||
import org.spring.springboot.domain.City;
|
||||
import org.springframework.data.mongodb.repository.ReactiveMongoRepository;
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
@Repository
|
||||
public interface CityRepository extends ReactiveMongoRepository<City, Long> {
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user