Package com.weeego.framework.web.sitemesh.mapper

Source Code of com.weeego.framework.web.sitemesh.mapper.ConfigDecoratorMapper

package com.weeego.framework.web.sitemesh.mapper;

import java.lang.reflect.Field;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServletRequest;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import com.opensymphony.module.sitemesh.Decorator;
import com.opensymphony.module.sitemesh.Page;
import com.opensymphony.module.sitemesh.mapper.ConfigLoader;

public class ConfigDecoratorMapper extends
    com.opensymphony.module.sitemesh.mapper.ConfigDecoratorMapper {

  private static Logger logger = LoggerFactory
      .getLogger(ConfigDecoratorMapper.class);

  public Decorator getDecorator(HttpServletRequest request, Page page) {

    String thisPath = request.getServletPath();

    if (thisPath == null) {
      String requestURI = request.getRequestURI();
      if (request.getPathInfo() != null) {
        thisPath = requestURI.substring(0,
            requestURI.indexOf(request.getPathInfo()));
      } else {
        thisPath = requestURI;
      }
    } else if ("".equals(thisPath)) {
      thisPath = request.getPathInfo();
    } else if (thisPath.endsWith(".jsp")) {// weblogic将输入的url转换成实际的JSP
      String contextPath = request.getContextPath();
      String requestURI = request.getRequestURI();
      thisPath = requestURI.substring(contextPath.length());
      if (logger.isDebugEnabled()) {
        logger.debug("contextPath:" + contextPath + "requestURI:"
            + requestURI + "thisPath:" + thisPath);
      }

    }

    String name = null;
    try {
      ConfigLoader configLoader = (ConfigLoader) getValueByFieldName(
          this, "configLoader");
      name = configLoader.getMappedName(thisPath);
    } catch (ServletException e) {
      e.printStackTrace();
    } catch (Exception e) {
      e.printStackTrace();
    }

    Decorator result = getNamedDecorator(request, name);
    return ((result == null) ? super.getDecorator(request, page) : result);
  }

  public static Field getFieldByFieldName(Object obj, String fieldName) {
    for (Class<?> superClass = obj.getClass(); superClass != Object.class; superClass = superClass
        .getSuperclass()) {
      try {
        return superClass.getDeclaredField(fieldName);
      } catch (NoSuchFieldException e) {
      }
    }
    return null;
  }

  public static Object getValueByFieldName(Object obj, String fieldName)
      throws SecurityException, NoSuchFieldException,
      IllegalArgumentException, IllegalAccessException {
    Field field = getFieldByFieldName(obj, fieldName);
    Object value = null;
    if (field != null) {
      if (field.isAccessible()) {
        value = field.get(obj);
      } else {
        field.setAccessible(true);
        value = field.get(obj);
        field.setAccessible(false);
      }
    }
    return value;
  }

}
TOP

Related Classes of com.weeego.framework.web.sitemesh.mapper.ConfigDecoratorMapper

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.