博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
springBoot测试mongoDB,不希望启动其他插件
阅读量:5942 次
发布时间:2019-06-19

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

  hot3.png

在mongoDB中测试,不希望启动其他插件

package com.dxhy.basic.email.sender.bean;import org.junit.Test;import org.junit.runner.RunWith;import org.springframework.beans.factory.annotation.Autowired;import org.springframework.boot.autoconfigure.data.mongo.MongoDataAutoConfiguration;import org.springframework.boot.autoconfigure.mongo.MongoAutoConfiguration;import org.springframework.boot.test.context.SpringBootTest;import org.springframework.data.mongodb.core.MongoTemplate;import org.springframework.test.context.junit4.SpringRunner;/** * 测试pdf通过uuid下载 * Created by 赵睿 on 2017/4/6. */@RunWith(SpringRunner.class)@SpringBootTest(classes = {MongoAutoConfiguration.class,MongoDataAutoConfiguration.class})public class DownLoadTest {    @Autowired    private MongoTemplate mongoTemplate;    @Test    public void getDownLoad(){        DownLoad downLoad=mongoTemplate.findById("22b5d67f-6037-455c-bf6f-e7501f956780",DownLoad.class);        System.out.println(downLoad.getBytes().length);    }}

转载于:https://my.oschina.net/dylw/blog/874223

你可能感兴趣的文章
jquery 怎么触发select的change事件
查看>>
angularjs指令(二)
查看>>
(原創) 如何建立一个thread? (OS) (Linux) (C/C++) (C)
查看>>
<气场>读书笔记
查看>>
领域驱动设计,构建简单的新闻系统,20分钟够吗?
查看>>
web安全问题分析与防御总结
查看>>
React 组件通信之 React context
查看>>
ZooKeeper 可视化监控 zkui
查看>>
Linux下通过配置Crontab实现进程守护
查看>>
ios 打包上传Appstore 时报的错误 90101 90149
查看>>
Oracle推出轻量级Java微服务框架Helidon
查看>>
密码概述
查看>>
autoconf,automake,libtool
查看>>
jQuery的技巧01
查看>>
基于泛型实现的ibatis通用分页查询
查看>>
gopacket 使用
查看>>
AlertDialog对话框
查看>>
我的友情链接
查看>>
linux安全---cacti+ntop监控
查看>>
鸟哥的linux私房菜-shell简单学习-1
查看>>