码迷,mamicode.com
首页 >  
搜索关键字:annotations    ( 528个结果
TestNG(十五)xml文件实现多线程测试
package com.course.testng.thread; import org.testng.annotations.Test; public class ThreadOnXml { @Test() public void test1(){ System.out.println(); Sy... ...
分类:编程语言   时间:2019-09-03 14:57:11    阅读次数:149
TestNG(十四) 线程测试
package com.course.testng.thread; import org.testng.annotations.Test; public class multiThread { @Test(invocationCount = 10, threadPoolSize = 3) publi... ...
分类:编程语言   时间:2019-08-28 10:34:01    阅读次数:78
TestNG(十) 依赖测试
package com.course.testng.suite; import org.testng.annotations.Test; public class DepenTest { @Test public void test1(){ System.out.println("test1 run... ...
分类:其他好文   时间:2019-08-24 18:47:07    阅读次数:61
TestNG(九) 异常测试
package com.course.testng.suite; import org.testng.annotations.Test; public class ExpectedExeption { /* 什么时候回应道异常测试????? 在我们期望结果为某一个异常的时候 比如:我们传入不合法的参... ...
分类:其他好文   时间:2019-08-24 18:32:57    阅读次数:76
TestNG(八) 类分组测试
package com.course.testng.groups; import org.testng.annotations.Test; @Test(groups = "stu") public class GroupsOneClass1 { public void student1(){ Sys... ...
分类:其他好文   时间:2019-08-24 17:07:00    阅读次数:165
SpringBoot注解大全
一、注解(annotations)列表 @SpringBootApplication:包含了@ComponentScan、@Configuration和@EnableAutoConfiguration注解。其中@ComponentScan让spring Boot扫描到Configuration类并把 ...
分类:编程语言   时间:2019-07-18 19:53:06    阅读次数:121
Error:Failed to resolve: com.android.support:support-annotations:26.0.2
异常信息记录: ? ? 解决方法: 在项目的build.gradle里面最上层填写这样一句话:::: configurations.all { resolutionStrategy.force 'com.android.support:support-annotations:23.1.0' } ...
分类:移动开发   时间:2019-07-09 00:24:35    阅读次数:173
Spring boot caching example
spring cache API 1. Types of cache 1.1 In-memory caching 如 redis。 1.2 database caching 如 hibernate cache。 2. Spring boot cache annotations initialize ...
分类:编程语言   时间:2019-07-07 09:48:11    阅读次数:103
springBoot注解大全
? 一、注解(annotations)列表 @SpringBootApplication: 包含了@ComponentScan、@Configuration和@EnableAutoConfiguration注解。其中@ComponentScan让spring Boot扫描到Configuration ...
分类:编程语言   时间:2019-07-04 15:53:14    阅读次数:141
播报哥架构运行异常提示
org.apache.ibatis.annotations.Result存在于mybatis_3.4.4的jar包中,3.4.2的没有 SEVERE: Resource read error: Could not load com/google/common/collect/Ordering.cla ...
分类:其他好文   时间:2019-06-25 13:12:23    阅读次数:209
528条   上一页 1 ... 7 8 9 10 11 ... 53 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!