若依框架 项目运行报错问题

前端项目启动报错 Syntax Error: TypeError: eslint.CLIEngine is not a constructor

stackoverflow上的解决方法
1)升级webstorm 到2019版本
2)降级eslint 到5
我选择 2) 代码如下

npm install --save-dev eslint@5

安装报错
1、npm audit fix
2、npm audit fix --force
3、npm audit

如果失败了
删除package-lock.json 在执行

org.quartz.JobPersistenceException: Couldn't retrieve trigger: Table 'fibc_crm.QRTZ_TRIGGERS' doesn't exist

大小写不识别

通过Maven导出war包时报错:Failed to execute goal org.apache.maven.plugins:maven-war-plugin:2.2:war (default-war) on project Ocr: Error assembling WAR: webxml attribute is required (or pre-existing WEB-INF/web.xml if executing in update mode) -> [Help 1]

在pom.xml中配置

<plugin>
	<groupId>org.apache.maven.pluginsgroupId>
	<artifactId>maven-war-pluginartifactId>
	<version>3.0.0version>
	<configuration>
		<webResources>
			<resource>
				<directory>targetdirectory>
			resource>
		webResources>
	configuration>
plugin>

错误修改JAVA.LANG.NOCLASSDEFFOUNDERROR: JAVAX/XML/BIND/DATATYPECONVERTER

若依框架 项目运行报错问题_第1张图片

jdk版本问题
idea 调整jdk版本
若依框架 项目运行报错问题_第2张图片

若依框架 项目运行报错问题_第3张图片

错误 接口问题

在这里插入图片描述
修改
若依框架 项目运行报错问题_第4张图片
若依框架 项目运行报错问题_第5张图片
把前端中的8080端口改成后端的8092端口就好了

你可能感兴趣的:(maven)