URI illegal argument exception

Hi team,
When I start to open debugging the add-on Project. I always hits this URI execption.

  public static URL of(URI uri, URLStreamHandler handler)
        throws MalformedURLException {
        if (!uri.isAbsolute()) {
            throw new IllegalArgumentException("URI is not absolute");
        }

        String protocol = uri.getScheme();
}

I suspect the declare the wrong annotation. I tried to remove @Route. But It still hit same error.

@Route(value = "ldap-user-assignment-list-view", layout = MainView.class)
@ViewController("synergy_Userprofile.list")
@ViewDescriptor("ldap-user-assignment-list-view.xml")
@LookupComponent("userTable")

Even I resume the debug. It keep looping to the next files.

May know what is the possible root cause or any configuration I missed ?

Thank you and really appreciated.

Best Regard,
Chee Hao

Hello,

Can you provide demo project that contain that error to specify more details.

From context i can say only that if you creating add-on, i think instead of partent layout = mainLayout you need to push this

@Route(value = "<>", layout = DefaultMainViewParent.class)

Best regards,
Dmitry