随笔分类 - bug
摘要:Required String parameter 'loginAcct' is not present 如果将后端的接口注释之后,前端的页面可以访问了的话,同时后端接口也没有拼写问题,网上大多数的解决方式都是将 @RequestParam(value = "xxx") 改为 @RequestPar
阅读全文
摘要:Eclipse启动tomcat时的问题 有可能会报错[org.springframework.web.context.ContextLoaderListener] 如下图 解决方式 : 右击启动的类的项目 ⇒ Properties ⇒ Deployment Assembly ⇒ add ⇒ Java
阅读全文
摘要:问题如下 解决方式: 第一种: 第二种: 进入pom文件之后右击 即可
阅读全文
摘要:required a single , but 2 were found 报错: *************************** APPLICATION FAILED TO START *************************** Description: Field messag
阅读全文
摘要:ReferenceError 错误:为在作用域中找不到 大概率为前端错误,需要检查前端代码是否有写错的地方 TypeError 错误:为在作用域找到了但是做了他不能做的事情 大概率为后端接口错误,传给了前端错误的参数,导致此错误
阅读全文
摘要:问题: 使用npm install编译项目的时候容易出现node-sass报安装失败报npm ERR! Failed at the node-sass@XXX postinstall script 解决方式: 卸载失败的安装npm uninstall node-sass 在**https://git
阅读全文
摘要:问题ERROR 1045 (28000): Access denied for user ‘root‘@‘localhost‘ (using password: NO) 解决方式 关闭MySQL服务net stop mysql 以管理员权限运行第一个窗口 进入到MySQL的bin文件下,mysql8
阅读全文
摘要:错误信息 [ERROR] Failed to execute goal org.springframework.boot:spring-boot-maven-plugin:2.0.1.RELEASE:repackage (default) on project xc-framework-common
阅读全文
摘要:使用maven创建多模块项目的时候 对 service_edu打包的时候报错 [WARNING] The POM for com.mxc:wa-service:jar:1.0-SNAPSHOT is missing, no dependency information available 解决在父模
阅读全文
摘要:报错信息 cnpm : 无法加载文件 D:\Program Files\nodejs\node_global\cnpm.ps1,因为在此系统上禁止运行脚本。有关详细信息,请参阅 https:/go.microsoft.com/fwlink/?LinkID=135170 中的 about_Execut
阅读全文
摘要:更改vmware的兼容性即可,改为Worksatation 8.x之后正常
阅读全文
摘要:解决方式为和修改不编译.properties .xml文件相同 <build> <resources> <resource> <filtering>true</filtering> <directory>${project.basedir}/src/main/resources</directory
阅读全文
摘要:1. 检查maven的配置如下 2. 设置自己的settings <mirror> <id>alimaven</id> <name>aliyun maven</name> <url>http://maven.aliyun.com/nexus/content/repositories/central/
阅读全文
摘要:错误为运行xxxApplication报以下的错误 *************************** APPLICATION FAILED TO START *************************** Description: Failed to configure a DataS
阅读全文
摘要:注意点 1.创建父工程的时候要注意dependencyManagement不要加否则子工程就需要导入对应的版本,不然会报错.还有就是打包要pom eg: <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apach
阅读全文