com.baomidou.framework.spring.SpringHelper Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spring-wind Show documentation
Show all versions of spring-wind Show documentation
spring-wind extension of spring framework.
The newest version!
/**
* Copyright (c) 2011-2014, hubin ([email protected]).
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
package com.baomidou.framework.spring;
import javax.servlet.http.HttpServletRequest;
import org.springframework.web.context.request.RequestContextHolder;
import org.springframework.web.context.request.ServletRequestAttributes;
import com.baomidou.framework.spring.SpringContextHolder;
/**
*
* spring 辅助类
*
* @author hubin
* @date 2016-06-28
*/
public class SpringHelper {
/**
* 获取 HttpServletRequest
*/
public static HttpServletRequest getHttpServletRequest() {
return ((ServletRequestAttributes) RequestContextHolder.getRequestAttributes()).getRequest();
}
/**
*
* 从spring容器中获取 bean
*
*
* 使用的时候需要注入到 servlet-context.xml 如下设置:
*
*
*
*
* @param clazz
* bean class
* @return
*/
public static T getBean( Class clazz ) {
return SpringContextHolder.getBean(clazz);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy