2014-04-16 2 views
1

Liferay 6.1 로그 (WAS 8에 배포 됨)에 MissingResourceImpl 오류 수를 수정하려고합니다. 내 포틀릿은 Mojarra JSF 2.1.x를 사용하며 많은 태그에 대해서는 Tomahawk에 의존합니다. 내 pom.xml 파일Liferay는 ResourceHandler MissingResourceImpl 오류를 나타냅니다.

<dependency> 
    <groupId>org.glassfish</groupId> 
    <artifactId>javax.faces</artifactId> 
    <version>2.1.23</version> 
    <scope>provided</scope> 
</dependency> 
... 
<dependency> 
    <groupId>com.liferay.faces</groupId> 
    <artifactId>liferay-faces-bridge-impl</artifactId> 
    <version>3.1.2-ga3</version> 
    <exclusions> 
    <exclusion> 
     <groupId>com.sun.faces</groupId> 
     <artifactId>jsf-impl</artifactId> 
    </exclusion> 
    <exclusion> 
     <groupId>com.sun.faces</groupId> 
     <artifactId>jsf-api</artifactId> 
    </exclusion> 
    </exclusions> 
</dependency> 
<dependency> 
    <groupId>com.liferay.faces</groupId> 
    <artifactId>liferay-faces-portal</artifactId> 
    <version>3.1.2-ga3</version> 
    <exclusions> 
    <exclusion> 
     <groupId>com.sun.faces</groupId> 
     <artifactId>jsf-impl</artifactId> 
    </exclusion> 
    <exclusion> 
     <groupId>com.sun.faces</groupId> 
     <artifactId>jsf-api</artifactId> 
    </exclusion> 
    </exclusions> 
</dependency> 
... 
<dependency> 
    <groupId>org.apache.myfaces.tomahawk</groupId> 
    <artifactId>tomahawk20</artifactId> 
    <version>1.1.10</version> 
</dependency> 

에서

SystemOut  O 2014-04-13 08:48:39,166 [WebContainer : 50] ERROR com.liferay.faces.bridge.application.MissingResourceImpl - Resource handler=[[email protected]763d8a] was unable to create a resource for resourceName=[inputText.xhtml] libraryName=[org.apache.myfaces.custom] contentType=[null] 
SystemOut  O 2014-04-13 08:48:39,174 [WebContainer : 50] ERROR com.liferay.faces.bridge.application.MissingResourceImpl - Resource handler=[[email protected]763d8a] was unable to create a resource for resourceName=[selectOneRadio.xhtml] libraryName=[org.apache.myfaces.custom] contentType=[null] 
SystemOut  O 2014-04-13 08:48:39,184 [WebContainer : 50] ERROR com.liferay.faces.bridge.application.MissingResourceImpl - Resource handler=[com.liferay.faces.bridge.applicat[email protected]] was unable to create a resource for resourceName=[div.xhtml] libraryName=[org.apache.myfaces.custom] contentType=[null] 
SystemOut  O 2014-04-13 08:48:39,191 [WebContainer : 50] ERROR com.liferay.faces.bridge.application.MissingResourceImpl - Resource handler=[[email protected]763d8a] was unable to create a resource for resourceName=[radio.xhtml] libraryName=[org.apache.myfaces.custom] contentType=[null] 
SystemOut  O 2014-04-13 08:48:39,199 [WebContainer : 50] ERROR com.liferay.faces.bridge.application.MissingResourceImpl - Resource handler=[[email protected]763d8a] was unable to create a resource for resourceName=[div.xhtml] libraryName=[org.apache.myfaces.custom] contentType=[null] 
SystemOut  O 2014-04-13 08:48:39,206 [WebContainer : 50] ERROR com.liferay.faces.bridge.application.MissingResourceImpl - Resource handler=[[email protected]763d8a] was unable to create a resource for resourceName=[radio.xhtml] libraryName=[org.apache.myfaces.custom] contentType=[null] 
SystemOut  O 2014-04-13 08:48:39,215 [WebContainer : 50] ERROR com.liferay.faces.bridge.application.MissingResourceImpl - Resource handler=[[email protected]763d8a] was unable to create a resource for resourceName=[div.xhtml] libraryName=[org.apache.myfaces.custom] contentType=[null] 
SystemOut  O 2014-04-13 08:48:39,226 [WebContainer : 50] ERROR com.liferay.faces.bridge.application.MissingResourceImpl - Resource handler=[[email protected]763d8a] was unable to create a resource for resourceName=[inputText.xhtml] libraryName=[org.apache.myfaces.custom] contentType=[null] 
... 

나는 근본 원인을 찾아 이러한 오류를 해결하기 위해 많은 시도했지만 지금까지 행운과 함께. 어떤 도움/방향을 부탁드립니다!

미리 감사드립니다.

답변

관련 문제