最近碰到一個問題,需要將一個集體序列化成json對象,如:List<Person> list=new ArrayList<Person>();
Person對象中有一個屬性是Dept類型的,序列化的時候不想將此屬性也序列化,也就是要排除該屬性,可以在Result中加一個屬性,excludeProperties,關鍵在於值寫什麼,這是個正則表達式,我還加了一個root參數,值是"list",也就是說讓struts2從這個對象開始進行序列化的操作,如果不配的話會默認使用action.
在序列化的過程中,struts2會逐漸進入這個方法
- public String write(Object object, Collection<Pattern> excludeProperties,
- Collection<Pattern> includeProperties, boolean excludeNullProperties) throws JSONException {
- this.excludeNullProperties = excludeNullProperties;
- this.buf.setLength(0);
- this.root = object;
- this.exprStack = "";
- this.buildExpr = ((excludeProperties != null) && !excludeProperties.isEmpty())
- || ((includeProperties != null) && !includeProperties.isEmpty());
- this.excludeProperties = excludeProperties;
- this.includeProperties = includeProperties;
- this.value(object, null);
-
- return this.buf.toString();
- }
其中的root就是我配的list對象了.最重要的一步是調用value方法,咱們看看這個方法,
- this.process(object, method);
這個方法中又調用了process方法來處理這個對象,
- private void process(Object object, Method method) throws JSONException {
- this.stack.push(object);
-
- if (object instanceof Class) {
- this.string(object);
- } else if (object instanceof Boolean) {
- this.bool((Boolean) object);
- } else if (object instanceof Number) {
- this.add(object);
- } else if (object instanceof String) {
- this.string(object);
- } else if (object instanceof Character) {
- this.string(object);
- } else if (object instanceof Map) {
- this.map((Map) object, method);
- } else if (object.getClass().isArray()) {
- this.array(object, method);
- } else if (object instanceof Iterable) {
- this.array(((Iterable) object).iterator(), method);
- } else if (object instanceof Date) {
- this.date((Date) object, method);
- } else if (object instanceof Calendar) {
- this.date(((Calendar) object).getTime(), method);
- } else if (object instanceof Locale) {
- this.string(object);
- } else if (object instanceof Enum) {
- this.enumeration((Enum) object);
- } else {
- this.bean(object);
- }
-
- this.stack.pop();
- }
這個裡面其實就是根據對象的類型來調用相應的方法來處理,可以看出struts2 json插件支持的數據類型.由於咱們是list類型的,會調用 array這個方法.
- private void array(Iterator it, Method method) throws JSONException {
- this.add("[");
-
- boolean hasData = false;
- for (int i = 0; it.hasNext(); i++) {
- String expr = null;
- if (this.buildExpr) {
- expr = this.expandExpr(i);
- if (this.shouldExcludeProperty(expr)) {
- it.next();
- continue;
- }
- expr = this.setExprStack(expr);
- }
- if (hasData) {
- this.add(',');
- }
- hasData = true;
- this.value(it.next(), method);
- if (this.buildExpr) {
- this.setExprStack(expr);
- }
- }
-
- this.add("]");
- }
add方法就是在最後的結果添加字符串,expandExpr方法就是用來產生正則是表達式的,對每一個屬性,都會產生一個正則是表達式,可以看出表達式裡面現在是[0],
然後又調用value方法處理第一個person對象.
person對象是Object類型的,在process方法中會調用bean方法,
- PropertyDescriptor[] props = info.getPropertyDescriptors();
-
- boolean hasData = false;
- for (PropertyDescriptor prop : props) {
- String name = prop.getName();
- Method accessor = prop.getReadMethod();
- Method baseAccessor = findBaseAccessor(clazz, accessor);
-
- if (baseAccessor != null) {
- if (baseAccessor.isAnnotationPresent(JSON.class)) {
- JSONAnnotationFinder jsonFinder = new JSONAnnotationFinder(baseAccessor).invoke();
-
- if (!jsonFinder.shouldSerialize()) continue;
- if (jsonFinder.getName() != null) {
- name = jsonFinder.getName();
- }
- }
- // ignore "class" and others
- if (this.shouldExcludeProperty(prop)) {
- continue;
- }
- String expr = null;
- if (this.buildExpr) {
- expr = this.expandExpr(name);
- if (this.shouldExcludeProperty(expr)) {
- continue;
- }
- expr = this.setExprStack(expr);
- }
-
- Object value = accessor.invoke(object);
- if (baseAccessor.isAnnotationPresent(JSONFieldBridge.class)) {
- value = getBridgedValue(baseAccessor, value);
- }
-
- boolean propertyPrinted = this.add(name, value, accessor, hasData);
- hasData = hasData || propertyPrinted;
- if (this.buildExpr) {
- this.setExprStack(expr);
- }
- }
- }
在bean方法中會得到這個對象的所有屬性,然後遍歷屬性,如果屬性名稱為id,則通過expandExpr方法會生成[0].id這個表達式,然後在shouldExcludeProperty方法中跟你傳的正則表達式進行比較,如果匹配上就會忽略掉該屬性,這個方法裡面有兩個比較,一個是忽略(excludeProperties)的比較,一個是包含(includeProperties)的比較,會先進行忽略的比較,因此,如果匹配上了,就直接返回true,就不會進行包含的比較,這就跟短路的情況差不多,如果沒有匹配,則進行下一個屬性的比較.
我們更關心的是這個表達式的規則是怎樣的,因此其他細節性的東西我們不必要去關注.
有不清楚的情況的話可以再跟蹤源代碼看。