I asked this question also here http://www.liferay.com/community/forums/-/message_boards/message/10970377
I have liferay 6.06 on jboss+tomcat. Portlet hook Spring MVC.
I have problem with redeploy this war. JBoss gets frozen after message Registering portlets for xyportlets and no more (error) message in server.log.
After restarting jboss - portlets work OK.
2011-10-03 11:33:45,914 INFO [org.jboss.web.tomcat.service.deployers.TomcatDeployment] (HDScanner) undeploy, ctxPath=/xyportlets
2011-10-03 11:33:49,092 INFO [STDOUT] (HDScanner) 11:33:49,089 INFO [ExtHotDeployListener:205] Extension environment for xyportlets will not be undeployed
2011-10-03 11:33:49,101 INFO [STDOUT] (HDScanner) 11:33:49,099 INFO [HookHotDeployListener:742] Hook for xyportlets was unregistered
2011-10-03 11:33:49,102 INFO [STDOUT] (HDScanner) 11:33:49,101 INFO [PortletHotDeployListener:404] Unregistering portlets for xyportlets
2011-10-03 11:33:49,578 INFO [STDOUT] (HDScanner) 11:33:49,577 INFO [PortletHotDeployListener:440] 6 portlets for xyportlets was unregistered
2011-10-03 11:33:49,751 INFO [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost].[/xyportlets]] (HDScanner) Closing Spring root WebApplicationContext
2011-10-03 11:33:52,013 INFO [org.jboss.web.tomcat.service.deployers.TomcatDeployment] (HDScanner) deploy, ctxPath=/xyportlets
2011-10-03 11:33:52,307 INFO [org.apache.catalina.core.ContainerBase.[jboss.web].[localhost].[/xyportlets]] (HDScanner) Initializing Spring root WebApplicationContext
2011-10-03 11:33:54,771 INFO [STDOUT] (HDScanner) 11:33:54,770 INFO [HookHotDeployListener:394] Registering hook for xyportlets
2011-10-03 11:33:55,114 INFO [STDOUT] (HDScanner) Loading vfsfile:/C:/development/jboss/server/portal_V1/deploy/xyportlets.war/WEB-INF/classes/portal-xy.properties
2011-10-03 11:33:55,436 INFO [STDOUT] (HDScanner) 11:33:55,435 INFO [HookHotDeployListener:649] Hook for xyportlets is available for use
2011-10-03 11:33:55,438 INFO [STDOUT] (HDScanner) 11:33:55,437 INFO [PortletHotDeployListener:220] Registering portlets for xyportlets
I've started debuger and it stopped in InvokerPortletImpl.java on this line
_portlet.init(portletConfig);
I have 6 portlets inside - first is initialized OK, then second initializes forever.
portlet.xml
<portlet>
<portlet-name>xy</portlet-name>
<display-name>XY Portlet</display-name>
<portlet-class>org.springframework.web.portlet.DispatcherPortlet</portlet-class>
<init-param>
<name>contextConfigLocation</name>
<value>/WEB-INF/context/xy.xml</value>
</init-param>
<expiration-cache>0</expiration-cache>
<supports>
<mime-type>text/html</mime-type>
<portlet-mode>view</portlet-mode>
</supports>
<portlet-info>
<title>XY Title</title>
<short-title>XYT</short-title>
</portlet-info>
<portlet-preferences>
<preference>
<name>portlet-setup-show-borders</name>
<value>false</value>
</preference>
<preference>
<name>show-title</name>
<value>false</value>
</preference>
</portlet-preferences>
</portlet>
xy.xml
<?xml version="1.0" encoding="UTF-8" ?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:p="http://www.springframework.org/schema/p"
xmlns:util="http://www.springframework.org/schema/util" xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-2.5.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-2.5.xsd
">
<context:annotation-config />
<bean
class="org.springframework.web.portlet.mvc.annotation.DefaultAnnotationHandlerMapping">
</bean>
<bean name="xyController" class="xyz.portlets.XYController">
</bean>
</beans>
common.xml
xsi:schemaLocation="
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-2.5.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-2.5.xsd
http://www.springframework.org/schema/jee http://www.springframework.org/schema/jee/spring-jee-2.5.xsd
http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.0.xsd
">
<context:annotation-config />
<jee:jndi-lookup id="dataSource" jndi-name="java:comp/env/jdbc/AuditLog"/>
<bean id="messageSource"
class="org.springframework.context.support.ResourceBundleMessageSource">
<property name="basenames">
<list>
<value>sk.gov.nku.portal.resources.PortletResources</value>
</list>
</property>
</bean>
<!-- Default View Resolver -->
<bean id="viewResolver"
class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="viewClass"
value="org.springframework.web.servlet.view.JstlView" />
<property name="prefix" value="/WEB-INF/html/" />
<property name="suffix" value=".jsp" />
</bean>
<!-- Default ExceptionHandler -->
<bean id="defaultExceptionHandler"
class="org.springframework.web.portlet.handler.SimpleMappingExceptionResolver">
<property name="order" value="10" />
<property name="defaultErrorView" value="error" />
</bean>
XYController.java
@Controller
@RequestMapping("VIEW")
@SessionAttributes("xyForm")
public class XYController {
@Autowired
DataSource dataSource;
public DataSource getDataSource() {
return dataSource;
}
public void setDataSource(DataSource dataSource) {
this.dataSource = dataSource;
}
public void cleanup() {
MultiThreadedHttpConnectionManager.shutdownAll();
}
private static Log _log = LogFactoryUtil.getLog(XYController.class);
@RequestMapping(params = "view=init_new")
public String viewNewInit(Model model, final RenderRequest request)
throws SQLException {
...........
Thank you for help.