Java
旅途上的背包客
这个作者很懒,什么都没留下…
展开
-
低版本idea引入okhttp4.X无法编译运行
pom引入okhttp4.x以前的版本idea可以正常编译运行,升级到okhttp4.x后,无法编译运行因为OkHttp 4.x将我们的实现语言从Java升级到Kotlin,并使其他所有内容保持不变。我们选择Kotlin是因为它在与Java紧密集成的同时为我们提供了强大的新功能。解决方式:1、选中菜单的file,选择setting,kotlin update2、选中菜单的file,选择project structure=>Modules=>选中项目=>点转载 2022-03-26 00:19:54 · 1157 阅读 · 0 评论 -
mysql查询库、表、字段中的自增属性
查询某个数据库下全部有自增属性的数据表:SELECT TABLE_NAME,extra FROM information_schema.COLUMNS WHERE TABLE_SCHEMA = ‘数据库名’ AND EXTRA = ‘auto_increment’;查询某个数据库下全部有自增属性的数据表和自增的字段:SELECT TABLE_NAME,extra,COLUMN_NAME FROM information_schema. COLUMNS WHERE TABLE_SCHEMA = ‘数据库原创 2021-02-04 17:23:44 · 1633 阅读 · 0 评论 -
初学SSM+mybatis单元测试遇到的问题,dao注入后为
Dao层注入失败,查看后,发现注解都写的无误,经朋友的指点,在测试类上加了一句“@RunWith(SpringJUnit4ClassRunner.class)@ContextConfiguration(locations={“classpath:spring/applicationContext-tx.xml”,“classpath:spring/applicationContext-servi...原创 2018-10-15 11:37:29 · 752 阅读 · 0 评论 -
初学Springmvc+mybatis实现分页
转自:https://blog.csdn.net/qq_34059693/article/details/78491513首先建一个分页的实体类:public class Page implements Serializable{ private static final long serialVersionUID=1L; pr...转载 2018-10-25 18:19:33 · 253 阅读 · 0 评论 -
spring-mvc搭建时,控制台有警告servlet配置文件
警告 [http-nio-8080-exec-4] org.springframework.web.servlet.DispatcherServlet.noHandlerFound No mapping found for HTTP request with URI [/favicon.ico] in DispatcherServlet with name ‘DefaultServlet’搭建s...原创 2018-12-14 12:30:58 · 2086 阅读 · 0 评论 -
调用框架中的方法时,返回Unknown return value type: java.lang.Boolean
在controller中调用框架中的方法,在页面中请求这个controller时,报Unknown return value type: java.lang.Boolean这个错误,是因为请求的这个controller方法上没加上@ResponseBody注解,加上@ResponseBody注解后,重启tomcat,再次请求这个controller时,就会返回框架中返回值了...原创 2018-12-15 17:54:13 · 4312 阅读 · 0 评论 -
使用nGinder压测平台参数化
import static net.grinder.script.Grinder.grinderimport static org.junit.Assert.*import static org.hamcrest.Matchers.*import net.grinder.plugin.http.HTTPRequestimport net.grinder.plugin.http.HTTPPl...原创 2019-07-16 10:44:26 · 1071 阅读 · 1 评论 -
使用nGrinder设置参数化策略
nGrinder作为一款性能测试工具,与loadrunner、jmeter还是有很大区别的,尤其是参数化这一块,需要自己去写脚本,关于参数化引用,https://blog.csdn.net/u012799877/article/details/96110269这一篇博客有写到~肯定有很多大佬,需要使用到参数化的策略,比如唯一、每次遇到、once等等,其实nGrinder也支持参数化策略的,只是...原创 2019-07-16 11:09:01 · 1558 阅读 · 1 评论