- 博客(11)
- 收藏
- 关注
原创 The field file exceeds its maximum permitted size of 1048576 bytes.
org.springframework.web.multipart.MaxUploadSizeExceededException: Maximum upload size exceeded; nested exception is java.lang.IllegalStateException: org.apache.tomcat.util.http.fileupload.impl.FileSizeLimitExceededException: The field file exceeds its ma..
2021-12-16 19:05:29 655
原创 org.apache.ibatis.binding.BindingException: Invalid bound statement (not found): com.zhang.eduservic
org.apache.ibatis.binding.BindingException: Invalid bound statement (not found): com.zhang.eduservice.mapper.EduCourseMapper.getCoursePublishInfo造成这个问题有两种情况:1. 可能是xml文件中的id属性写错了2. xml文件放在了src\java\main目录下面, maven项目在加载这个目录的时候只会加载编译 .java类型的文件, 不会加载.
2021-12-05 19:08:19 333
原创 [Vue warn]: Invalid prop: type check failed for prop “image“. Expected String, got Undefined.
出现这个错误,是因为它这里要类型是String, 而实际上的是Undefined,所以我们要找与image相关联的数据上面找到了与image相关联的数据是teacher.avatarteacher中什么都没有定义,所以我们可以加上 avatar = '', 就是令avatar为空字符串.如下图:加上avatar = '' 后, 错误就没有了....
2021-11-21 12:33:49 1296 1
原创 启动springboot出现(Failed to configure a DataSource: ‘url‘ attribute is not specif)是因为你没有配置数据源(数据库相关配置).
spring boot 会默认加org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration这个类,而你的模块中可能没有配置数据库的数据源.解决方法:1.在配置文件中配置数据源 (如果你的这个模块不需要连接到数据库,不建议使用这种方法)2.在启动类的@SpringBootApplication注解上加上exclude属性, exclude = DataSourceAutoApplication.class..
2021-11-20 11:38:23 552
原创 CMD关闭端口号的命令
1.查询端口netstat -ano | findstr "123456"TCP 127.0.0.1:1234 0.0.0.0:0 LISTENING 67892.查询端口名tasklist | findstr "6789"studio64.exe 6789 Console 3 1,385,024 K3.关闭端口taskkill /pid "678...
2021-11-16 17:12:27 6069
原创 No ‘Access-Control-Allow-Origin‘ (跨域问题)
01.html:1AccesstoXMLHttpRequestat'http://localhost:8001/eduservice/teacher/findAll'fromorigin'http://127.0.0.1:8848'hasbeenblockedbyCORSpolicy:No'Access-Control-Allow-Origin'headerispresentontherequestedresource.这个问题很常见,只要前端页面的访问地址...
2021-11-13 19:02:49 1395
原创 java.lang.IllegalStateException
java.lang.IllegalStateException:Optionalintparameter'usid'ispresentbutcannotbetranslatedintoanullvalueduetobeingdeclaredasaprimitivetype.Considerdeclaringitasobjectwrapperforthecorrespondingprimitivetype.这个问题是说int这个参数类...
2021-10-06 14:07:50 1266
原创 搭建mybatis具体步骤(在搭建好了maven的前提下)
一.导入依赖包到pom.xml,其中mybatis依赖包必须要,mysql资源包.代码如下: <!-- 导入mybatis依赖包 --> <dependency> <groupId>org.mybatis</groupId> <artifactId>mybatis</artifactId> <version>3.5.6</version>...
2021-09-16 17:37:45 90
原创 org.dom4j.DocumentException: mybatis.org Nested exception: mybatis.org
自定义mybatis底层:报这个错误的原因可能是因为网络不好或者没有连接网络
2021-09-16 17:05:44 452
原创 Tomcat被删除或者路径发生了改变,java项目报错怎么办?Could not publish server configuration for Tomcat v9.0 Server at loca
1.首先,重新下载tomcat并且在项目里面导入tomcat2.根据你tomcat的路径去修改环境变量3. 找到报错的项目,点开Bulid Path,点开Add Library4.点开 Servlet Runtime5.选择导入的tomcat,然后点Finish先运行项目看看有没有报下面的错误,如果没有,下面的就不要管了6.如果有以上的错误,在项目里找到Servlets,点开tomcat, 点开servlet.xml文件7.点开serv...
2021-08-07 10:43:01 547
原创 GET http://www.zhang.com:8080/20210730/JS/jquery-3.6.0.min.js net::ERR_ABORTED 404jQuery解析XML文件-界面.
这个问题是找不到jQuery,或者是你的路径写错了jie
2021-08-03 10:59:17 397
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人