- 博客(21)
- 资源 (1)
- 收藏
- 关注
原创 feign.FeignException: status 404 reading xxx 问题解决
本地服务之间通过feign client调用时,报:‘feign.FeignException: status 404 reading xxx’ 。分析:主要是因为feign接口上注解@FeignClient,设置了url属性。解决:将url属性设置为本地ip:port即可。
2021-12-08 09:17:55 1630
原创 feign服务调用时 报jackson反序列化异常
异常详情:com.fasterxml.jackson.databind.exc.MismatchedInputException: Cannot deserialize instance of原因:feign client 接口中定义的 请求路径错了。
2021-11-08 17:52:12 1224
原创 ant design form表单 onSubmit 方法 使用心得
ant design form表单 onSubmit 方法 使用心得// 按钮-查询 handSubmit = e => { e.preventDefault(); ... }入参e 不能省略,否则会导致整个页面刷新。
2021-08-29 15:21:02 962
原创 2021-06-20 Springcloud DiscoveryClient没有getServices()方法
原因:导错包了。原来导入的是 import com.netflix.discovery.DiscoveryClient;正确是:import org.springframework.cloud.client.discovery.DiscoveryClient;
2021-06-20 11:28:25 292
原创 idea新建包,提示“invalid target package name specified”
我新建了一个用于存放枚举得包,命名为“enum”,结果提示名称无效。改为“enums”就行了。
2021-01-15 11:25:49 7342 3
原创 按照jdk8时,javac不是内部或外部命令
jdk具体按照步骤我不在赘述,网上一搜一大把。我安装完jdk8,并配置环境变量。打开cmd窗口,输入:java java -version都没问题。但是,javac 提示不是内部或外部命令。我仔细检查了一下,是因为在PATH中添加了"%JAVA_HOME%/bin;";"%JAVA_HOME%\jre\bin;"。正确的是 %JAVA_HOME%\bin;%JAVA_HOME%\jre\bin;。不应改待"",并把多余的;去掉,就ok了。...
2021-01-04 18:08:05 1228 1
原创 springboot项目中加入websocket服务端后,运行单元测试报错:javax.websocket.server.ServerContainer not available
解决办法:为SpringbootTest注解指定参数classes和webEnvironment,其中classes为启动类名称。@SpringBootTest(classes = OeeDemoApplication.class, webEnvironment = SpringBootTest.WebEnvironment.DEFINED_PORT)
2020-12-22 20:21:30 465
原创 Mybatis报错: Cause: java.sql.SQLSyntaxErrorException: Unknown column ‘shiftDate‘ in ‘where clause‘
错误详情:### The error occurred while setting parameters### SQL: select distinct device_code from item_loss_log where shift = ? and shiftDate = ?### Cause: java.sql.SQLSyntaxErrorException: Unknown column 'shiftDate' in 'where clause'这是个低级错误,查询字段拼写错误,将shi
2020-12-21 15:25:08 1252
原创 mybatis获取数据库连接时报错:The database URL cannot be null.
错误:The database URL cannot be null.通过javaconfig配置datasource时,要显式的设置url。如下: @Value("${spring.datasource.jdbc-url}") String url; @Value("${spring.datasource.username}") String username; @Value("${spring.datasource.password}") Str
2020-12-18 11:07:01 3737
原创 maven编译时,报错:Process terminated
详情:[ERROR] The project com.example:oee_demo:0.0.1-SNAPSHOT (E:\PROJECT\study-project\oee_demo\pom.xml) has 1 error[ERROR] 'dependencies.dependency.version' for com.alibaba:fastjson:jar is missing. @ line 89, column 21引入阿里的fastjson依赖时,没有指定, 指定版本号就
2020-12-09 15:51:32 1853
原创 sql语句中出现column保留字报错
报错详情:SELECT id ,column from sys_shelf> 1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'column from sys_shelf' at line 1> 时间: 0.027s原来sql语句如下:SELECT i
2020-12-08 15:38:15 673
原创 CentOS7启动的时候: ooh no! Something has gone wrong
虚拟机启动的时候报错,出现以下画面:执行一下命令,一路选择y,sudo yum history package-list gjssudo yum history package-list gnome-shellsudo yum update --skip-broken然后经过漫长的更新后,重启系统就可以了。...
2020-12-04 16:26:55 2449 3
原创 mybatis批量插入时报错:syntax error, expect ‘)‘
mybatis批量插入时报错:syntax error, expect ‘)’是因为传入的参数list为null,在代码中加上list.size()>0的判断。
2020-11-23 17:47:10 2333 1
原创 Mybatis封装的空指针异常
Mybatis报错:nested exception is org.apache.ibatis.builder.BuilderException: Error evaluating expression 'params.dataScope'. Cause: org.apache.ibatis.ognl.OgnlException: source is null for getProperty(null, "dataScope")。这个是mybatis对空指针异常的封装,要么检查参数是否为null,要么
2020-11-23 10:38:17 1709
原创 mybatis报错:There is no getter for property named ‘id‘ in ‘class java.lang.Long‘
mybatis报错:org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.reflection.ReflectionException: There is no getter for property named 'id' in 'class java.lang.Long'xml中,sql如下:select dd.*from sys_mouldtype_device md,
2020-11-20 20:16:14 1871 1
原创 请求url错误,然后springboot后端错误地将部分url路径当作请求参数来解析,导致500异常
vue前端通过request请求后台接口时,url路径错误导致后台报错,原因是将“listStoreOption”作为一个get请求参数来解析了,没有作为路径,因为在后台也没有正确处理对应请求的路径,异常详情如下:15:43:05.852 [http-nio-8080-exec-20] ERROR c.r.f.w.e.GlobalExceptionHandler - [handleException,83] - Failed to convert value of type 'java.lang.Stri
2020-11-19 16:44:48 5008
原创 Mybatis报错:Caused by: java.lang.ClassNotFoundException: Cannot find class: SysLineResult
报这个错是由于粘贴复制后,没有改返回值属性,如下 <select id="selectLineListByMattypeCode" parameterType="Long" resultType="SysLineResult"> select l.* from sys_materialtype_line ml, sys_dict_data dd, sys_line
2020-11-17 17:48:54 691
原创 vue本地前端调用服务器接口的代理设置
修改vue.config.js,主要代码如下: proxy: { // detail: https://cli.vuejs.org/config/#devserver-proxy [process.env.VUE_APP_BASE_API]: { // 访问路径,如‘dev-api’ target: `http://192.168.1.10:8080`, // 目标服务器ip和端口 changeOrigin: true, pat
2020-11-13 10:53:28 1453
原创 记一次新建外键约束失败---1215 - cannot add foreign key constraint
原因及解决方案:原因:1.外键在主表中没有建立索引2.外键在主从表类型不一致解决方法:1.给一个外键在主表中建立约束2.字段类型保持一致这两种情况,我都有遇到。
2020-11-13 10:35:59 80
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人