maven依赖

<parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>1.4.1.RELEASE</version>
        <relativePath/> <!-- lookup parent from repository -->
    </parent>
<dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-data-mongodb</artifactId>
        </dependency>

dao

public interface ArticleDao extends MongoRepository<Article,String>,QueryByExampleExecutor<Article> {
}

controller

@RequestMapping("/list")
    public Page<Article> list(Article article,@PageableDefault(sort = { "createdAt" },page = 0,size = 10) Pageable pageable){
        ExampleMatcher matcher = ExampleMatcher.matching()
        .withMatcher("content", ExampleMatcher.GenericPropertyMatchers.contains());
        Example<Article> example = Example.of(article,matcher);
        return articleDao.findAll(example,pageable);
    }

config

@SpringBootApplication
@EnableSpringDataWebSupport
public class MongoApplication {

    public static void main(String[] args) {
        SpringApplication.run(MongoApplication.class, args);
    }
}

使用

curl -i http://localhost:8080/article/list?content=软件

doc


codecraft
11.9k 声望2k 粉丝

当一个代码的工匠回首往事时,不因虚度年华而悔恨,也不因碌碌无为而羞愧,这样,当他老的时候,可以很自豪告诉世人,我曾经将代码注入生命去打造互联网的浪潮之巅,那是个很疯狂的时代,我在一波波的浪潮上留下...