- 博客(15)
- 收藏
- 关注
原创 【无标题】
Initialization failed for ‘https://start.spring.io’ Please check URL, network and proxy settingscu创建Spring Boot出现URl错误,更换io为https://start.aliyun.com。
2022-06-07 18:12:42 109
原创 查询数据库,没有选择条件,却有出现选择的结果。
创建的mysql数据表中的一个status字段 为tinyint(1)类型,长度为1 ,comment为:0未审核 1 审核通过 -1 审核失败’,后台代码中,查询的sql结果却是status 有三个值 :true ;false ;null .当值为1的时候,可以查询到正确返回值。...
2022-05-07 19:06:32 407
原创 with root cause
Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is java.lang.NullPointerException] with root cause出现这中问题的时候,是因为Service层实现类未添加注解@Autowired...
2022-05-04 15:35:47 884
原创 【无标题】
ON DELETE SET NULL ON UPDATE SET NULL.当数据库有外键时候的插入失败,更新失败。插入的数据外键值要对应。上面的意思是,删除,更新互相不影响
2022-05-03 20:20:31 679
原创 跨域,post无法提交的问题
浏览器出现Access to XMLHttpRequest at ‘http://localhost:5500/get’ from origin ‘http://127.0.0.1:5500’ has been blocked by CORS policy: No ‘Access-Control-Allow-Origin’ header is present on the requested resource.跨域错误的问题,同时post提交无法成功。1.@CrossOrigin在controller类里
2022-04-29 23:32:30 400
原创 JestClient爆红,不支持自动注入JestClient解决式例
public JestClient getJestCline(){ JestClientFactory factory = new JestClientFactory(); factory.setHttpClientConfig(new HttpClientConfig .Builder("http://127.0.0.1:9200") .multiThreaded(true) .build()); return factory.getObject();}@Testvoid
2022-04-05 10:32:02 338
原创 exchange的绑定
direct当消息类型与绑定的消息一样,点对点会派发消息fanout广发,绑定的消息路由全部发送。topic是模糊匹配发送#零个或多个单词,*匹配一个单词
2022-04-04 12:12:37 227
原创 【无标题】
window10,64位Rabbitmq的安装,出错,测试。rabbitMQ下载地址https://www.rabbitmq.com/install-windows.html在中间的Direct Downloads选择windows下载erlang环境下载https://www.erlang.org/downloads选择window64位下载。erl配置环境变量,安装目录ERLANG_HOME=path中添加%ERLANG_HOME%\bin在cmd,输入erl,判断erl是否安装成
2022-04-04 11:36:07 1644
原创 RedisTemplete.opsForValue.set报错。
当出现了这样的报错org.springframework.core.serializer.support.SerializationFailedException: Failed to serialize object using DefaultSerializer; nested exception is java.lang.IllegalArgumentException是因为对象没有序列化,在public class Employee 类后面加上implements Serializable..
2022-04-03 12:05:17 988
原创 Win10安装Redis
下载地址:https://github.com/MicrosoftArchive/redis/releases/tag/win-3.2.100下载Redis-x64-3.2.100.zip版本,解压到指定目录启动cmd 解压目录下输入命令 redis-server redis.windows.conf。这是安装Redis打开另外一个cmd解压目录下命令:redis-server --service-install redis.windows.conf,这个是安装服务在系统服务中。查看是否成功加入R
2022-04-03 10:33:31 1140
原创 RestController中getMpping页面输入出错
@GetMapping("/empp/{id}")/ 这样的末尾不需要/empid=asdf&name=abc而是需要.emp/2。后面直接带数字public String deleteEmp(@PathVariable("id") Integer id){
2022-04-01 22:52:21 67
原创 spirngBoot版本过高,JPA的findByid无法使用。
@GetMapping("/user/{id}")public User getUser(@PathVariable(“id”) Integer id){User user;user = userRepository.findById(id).orElse(null);return user;}
2022-03-29 22:04:26 223
原创 弹出输入框
<a href="#" class="btn btn-primary" data-toggle="modal" data-target="#newCustomerDialog" onclick="clearCustomer()">新建</a>#newCustomerDialog是你form表单的IDdata-toggle:指以什么事件触发,相当于告诉浏览器你是一个什么组件,常用的如modal(模态框),popover(弹出框),tooltips(提示.
2021-12-10 12:17:58 770
原创 使用mybatis查询条件中出现中文,查询失败
使用mybatis查询条件中出现中文,查询失败要解决这个问题很简单,只需要在配置jdbc.properties时在jdbcURL后增加参数useUnicode=true&characterEncoding=UTF-8来指定编码格式即可,两者之间用“?”相连
2021-12-07 12:22:47 328 1
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人