- 博客(10)
- 收藏
- 关注
原创 王爽汇编实验lab10-1
王爽汇编实验lab10-1assume cs:code data segment db 'Welcome to masm!hhhhhhhhhhh',0data endsstack segment dw 0,0,0,0,0,0,0,0stack endscode segment start: mov dh,10 mov dl,10 mov cl,1 mov ax,data mov ds,ax mov si,0 mov ax,stack mov ss,ax mov s
2022-03-16 08:46:34 433
原创 Failed to initialize end point associated with ProtocolHandler [“http-bio-8080“]
端口号被占用shutdown一下再启动就好了
2021-12-17 15:09:49 327
原创 mybatis报错:There is no getter for property named ‘xxx‘ in ‘class xxx‘
检查发现TBrand类写了get,set方法,所以错误不在这.错误原因:我的selectByConditionSingle(TBrand brand),参数类型是TBrand类,而在test判断时需要调用TBrand中的get()方法来获取参数值,但是我写成了数据库中的名称,TBrand类中没有getbrand_name()方法,所以报错.解决方法:参数占位符的名称一定要和类中属性的名称相同将test语句中变量名的名称替换为参数占位符的名称即可....
2021-12-15 17:19:03 2387
原创 mabatis报错:Result type not match for select id=“selectAll“
检查发现返回类型没问题啊映射文件里的返回类型也没问题找了好久发现:原来我定一个两个Brand类,在不同的modul下。修改为TBrand后,不再报错:问题解决
2021-12-15 14:18:14 15831 20
原创 使用mabatis代理开发时报错
Loading class `com.mysql.jdbc.Driver'. This is deprecated. The new driver class is `com.mysql.cj.jdbc.Driver'. The driver is automatically registered via the SPI and manual loading of the driver class is generally unnecessary.Exception in thread "main" or
2021-12-15 10:56:52 1322
原创 添加import注解后,springboot报错:APPLICATION FAILED TO START
原因就是import注解调用的是无参构造器,而我的User类没有无参构造器,所以报错。添加后问题解决。
2021-12-12 21:11:31 411 1
原创 jsp页面有乱码
加在jsp文件第一行,问题解决。<%@ page contentType="text/html;charset=UTF-8" language="java" %>
2021-12-11 15:44:31 189
原创 Tomcat启动报错:A child container failed during start
我的错误和别的贴提到的不同,我就是servlet写错了.@WebServlet("selectAllServletServlet")缺少了一个/加上问题解决。
2021-12-10 15:00:09 338
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人