Maven打包 程序包com.sun.image.codec.jpeg不存在

报错原因:

项目中要压缩图片

 

 用maven 打包时,提示

程序包com.sun.image.codec.jpeg不存在

解决方法:

<plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-compiler-plugin</artifactId>
    <configuration>
          <source>1.8</source>
          <target>1.8</target>
          <encoding>UTF-8</encoding>
          <compilerArguments>
             <verbose />                           
        <bootclasspath>${java.home}/lib/rt.jar;${java.home}/lib/jce.jar</bootclasspath> </compilerArguments> </configuration> </plugin>

 

posted @ 2021-10-27 11:03  唏嘘-  阅读(167)  评论(0编辑  收藏  举报