Expand my Community achievements bar.

Learn about Edge Delivery Services in upcoming GEM session

Getting "Cannot be resolved to a type" error on java files

Avatar

Level 2

Hi,

I'm upgrading to aem6.4 and r7 annotations in project.  We are getting below common error on difference java files on different applications.

the bold lines are the common error that we are getting in different files across difference applications.  The line no. 39 has below line only,

Page page = currentPage;

In every application wherever we use currentPage object it throws a error "cannot be resolved to a type".

Below is the java file where i'm facing error,

Environment : AEM 6.4.4

Any suggestion on this would be more helpful.

Thanks,

Velu

3 Replies

Avatar

Level 4

Add the package containing your java class to the bundle plugin configuration in the pom file.

Apache Felix - Apache Felix Maven Bundle Plugin (BND)

<plugin>

    <groupId>org.apache.felix</groupId>

    <artifactId>maven-bundle-plugin</artifactId>

    <extensions>true</extensions>

    <configuration>

        <exportScr>true</exportScr>

        <instructions>

            ...

            <Export-Package>

                com.myProject.myProjectchat.global.*

            </Export-Package>

            ...

        </instructions>

    </configuration>

    ...

</plugin>

Avatar

Level 1
Level 1

Hi guys i am facing below error pls help me 

yv3_0-1658596349290.png

 

Avatar

Level 4

You are importing the wrong package. 

 

One of your Java Classes is likely importing ...

import jdk.internal.loader.Resource

... instead, import

import org.apache.sling.api.resource.Resource;