您好,登錄后才能下訂單哦!
本篇內容介紹了“jspXCMS如何配置文件”的有關知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領大家學習一下如何處理這些情況吧!希望大家仔細閱讀,能夠學有所成!
/src/main/resources/conf/plugin
二次開發的核心就是配置文件,通過配置文件將不同模塊和插件整合到一起。可以在這個目錄下新建自己的文件夾,如:abc、novel等,本例為plug,即/src/main/resources/conf/plugin/plug。
配置文件目錄及其子目錄下文件名為context*.xml的配置文件會自動加載為Spring的WebApplicationContext。
觸發自動加載的類是com.jspxcms.core.Application,相關代碼為:@ImportResource({ "classpath:conf/**/context*.xml", "classpath:custom.xml" })。
本例的配置文件/src/main/resources/conf/plugin/plug/context.xml,符合自動加載規則,文件中<bean class="com.jspxcms.plug.ContextConfig" />會加載該類中的配置。在這個類里分別加載了:
Entity:@EntityScan({ "com.jspxcms.plug.domain" })
Dao:@EnableJpaRepositories(basePackages = { "com.jspxcms.plug.repository" }, repositoryFactoryBeanClass = MyJpaRepositoryFactoryBean.class)
Service和前臺Controller:@ComponentScan({ "com.jspxcms.plug.service.impl", "com.jspxcms.plug.web.fore" })
配置文件目錄及其子目錄下文件名為backend*.xml的配置文件會自動加載為后臺Controller。
觸發自動加載的類是com.jspxcms.core.BackendWebConfig,相關代碼為:@ImportResource({ "classpath:conf/**/backend*.xml" })。
本例的配置文件/src/main/resources/conf/plugin/plug/backend.xml符合自動加載規則。
<context:component-scan base-package="com.jspxcms.plug.web.back" use-default-filters="false"> <context:include-filter type="annotation" expression="org.springframework.stereotype.Controller"/> <context:include-filter type="annotation" expression="org.springframework.web.bind.annotation.ControllerAdvice"/> </context:component-scan>
這個配置會自動加載com.jspxcms.plug.web.back包下所有帶有Controller或ControllerAdvice注解的類。
前臺模板Freemarker標簽、國際化文件目錄等配置在conf.properties中配置。
配置文件目錄及其子目錄下文件名為conf*.properties的文件會自動加載。
觸發自動加載的類是com.jspxcms.core.ShiroConfig,相關代碼為:loader.setValue("classpath:conf/plugin/**/conf*.properties", "classpath:conf/conf.properties");。
本例的配置文件/src/main/resources/conf/plugin/plug/conf.properties,符合自動加載規則。
后臺功能菜單及權限由該文件配置。
配置文件目錄及其子目錄下文件名為menu*.yml的文件會自動加載。
觸發自動加載的類是com.jspxcms.core.MenuConfig,相關代碼為:appContext.getResources("classpath:conf/**/menu*.yml");
本例的配置文件/src/main/resources/conf/plugin/plug/menu.properties,符合自動加載規則。
“jspXCMS如何配置文件”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識可以關注億速云網站,小編將為大家輸出更多高質量的實用文章!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。