摘要:
利用maven创建项目出现这个问题是因为maven依赖父工程需要添加 <parent> <groupId>org.springframework.boot</groupId> <version>2.7.14</version> <artifactId>spring-boot-starter-pare 阅读全文
摘要:
出现Failed to start bean 'documentationPluginsBootstrapper'; nested exception is java.lang.NullPointerException的错误 这个错误是因为在SpringBoot2.6之后,Spring MVC 处理 阅读全文
摘要:
依赖 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-redis</artifactId> <version>2.5.14</version> </depend 阅读全文
摘要:
public class RedisCache { @Autowired public RedisTemplate redisTemplate; /** * 缓存的基本对象。Integer String 实体类 * * @param key 缓存的键值 * @param value 缓存的值 * @ 阅读全文
摘要:
import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import java.io.IOException; public class WebUtils { /** * 阅读全文
摘要:
处理springboot使用fastJson浏览器调用接口正常返回数据却中文乱码的问题 这属于fastJson的一个bug只需要像下面这样操作就可以了 @Bean//使用Bean入fast JsonHt tpllessageConvert public HttpMessageConverter fa 阅读全文
摘要:
设置好路由以后组件就是不跳转而且不报错原因竟是VueRouter的routes属性被我敲成了 routers // 错误代码 const router = new VueRouter({ mode: 'history', routers })// 改正后 const router = new Vue 阅读全文
摘要:
在shell中我们可以直接输入命令pwd 来显示当前的工作目录,在C程序中调用getcwd函数可以获取当前的工作目录。函数声明: char *getcwd(char * buf,size_t size); 需要头文件: #include getcwd函数把当前工作目录存入buf中,如果目录名超出了参 阅读全文
摘要:
Vue 报错error:0308010C:digital envelope routines::unsupported 出现这个错误是因为 node.js V17版本中最近发布的OpenSSL3.0, 而OpenSSL3.0对允许算法和密钥大小增加了严格的限制,可能会对生态系统造成一些影响. 方法1 阅读全文
摘要:
从您提供的信息来看,您在尝试使用 git commit 命令提交代码时遇到了乱码问题。具体表现为提交信息包含乱码字符,无法正常识别。以下是对您所描述情况的分析与建议的恢复步骤: 问题分析: 提交信息乱码: 您提供的提交信息 '上传压缩包识别 名称和描述不完全乱码' 后面跟着的是一串看似无意义的字符序 阅读全文