IDEA部署spring mvc、ssm等遇到的错误集合

1、java.lang.UnsatisfiedLinkError: D:\apache-tomcat-7.0.64-windows-x64\apache-tomcat-7.0.64\bin

java.lang.UnsatisfiedLinkError: C:\Program Files\Apache Software Foundation\apache-tomcat-7.0.82\bin\tcnative-1.dll: Can't load IA 32-bit .dll on a AMD 64-bit platform
at java.lang.ClassLoader$NativeLibrary.load(Native Method)

翻译: 大概意思是无法加载 32位的 文件 tcnative-1.dll:  

如何解决,既然无法加载,就直接删除,删除后,启动项目正常 

2、Error during artifact deployment. See server log for details.

 artifact没有部署相对应的依赖,常见的是没有添加依赖项tomcat的lib等(下面以缺少tomcatLib为例子)

打开project strutures,将module->Dependencies,添加依赖tomcat依赖库,然后进入artifacts,如果存在“fix”的警告,就自己“手动fix”一下,问题解决——也就是将这个artifact添加依赖部署。

 

你可能感兴趣的:(后端开发)