SLF4J:无法在 Eclipse 上加载 class
SLF4J: Failed to load class at Eclipse
使用 win10,Eclipse June 2020 C++ IDE,jdk-13.0.2,IAR 插件。
我有一个包含多个子项目的项目,它不使用命令行编译 (eclipsec.exe)。
运行命令
C:\eclipse\eclipsec.exe -nosplash --launcher.suppressErrors -application org.eclipse.cdt.managedbuilder.core.headlessbuild -no-indexer -data . -import lib1 -import libDsp -build PrjSystem/Debug
结果是libDsp
没有编译
日志的输出:
Adding appender for logfile C:\work\.metadata\IAR-plugins.log
Opening 'LibDsp'.
SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder".
SLF4J: Defaulting to no-operation (NOP) logger implementation
SLF4J: See http://www.slf4j.org/codes.html#StaticLoggerBinder for further details.
Opening 'Lib1'.
Opening 'Lib2'.
...
Warning: Nashorn engine is planned to be removed from a future JDK release
为什么没有创建 LibDsp?
如何解决这个SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder".
问题? (pom.xml的解法不行,因为不是JavaIDE)
项目没有编译,因为一些文件被“锁定”。
锁定文件示例:
Error[Ms003]: could not open file "Components\folder\file.o" for writing
删除 Eclipse .metadata
文件夹或特定文件 .metadata\.plugins\org.eclipse.core.resources\.safetable\org.eclipse.core.resources
后,文件被释放。
slf4j
与此问题无关。
使用 win10,Eclipse June 2020 C++ IDE,jdk-13.0.2,IAR 插件。 我有一个包含多个子项目的项目,它不使用命令行编译 (eclipsec.exe)。
运行命令
C:\eclipse\eclipsec.exe -nosplash --launcher.suppressErrors -application org.eclipse.cdt.managedbuilder.core.headlessbuild -no-indexer -data . -import lib1 -import libDsp -build PrjSystem/Debug
结果是libDsp
没有编译
日志的输出:
Adding appender for logfile C:\work\.metadata\IAR-plugins.log
Opening 'LibDsp'.
SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder".
SLF4J: Defaulting to no-operation (NOP) logger implementation
SLF4J: See http://www.slf4j.org/codes.html#StaticLoggerBinder for further details.
Opening 'Lib1'.
Opening 'Lib2'.
...
Warning: Nashorn engine is planned to be removed from a future JDK release
为什么没有创建 LibDsp?
如何解决这个SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder".
问题? (pom.xml的解法不行,因为不是JavaIDE)
项目没有编译,因为一些文件被“锁定”。
锁定文件示例:
Error[Ms003]: could not open file "Components\folder\file.o" for writing
删除 Eclipse .metadata
文件夹或特定文件 .metadata\.plugins\org.eclipse.core.resources\.safetable\org.eclipse.core.resources
后,文件被释放。
slf4j
与此问题无关。