my website is crashing style and lose image randomly i got this warnings
Dec 12, 2018 11:13:22 AM com.sun.faces.application.resource.ResourceHandlerImpl logMissingResource
WARNING: JSF1064: Unable to find or serve resource, components.css.
Dec 12, 2018 11:13:22 AM com.sun.faces.application.resource.ResourceHandlerImpl logMissingResource
WARNING: JSF1064: Unable to find or serve resource, jquery/jquery-plugins.js.
Dec 12, 2018 11:13:22 AM com.sun.faces.application.resource.ResourceHandlerImpl logMissingResource
WARNING: JSF1064: Unable to find or serve resource, core.js.
crashing is randomly in every fresh page , when you refresh or move to any page more time crashing is happen my folder path
resources > barcelona-layout > css > cssfile
my template file
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:ui="http://java.sun.com/jsf/facelets"
xmlns:p="http://primefaces.org/ui">
<h:head>
<h:outputScript name="js/nanoscroller.js" library="barcelona-layout" />
<h:outputScript name="js/layout.js" library="barcelona-layout" />
<h:outputScript name="js/ripple.js" library="barcelona-layout" />
<ui:insert name="head" />
</h:head>
<h:body styleClass="main-body">
<div
class="layout-wrapper #{guestPreferences.overlayMenu ? 'layout-overlay-menu' : null} #{guestPreferences.orientationRTL ? 'layout-rtl' : null}">
<ui:include src="./topbar.xhtml" />
<ui:include src="./menu.xhtml" />
// code ..
</div>
<h:outputStylesheet name="css/nanoscroller.css" library="barcelona-layout" />
<h:outputStylesheet name="css/animate.css" library="barcelona-layout" />
<h:outputStylesheet name="css/ripple.css" library="barcelona-layout" />
<h:outputStylesheet name="css/layout-#{guestPreferences.layout}.css"
library="barcelona-layout" />
<h:outputStylesheet name="css/custom.css" library="barcelona-layout" />
</h:body>
</html>
Comments
Post a Comment