跳过导航链接
A B C D E F G H I L M P R S T U V W Y 

A

after(JoinPoint) - 类 中的方法com.github.luomingxuorg.javautil.util.AspectLog
 
around(ProceedingJoinPoint) - 类 中的方法com.github.luomingxuorg.javautil.util.AspectLog
 
AspectLog - com.github.luomingxuorg.javautil.util中的类
要是方法被此类发现, 需要在方法前加EnableAspectScope
使用方式 @Bean public AspectLog aspectLog() { return new AspectLog(); } 可以继承此类, 来覆写before(org.aspectj.lang.JoinPoint), around(org.aspectj.lang.ProceedingJoinPoint), after(org.aspectj.lang.JoinPoint)
具体如何使用请参照Before, Around, After
AspectLog() - 类 的构造器com.github.luomingxuorg.javautil.util.AspectLog
 

B

balck(String) - 类 中的静态方法com.github.luomingxuorg.javautil.util.PrintWithColor
 
BEAN_COPIER_CACHE - 类 中的静态变量com.github.luomingxuorg.javautil.util.WrapperConverter
 
before(JoinPoint) - 类 中的方法com.github.luomingxuorg.javautil.util.AspectLog
 
blue(String) - 类 中的静态方法com.github.luomingxuorg.javautil.util.PrintWithColor
 

C

callCount - 类 中的变量com.github.luomingxuorg.javautil.entity.MethodCallInfo
调用次数
callTotalTime - 类 中的变量com.github.luomingxuorg.javautil.entity.MethodCallInfo
调用的总耗时
com.github.luomingxuorg.javautil.annotation - 程序包 com.github.luomingxuorg.javautil.annotation
 
com.github.luomingxuorg.javautil.entity - 程序包 com.github.luomingxuorg.javautil.entity
 
com.github.luomingxuorg.javautil.exception - 程序包 com.github.luomingxuorg.javautil.exception
 
com.github.luomingxuorg.javautil.util - 程序包 com.github.luomingxuorg.javautil.util
 
compare(Object, Object, String, Sort.Direction) - 类 中的静态方法com.github.luomingxuorg.javautil.util.SortUtil
给doSort方法调用的比较方法
compare(Object, Object, Sort.Direction) - 类 中的静态方法com.github.luomingxuorg.javautil.util.SortUtil
compare two object which could be Integer, Double, Long, Short, Float, Date
compare(Method, Object, Object, Sort.Direction) - 类 中的静态方法com.github.luomingxuorg.javautil.util.SortUtil
do method
CONSTRUCTOR_ACCESS_CACHE - 类 中的静态变量com.github.luomingxuorg.javautil.util.WrapperConverter
 
content - 类 中的变量com.github.luomingxuorg.javautil.entity.PageEntity
当前页内的内容
convert(T, Object) - 类 中的静态方法com.github.luomingxuorg.javautil.util.EntityConverter
已过时。
 
convertList(T, List<S>) - 类 中的静态方法com.github.luomingxuorg.javautil.util.EntityConverter
已过时。
 
copy(Object, Object, boolean, Converter) - 类 中的静态方法com.github.luomingxuorg.javautil.util.WrapperConverter
 
copyList(List<S>, Class<T>, boolean, Converter) - 类 中的静态方法com.github.luomingxuorg.javautil.util.WrapperConverter
 
createHash(String) - 类 中的静态方法com.github.luomingxuorg.javautil.util.PwdPbkdf2
计算哈希值
createHash(char[]) - 类 中的静态方法com.github.luomingxuorg.javautil.util.PwdPbkdf2
计算哈希值

D

direction - 类 中的变量com.github.luomingxuorg.javautil.entity.Sort
排序方式, 默认倒序
Direction() - 枚举 的构造器com.github.luomingxuorg.javautil.entity.Sort.Direction
 
doFieldGetMethod(Object, String) - 类 中的静态方法com.github.luomingxuorg.javautil.util.FieldUtil
通过类里面的get方法来获取这个字段
doPage(PageRequest, List<T>) - 类 中的静态方法com.github.luomingxuorg.javautil.util.ListPageHelper
采用list.subList()来进行分页, 简单的测试了一下, 好像速度没有太大的区别2333 就先这样把...
doPage(PageRequest, List<T>, Integer...) - 类 中的静态方法com.github.luomingxuorg.javautil.util.ListPageHelper
已过时。
doSort(Sort, List<T>) - 类 中的静态方法com.github.luomingxuorg.javautil.util.SortUtil
给外部调用的排序的方法

E

empty - 类 中的变量com.github.luomingxuorg.javautil.entity.PageEntity
content是否为空, 默认为false
EnableAspectScope - com.github.luomingxuorg.javautil.annotation中的注释类型
在方法前加此注解, 此方法将会被methodAnnotationScope()使用
EntityConverter - com.github.luomingxuorg.javautil.util中的类
已过时。
建议使用cglib https://github.com/cglib/cglib
EntityConverter() - 类 的构造器com.github.luomingxuorg.javautil.util.EntityConverter
已过时。
 

F

fieldName - 类 中的变量com.github.luomingxuorg.javautil.entity.Sort
 
FieldUtil - com.github.luomingxuorg.javautil.util中的类
通过反射获取类的字段值
FieldUtil() - 类 的构造器com.github.luomingxuorg.javautil.util.FieldUtil
 
fromHex(String) - 类 中的静态方法com.github.luomingxuorg.javautil.util.PwdPbkdf2
将16进位的string转换为byte[]

G

generate(String, String) - 类 中的静态方法com.github.luomingxuorg.javautil.util.GenerateFrameworkFile
生成文件
generate(String, String) - 类 中的静态方法com.github.luomingxuorg.javautil.util.GenerateFrameworkFileBySQLDeprecated
已过时。
步骤 读取文件, 将文件分解到list中(一行行来分解), 去掉了第一行的"create table"语句 通过句末的","来判断一个sql语句块.
GenerateFrameworkFile - com.github.luomingxuorg.javautil.util中的类
生成choerodon框架文件
GenerateFrameworkFile() - 类 的构造器com.github.luomingxuorg.javautil.util.GenerateFrameworkFile
 
GenerateFrameworkFileBySQLDeprecated - com.github.luomingxuorg.javautil.util中的类
已过时。
作为学习, 保留在此, 不再使用
GenerateFrameworkFileBySQLDeprecated() - 类 的构造器com.github.luomingxuorg.javautil.util.GenerateFrameworkFileBySQLDeprecated
已过时。
 
generateGroovy(CreateTable, String) - 类 中的静态方法com.github.luomingxuorg.javautil.util.GenerateFrameworkFile
 
generateGroovy(Map<String, List<String>>, String) - 类 中的静态方法com.github.luomingxuorg.javautil.util.GenerateFrameworkFileBySQLDeprecated
已过时。
生成groovy文件
generateRepository(String) - 类 中的静态方法com.github.luomingxuorg.javautil.util.GenerateFrameworkFile
 
generateRepository(String) - 类 中的静态方法com.github.luomingxuorg.javautil.util.GenerateFrameworkFileBySQLDeprecated
已过时。
生成Repository文件
generateService(String) - 类 中的静态方法com.github.luomingxuorg.javautil.util.GenerateFrameworkFile
 
generateService(String) - 类 中的静态方法com.github.luomingxuorg.javautil.util.GenerateFrameworkFileBySQLDeprecated
已过时。
生成Service文件
getAllFields(Class<?>) - 类 中的静态方法com.github.luomingxuorg.javautil.util.EntityConverter
已过时。
获取类的所有属性, 包含父类的属性
getBeanCopier(Class, Class, boolean) - 类 中的静态方法com.github.luomingxuorg.javautil.util.WrapperConverter
 
getConstructorAccess(Class<T>) - 类 中的静态方法com.github.luomingxuorg.javautil.util.WrapperConverter
 
getObjectByFieldName(Object, String) - 类 中的静态方法com.github.luomingxuorg.javautil.util.FieldUtil
直接通过反射来获取这个字段的值和类名--比较快
getPbkdf2HashLength() - 类 中的静态方法com.github.luomingxuorg.javautil.util.PwdPbkdf2
获取此密码哈希的长度
green(String) - 类 中的静态方法com.github.luomingxuorg.javautil.util.PrintWithColor
 

H

HASH_BYTES - 类 中的静态变量com.github.luomingxuorg.javautil.util.PwdPbkdf2
 

I

isStatic(Field) - 类 中的静态方法com.github.luomingxuorg.javautil.util.EntityConverter
已过时。
 
ITERATION_INDEX - 类 中的静态变量com.github.luomingxuorg.javautil.util.PwdPbkdf2
 

L

ListPageHelper - com.github.luomingxuorg.javautil.util中的类
对list进行分页操作
ListPageHelper() - 类 的构造器com.github.luomingxuorg.javautil.util.ListPageHelper
 
lowerTableName - 类 中的静态变量com.github.luomingxuorg.javautil.util.GenerateFrameworkFile
 

M

mapMethodCall - 类 中的变量com.github.luomingxuorg.javautil.util.AspectLog
 
maxPage - 类 中的静态变量com.github.luomingxuorg.javautil.util.ListPageHelper
已过时。
maxSize - 类 中的静态变量com.github.luomingxuorg.javautil.util.ListPageHelper
已过时。
methodAnnotationScope() - 类 中的方法com.github.luomingxuorg.javautil.util.AspectLog
利用注解, 来确定哪些方法需要进行调用
MethodCallInfo - com.github.luomingxuorg.javautil.entity中的类
 
MethodCallInfo() - 类 的构造器com.github.luomingxuorg.javautil.entity.MethodCallInfo
 

P

page - 类 中的变量com.github.luomingxuorg.javautil.entity.PageEntity
当前页码--从1开始
page - 类 中的变量com.github.luomingxuorg.javautil.entity.PageRequest
 
PageEntity<T> - com.github.luomingxuorg.javautil.entity中的类
 
PageEntity() - 类 的构造器com.github.luomingxuorg.javautil.entity.PageEntity
 
PageEntity(Integer, Long, Integer, Integer, Integer, List<T>, boolean) - 类 的构造器com.github.luomingxuorg.javautil.entity.PageEntity
 
PageEntity(Page<T>) - 类 的构造器com.github.luomingxuorg.javautil.entity.PageEntity
 
pageOfElements - 类 中的变量com.github.luomingxuorg.javautil.entity.PageEntity
当前页的content大小
PageRequest - com.github.luomingxuorg.javautil.entity中的类
定义分页需求的类
PageRequest() - 类 的构造器com.github.luomingxuorg.javautil.entity.PageRequest
 
PageRequest(Integer, Integer, Sort) - 类 的构造器com.github.luomingxuorg.javautil.entity.PageRequest
 
pbkdf2(char[], byte[], int, int) - 类 中的静态方法com.github.luomingxuorg.javautil.util.PwdPbkdf2
根据密码计算pbkdf2的值
PBKDF2_ALGORITHM - 类 中的静态变量com.github.luomingxuorg.javautil.util.PwdPbkdf2
 
PBKDF2_INDEX - 类 中的静态变量com.github.luomingxuorg.javautil.util.PwdPbkdf2
 
PBKDF2_ITERATIONS - 类 中的静态变量com.github.luomingxuorg.javautil.util.PwdPbkdf2
 
printBlack(String) - 类 中的静态方法com.github.luomingxuorg.javautil.util.PrintWithColor
 
printBlue(String) - 类 中的静态方法com.github.luomingxuorg.javautil.util.PrintWithColor
 
printGreen(String) - 类 中的静态方法com.github.luomingxuorg.javautil.util.PrintWithColor
 
printPurple(String) - 类 中的静态方法com.github.luomingxuorg.javautil.util.PrintWithColor
 
printRed(String) - 类 中的静态方法com.github.luomingxuorg.javautil.util.PrintWithColor
 
printSkyBlue(String) - 类 中的静态方法com.github.luomingxuorg.javautil.util.PrintWithColor
 
printWhite(String) - 类 中的静态方法com.github.luomingxuorg.javautil.util.PrintWithColor
 
PrintWithColor - com.github.luomingxuorg.javautil.util中的类
print String in color
PrintWithColor() - 类 的构造器com.github.luomingxuorg.javautil.util.PrintWithColor
 
printYellow(String) - 类 中的静态方法com.github.luomingxuorg.javautil.util.PrintWithColor
 
purple(String) - 类 中的静态方法com.github.luomingxuorg.javautil.util.PrintWithColor
 
PwdPbkdf2 - com.github.luomingxuorg.javautil.util中的类
 
PwdPbkdf2() - 类 的构造器com.github.luomingxuorg.javautil.util.PwdPbkdf2
 

R

readFile(File) - 类 中的静态方法com.github.luomingxuorg.javautil.util.GenerateFrameworkFile
 
readFile(File) - 类 中的静态方法com.github.luomingxuorg.javautil.util.GenerateFrameworkFileBySQLDeprecated
已过时。
读取文件, 并将文件通过换行, 分成一个个list
red(String) - 类 中的静态方法com.github.luomingxuorg.javautil.util.PrintWithColor
 
remainBracket(String) - 类 中的静态方法com.github.luomingxuorg.javautil.util.GenerateFrameworkFileBySQLDeprecated
已过时。
通过正则, 取得括号(包括括号)的string

S

SALT_BYTES - 类 中的静态变量com.github.luomingxuorg.javautil.util.PwdPbkdf2
 
SALT_INDEX - 类 中的静态变量com.github.luomingxuorg.javautil.util.PwdPbkdf2
 
setMaxSizePage(Integer...) - 类 中的静态方法com.github.luomingxuorg.javautil.util.ListPageHelper
已过时。
setPageOfElements_Content_TotalPages(Integer, List<T>, Integer) - 类 中的方法com.github.luomingxuorg.javautil.entity.PageEntity
 
size - 类 中的变量com.github.luomingxuorg.javautil.entity.PageEntity
页内数据默认大小
size - 类 中的变量com.github.luomingxuorg.javautil.entity.PageRequest
 
skyBlue(String) - 类 中的静态方法com.github.luomingxuorg.javautil.util.PrintWithColor
 
slowEquals(byte[], byte[]) - 类 中的静态方法com.github.luomingxuorg.javautil.util.PwdPbkdf2
比较哈希值的函数.
sort - 类 中的变量com.github.luomingxuorg.javautil.entity.PageRequest
 
Sort - com.github.luomingxuorg.javautil.entity中的类
排序的定义类
Sort() - 类 的构造器com.github.luomingxuorg.javautil.entity.Sort
 
Sort(String) - 类 的构造器com.github.luomingxuorg.javautil.entity.Sort
 
Sort(String, Sort.Direction) - 类 的构造器com.github.luomingxuorg.javautil.entity.Sort
 
Sort.Direction - com.github.luomingxuorg.javautil.entity中的枚举
 
SortException - com.github.luomingxuorg.javautil.exception中的异常错误
 
SortException() - 异常错误 的构造器com.github.luomingxuorg.javautil.exception.SortException
 
SortException(String) - 异常错误 的构造器com.github.luomingxuorg.javautil.exception.SortException
 
SortException(String, Throwable) - 异常错误 的构造器com.github.luomingxuorg.javautil.exception.SortException
 
SortException(Throwable) - 异常错误 的构造器com.github.luomingxuorg.javautil.exception.SortException
 
SortUtil - com.github.luomingxuorg.javautil.util中的类
List<T> 按照T中的某一个字段名进行排序
支持的字段类型: Short Integer Long Float Double BigDecimal Date
SortUtil() - 类 的构造器com.github.luomingxuorg.javautil.util.SortUtil
 
splitSql(List<String>) - 类 中的静态方法com.github.luomingxuorg.javautil.util.GenerateFrameworkFileBySQLDeprecated
已过时。
将string通过句末的','来分割为一个个语句
sqlSequenceSplit(List<String>) - 类 中的静态方法com.github.luomingxuorg.javautil.util.GenerateFrameworkFileBySQLDeprecated
已过时。
将最终的SQL语句储存为map, 方便最后生成各类文件
startTime - 类 中的变量com.github.luomingxuorg.javautil.util.AspectLog
 

T

tableName - 类 中的静态变量com.github.luomingxuorg.javautil.util.GenerateFrameworkFile
数据库--表名
tableName - 类 中的静态变量com.github.luomingxuorg.javautil.util.GenerateFrameworkFileBySQLDeprecated
已过时。
数据库--表名
toHex(byte[]) - 类 中的静态方法com.github.luomingxuorg.javautil.util.PwdPbkdf2
将byte[]转换为16进位的string
toString() - 类 中的方法com.github.luomingxuorg.javautil.entity.MethodCallInfo
 
toString() - 类 中的方法com.github.luomingxuorg.javautil.entity.PageEntity
 
toString() - 类 中的方法com.github.luomingxuorg.javautil.entity.Sort
 
totalElements - 类 中的变量com.github.luomingxuorg.javautil.entity.PageEntity
数据库中的总数
totalPages - 类 中的变量com.github.luomingxuorg.javautil.entity.PageEntity
总页数--从1开始
typeConvert(Class<T>, Object) - 类 中的静态方法com.github.luomingxuorg.javautil.util.FieldUtil
在转化的时候可能需要的一些类型转化的方法

U

upperTableName - 类 中的静态变量com.github.luomingxuorg.javautil.util.GenerateFrameworkFile
 

V

validatePassword(String, String) - 类 中的静态方法com.github.luomingxuorg.javautil.util.PwdPbkdf2
检验密码是否正确, 即相同盐值, 迭代次数下, 与目标的哈希一样
validatePassword(char[], String) - 类 中的静态方法com.github.luomingxuorg.javautil.util.PwdPbkdf2
检验密码是否正确, 即相同盐值, 迭代次数下, 与目标的哈希一样
valueOf(String) - 枚举 中的静态方法com.github.luomingxuorg.javautil.entity.Sort.Direction
返回带有指定名称的该类型的枚举常量。
values() - 枚举 中的静态方法com.github.luomingxuorg.javautil.entity.Sort.Direction
按照声明该枚举类型的常量的顺序, 返回 包含这些常量的数组。

W

white(String) - 类 中的静态方法com.github.luomingxuorg.javautil.util.PrintWithColor
 
WrapperConverter - com.github.luomingxuorg.javautil.util中的类
 
WrapperConverter() - 类 的构造器com.github.luomingxuorg.javautil.util.WrapperConverter
 
writeFile(byte[], String) - 类 中的静态方法com.github.luomingxuorg.javautil.util.GenerateFrameworkFile
 
writeInFile(byte[], String) - 类 中的静态方法com.github.luomingxuorg.javautil.util.GenerateFrameworkFileBySQLDeprecated
已过时。
 

Y

yellow(String) - 类 中的静态方法com.github.luomingxuorg.javautil.util.PrintWithColor
 
A B C D E F G H I L M P R S T U V W Y 
跳过导航链接

Copyright © 2019. All rights reserved.