摘要: 系统环境: Windows 10, MySQL8.0.9 错误提示:无法启动Mysql服务 错误1053:服务没有及时响应启动或控制请求。 重启或者重新安装后,仍然提示错误。 解决方法:只需 3步。 1. 此电脑右键 ,管理菜单 2.本地用户和组 - 组 - Administrators 3. 右键 阅读全文
posted @ 2022-07-13 10:05 一点不懂· 阅读(1874) 评论(0) 推荐(0)
摘要: 参考文献: https://www.cnblogs.com/lenve/p/12028285.html Spring Boot 算是目前 Java 领域最火的技术栈了,松哥年初出版的 《Spring Boot + Vue 全栈开发实战》迄今为止已经加印了 8 次,Spring Boot 的受欢迎程度 阅读全文
posted @ 2021-03-15 16:08 一点不懂· 阅读(981) 评论(0) 推荐(0)
摘要: 第一步安装RocketMQ 打开 http://rocketmq.apache.org/release_notes/release-notes-4.8.0/ 下载安装包 下载完成后配置window 环境变量 ,我的环境变量路径:ROCKETMQ_HOME = D:\Program Files (x8 阅读全文
posted @ 2021-01-30 14:56 一点不懂· 阅读(160) 评论(0) 推荐(0)
摘要: 配置好maven项目的依赖<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-websocket</artifactId></dependency> 1. MySpringC 阅读全文
posted @ 2021-01-25 14:54 一点不懂· 阅读(412) 评论(0) 推荐(0)
摘要: package com.xbr.om.core.util; import org.springframework.stereotype.Component; import javax.servlet.http.HttpServletRequest; import java.net.InetAddre 阅读全文
posted @ 2021-01-15 11:12 一点不懂· 阅读(451) 评论(0) 推荐(0)
摘要: 1. 先把数据计算生成百分比 public JsonResult add(@Validated(ValidateConfig.ADD.class)SecKillDevice secKillDevice, HttpServletRequest request) { //首先循环 获取当前选取的商家li 阅读全文
posted @ 2020-12-29 17:10 一点不懂· 阅读(2230) 评论(0) 推荐(1)
摘要: 由上可知,报错提示当前请求不是一个 multipart request, 原因是在feign中,发送 multipartfile文件,应该使用【@RequestPart】而不是【@RequestParam】,且需要设置请求content-type为【multipart/form-data】,所以正确 阅读全文
posted @ 2020-12-09 11:48 一点不懂· 阅读(1642) 评论(0) 推荐(0)