#mo

MongoDB 基础

MongoDB——基础入门MongoDB——权限管理MongoDB设置访问权限、设置用户Windows下MongoDB安装及创建用户名和密码 mongodb.conf配置文件详解...
代码星球 ·2020-05-23

nodejs mongodb 数据库封装DB类 -转

使用到了nodejs的插件mongoose,用mongoose操作mongodb其实蛮方便的。关于mongoose的安装就是npminstall-gmongoose这个DB类的数据库配置是基于auth认证的,如果您的数据库没有账号与密码则留空即可。/***mongoose操作类(封装mongodb)*/varfs=re...

.net MongoDB使用

.net平台的MongoDB使用CRL快速开发框架系列教程十二(MongoDB支持)MongoDB数据库mongo-csharp-driver ...
代码星球 ·2020-05-23

React、Node.js、MongoDB

使用React、Node.js、MongoDB、Socket.IO开发一个角色投票应用...
代码星球 ·2020-05-23

android搭建环境错误 daemon not running. starting it now on port 5037 ADB server didn't ACK

1、输入cmd进入dos界面,进入android-sdk-windowsplatform-tools目录,执行下面命令启动adbstart-server出现下面错误*daemonnotrunning.startingitnowonport5037*ADBserverdidn'tACK*failedtostartdaem...

jquery之empty()与remove()区别

要用到移除指定元素的时候,发现empty()与remove([expr])都可以用来实现。可仔细观察效果的话就可以发现。empty()是只移除了指定元素中的所有子节点,拿$("p").empty()来说,他只是把<p>dsfsd</p>中的文本给移除了,而留下了<p></p&g...
代码星球 ·2020-05-23

Android 二维码 生成和识别(附Demo源码)

Editedbymythou原创博文,转载请标明出处:http://www.cnblogs.com/mythou/p/3280023.html已测试 -- 绝对靠谱 今天讲一下目前移动领域很常用的技术——二维码。现在大街小巷、各大网站都有二维码的踪迹,不管是IOS、...

Cannot start compilation: the output path is not specified for module "Test". Specify the

1、问题idea编译(shift+f10)报错:Cannotstartcompilation:theoutputpathisnotspecifiedformodule“Test”.Specifytheout.2、解决:设置Project中的”Projectcompileroutput...

PowerMockito使用PowerMockIgnore注解消除类加载器引入的ClassCastException

ThereasonisthattheXMLframeworktriestoinstantiateclassesusingreflectionanddoesthisfromthethreadcontextclassloader(PowerMock'sclassloader)butthentriestoassignthec...

PowerMockito模拟private static final类变量

mock模拟privatestaticfinalnow=system.currentmills;首先在测试类开头加上:@prepareForTest({System.class})ClassA{}然后,在方法上添加:powermockito.mockstatic(system.class);powermockito.w...

玩转Spring JUnit+mockito+powermock单元测试

Spring中执行单元测试,最麻烦的就是解决Bean的定义以及注入的问题。最开始使用Spring的上下文初始化进行测试,开头是这样的:@RunWith(SpringJUnit4ClassRunner.class)@ContextConfiguration("/config/Spring-db1.xml")或者@RunW...

Junit测试Controller(MockMVC使用),传输@RequestBody数据解决办法

一、单元测试的目的  简单来说就是在我们增加或者改动一些代码以后对所有逻辑的一个检测,尤其是在我们后期修改后(不论是增加新功能,修改bug),都可以做到重新测试的工作。以减少我们在发布的时候出现更过甚至是出现之前解决了的问题再次重现。  这里主要是使用MockMvc对我们的系统的Controller进行单元测试。  对...

使用PowerMockito.whennew的时候,注解preparefortest里面的类需要是mock的new代码所在的类的对象

Mock方法内部new出来的对象     测试目标代码: 01publicclassClassUnderTest{02 03  publicbooleancallInternalInstance(Stringpath){ ...

使用PowerMock模拟私有字段和私有方法

要模拟的类:publicclassPrivateObject{privateStringprivateString;publicPrivateObject(StringprivateString){this.privateString=privateString;}privateStringgetPrivateStri...

使用Mybatis-Generator自动生成Dao、Model、Mapping

  Mybatis属于半自动ORM,在使用这个框架中,工作量最大的就是书写Mapping的映射文件,由于手动书写很容易出错,我们可以利用Mybatis-Generator来帮我们自动生成文件。 1、相关文件关于Mybatis-Generator的下载可以到这个地址:https://gith...
首页上一页...173174175176177...下一页尾页