Deploying jersey web services on Payara 4 doesn´t expose methods
I developed a Maven Web Project to expose some jersey web services through Payara 4, the project builds fine, but my web methods are not exposed. Here is the main class: package br.com.ainstec.cfrjob.api.resources; import br.com.concil.cfrimporter.controller.CfrImport; import br.com.concil.cfrimporter.model.PojoTest; import javax.enterprise.context.RequestScoped; import javax.ws.rs.*; import javax.ws.rs.core.MediaType; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.context.support.ClassPathXmlApplicationContext; /** * Recurso REST para tratar chamadas * */