0
votes

I created a MVC portlet in liferay 7 using gradle build type.The build was successful,but portlet is not available under sample category.I checked server console but nothing was there,other than server startup.In between that I am not able to find out the jar location of created portlet.Please help me

@Component(
immediate = true,
property = {
    "com.liferay.portlet.display-category=category.sample",
    "com.liferay.portlet.instanceable=true",
    "javax.portlet.display-name=Test Portlet",
    "javax.portlet.init-param.template-path=/",
    "javax.portlet.init-param.view-template=/view.jsp",
    "javax.portlet.name=" + TestPortletKeys.Test,
    "javax.portlet.resource-bundle=content.Language",
    "javax.portlet.security-role-ref=power-user,user"
},
service = Portlet.class)

public class TestPortlet extends MVCPortlet {
@Override
public void doView(RenderRequest renderRequest, RenderResponse renderResponse)
        throws IOException, PortletException {
    System.out.println("controller is executing");
    super.doView(renderRequest, renderResponse);
    }
}
1
This question would be better suited over at Super User.user2653663

1 Answers

1
votes

You should check jar file under build/lib. If it is present there just copy it to bundle/osgi/modules it will automatically scanned and started.