-
Notifications
You must be signed in to change notification settings - Fork 5
Sothis.properties
velna edited this page Nov 7, 2012
·
5 revisions
sothis.beanFactory.class | sothis的bean工厂,必须实现org.sothis.core.beans.BeanFactory接口或org.sothis.web.mvc.ServletBeanFactory接口。 sothis中所有的bean(ActionMapper,View,Controller等等)都是通过这个bean工厂生成的 |
sothis.http.characterEncoding | http的编码格式。默认为UTF-8 |
sothis.viewResolver.class | org.sothis.web.mvc.ModelAndViewResolver的实现,默认为org.sothis.web.mvc.DefaultModelAndViewResolver |
sothis.actionMapper.class | org.sothis.web.mvc.ActionMapper的实现,默认为org.sothis.web.mvc.DefaultActionMapper |
sothis.flash.class | org.sothis.web.mvc.Flash的实现,默认为org.sothis.web.mvc.DefaultFlash |
sothis.controller.packages | 以逗号分隔的controller包列表。sothis会在系统初始化时扫描这些包及其子包,注册扫描到的controller和action |
sothis.interceptors.${interceptorName}.class | 向sothis注册一个interceptor。${interceptorName}用来在系统中引用这个interceptor |
sothis.interceptors.stack.default | 默认的interceptor栈。以逗号分隔的interceptor引用名。 |
sothis.interceptors.stack.${stackName} | 向sothis注册一个interceptor栈。${stackName}用来在系统中引用这个interceptor栈。 |
sothis.views.${viewName}.class | 向sothis注册一个view。${viewName}用来在系统中引用这个view。 |
sothis.views.default | 默认的view引用名。 |
sothis.controller.initializeOnStartup | 设置是否在sothis初始化的时候同时初始化所有controller。默认为false。所谓初始化controller,只是通过beanFactory进行了一次getBean调用。 |