跳过导航链接
A B C E F G H L M O P Q R S T W 

A

add(V, V...) - 类 中的方法org.hswebframework.web.Lists.ListBuilder
 
addAll(Collection<V>) - 类 中的方法org.hswebframework.web.Lists.ListBuilder
 
analytical(String, String) - 类 中的静态方法org.hswebframework.web.ExpressionUtils
使用默认的变量解析表达式
analytical(String, Map<String, Object>, String) - 类 中的静态方法org.hswebframework.web.ExpressionUtils
解析表达式,表达式使用ExpressionUtils.PATTERN进行提取
如调用 analytical("http://${3+2}/test",var,"spel")
支持的表达式语言: freemarker spel ognl groovy js
AopUtils - org.hswebframework.web中的类
 
ApplicationContextHolder - org.hswebframework.web中的类
 
ApplicationContextHolder() - 类 的构造器org.hswebframework.web.ApplicationContextHolder
 

B

buildList(Supplier<List<V>>) - 类 中的静态方法org.hswebframework.web.Lists
 
buildList(V...) - 类 中的静态方法org.hswebframework.web.Lists
 
buildList(List<V>) - 类 中的静态方法org.hswebframework.web.Lists
 
buildMap(Map<K, V>) - 类 中的静态方法org.hswebframework.web.Maps
 
buildMap() - 类 中的静态方法org.hswebframework.web.Maps
 
buildMap(Supplier<Map<K, V>>) - 类 中的静态方法org.hswebframework.web.Maps
 

C

clear() - 类 中的静态方法org.hswebframework.web.ThreadLocalUtils
清空ThreadLocal
convert() - 类 中的方法org.hswebframework.web.HttpParameterConverter
 

E

escape(String) - 类 中的静态方法org.hswebframework.web.RegexUtils
 
ExpressionUtils - org.hswebframework.web中的类
表达式工具,用户解析表达式为字符串
ExpressionUtils() - 类 的构造器org.hswebframework.web.ExpressionUtils
 

F

findAnnotation(Class, Class<T>) - 类 中的静态方法org.hswebframework.web.AopUtils
 
findAnnotation(Class, Method, Class<T>) - 类 中的静态方法org.hswebframework.web.AopUtils
 
findAnnotation(JoinPoint, Class<T>) - 类 中的静态方法org.hswebframework.web.AopUtils
 
findMethodAnnotation(Class, Method, Class<T>) - 类 中的静态方法org.hswebframework.web.AopUtils
 

G

get() - 类 中的静态方法org.hswebframework.web.ApplicationContextHolder
 
get() - 类 中的方法org.hswebframework.web.Lists.ListBuilder
 
get() - 类 中的方法org.hswebframework.web.Maps.MapBuilder
 
get(String) - 类 中的静态方法org.hswebframework.web.ThreadLocalUtils
从ThreadLocal中获取值
get(String, Supplier<T>) - 类 中的静态方法org.hswebframework.web.ThreadLocalUtils
从ThreadLocal中获取值,并指定一个当值不存在的提供者
getAll() - 类 中的静态方法org.hswebframework.web.ThreadLocalUtils
 
getAndRemove(String) - 类 中的静态方法org.hswebframework.web.ThreadLocalUtils
获取一个值后然后删除掉
getArgsMap(JoinPoint) - 类 中的静态方法org.hswebframework.web.AopUtils
 
getBasePath(HttpServletRequest) - 类 中的静态方法org.hswebframework.web.WebUtil
web应用绝对路径
getDefaultVar() - 类 中的静态方法org.hswebframework.web.ExpressionUtils
获取默认的表达式变量
getDefaultVar(Map<String, Object>) - 类 中的静态方法org.hswebframework.web.ExpressionUtils
获取默认的表达式变量并将制定的变量合并在一起
getHeaders(HttpServletRequest) - 类 中的静态方法org.hswebframework.web.WebUtil
 
getHttpServletRequest() - 类 中的静态方法org.hswebframework.web.WebUtil
尝试获取当前请求的HttpServletRequest实例
getIpAddr(HttpServletRequest) - 类 中的静态方法org.hswebframework.web.WebUtil
获取请求客户端的真实ip地址
getMethodBody(JoinPoint) - 类 中的静态方法org.hswebframework.web.AopUtils
 
getParameters(HttpServletRequest) - 类 中的静态方法org.hswebframework.web.WebUtil
 

H

HttpParameterConverter - org.hswebframework.web中的类
 
HttpParameterConverter(Object) - 类 的构造器org.hswebframework.web.HttpParameterConverter
 

L

Lists - org.hswebframework.web中的类
List工具,用于构建list等操作 Lists.buildList("1","2") .add("3") .add("4","5","6") .get();
Lists() - 类 的构造器org.hswebframework.web.Lists
 
Lists.ListBuilder<V> - org.hswebframework.web中的类
 

M

Maps - org.hswebframework.web中的类
map工具类,用于构造map等操作 Maps.
Maps.MapBuilder<K,V> - org.hswebframework.web中的类
 

O

objectToHttpParameters(Object) - 类 中的静态方法org.hswebframework.web.WebUtil
将对象转为http请求参数: {name:"test",org:[1,2,3]} => {"name":"test","org[0]":1,"org[1]":2,"org[2]":3}
org.hswebframework.web - 程序包 org.hswebframework.web
 

P

parse(String) - 类 中的静态方法org.hswebframework.web.Sqls
 
put(K, V) - 类 中的方法org.hswebframework.web.Maps.MapBuilder
 
put(String, T) - 类 中的静态方法org.hswebframework.web.ThreadLocalUtils
设置一个值到ThreadLocal

Q

queryStringToMap(String, String) - 类 中的静态方法org.hswebframework.web.WebUtil
 

R

RegexUtils - org.hswebframework.web中的类
 
RegexUtils() - 类 的构造器org.hswebframework.web.RegexUtils
 
remove(String) - 类 中的静态方法org.hswebframework.web.ThreadLocalUtils
删除参数对应的值

S

setApplicationContext(ApplicationContext) - 类 中的方法org.hswebframework.web.ApplicationContextHolder
 
setPrefix(String) - 类 中的方法org.hswebframework.web.HttpParameterConverter
 
Sqls - org.hswebframework.web中的类
 
Sqls() - 类 的构造器org.hswebframework.web.Sqls
 

T

ThreadLocalUtils - org.hswebframework.web中的类
ThreadLocal 工具类,通过在ThreadLocal存储map信息,来实现在ThreadLocal中维护多个信息
e.g.

W

WebUtil - org.hswebframework.web中的类
Web常用工具集,用于获取当前登录用户,请求信息等
WebUtil() - 类 的构造器org.hswebframework.web.WebUtil
 
A B C E F G H L M O P Q R S T W 
跳过导航链接

Copyright © 2018. All rights reserved.