[jbosstools-issues] [JBoss JIRA] (JBIDE-12774) Application validation error marker wont disappear

Jaroslav Jankovič (JIRA) jira-events at lists.jboss.org
Tue Oct 2 07:23:03 EDT 2012


     [ https://issues.jboss.org/browse/JBIDE-12774?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Jaroslav Jankovič updated JBIDE-12774:
--------------------------------------

    Steps to Reproduce: 
STEP: create jaxrs project with class:
{code}
package test;

import javax.ws.rs.core.Application;

public class A extends Application {

}
{code}
ASSERT: Application validation error found (should be configured with an @ApplicationPath)
STEP: modify it to ordinary bean (remove 'extends Application')
ASSERT: error will disappear
FAIL: error is still present (in java editor, Markers and Problems view)

Same behaviour with class:
{code}
package test;

import javax.ws.rs.ApplicationPath;

@ApplicationPath("/rest")
public class A {

}
{code}

  was:
STEP: create jaxrs project with class:
{code}
package test;

import javax.ws.rs.core.Application;

public class A extends Application {

}
{code}
ASSERT: Application validation error found (should be configured with an @ApplicationPath)
STEP: modify it to ordinary bean (remove 'extends Application')
ASSERT: error will disappear
FAIL: error is still present (in java editor, Markers and Problems view)


    
> Application validation error marker wont disappear
> --------------------------------------------------
>
>                 Key: JBIDE-12774
>                 URL: https://issues.jboss.org/browse/JBIDE-12774
>             Project: Tools (JBoss Tools)
>          Issue Type: Bug
>          Components: Webservices
>    Affects Versions: 4.0.0.Alpha2
>            Reporter: Jaroslav Jankovič
>            Assignee: Xavier Coulon
>             Fix For: 4.0.0.Beta1
>
>


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira



More information about the jbosstools-issues mailing list