Indirectly referenced from required .class file

前端 未结 5 1058
无人共我
无人共我 2020-12-14 14:25

I\'m getting an error message when I try to build my project in eclipse:

The type weblogic.utils.expressions.ExpressionMap cannot be resolved. It is indirectly

5条回答
  •  旧巷少年郎
    2020-12-14 15:24

    This issue happen because of few jars are getting references from other jar and reference jar is missing .

    Example : Spring framework

    Description Resource    Path    Location    Type
    The project was not built since its build path is incomplete. Cannot find the class file for org.springframework.beans.factory.annotation.Autowire. Fix the build path then try building this project   SpringBatch     Unknown Java Problem
    

    In this case "org.springframework.beans.factory.annotation.Autowire" is missing.

    Spring-bean.jar is missing
    

    Once you add dependency in your class path issue will resolve.

提交回复
热议问题