A B C D E F G H I J L M N O P Q R S T U V W
所有类 所有程序包
所有类 所有程序包
所有类 所有程序包
A
- annotations() - 注释类型 中的方法org.springframework.web.bind.annotation.ControllerAdvice
-
Array of annotation types.
- annotations() - 注释类型 中的方法org.springframework.web.bind.annotation.RestControllerAdvice
-
Array of annotations.
- assignableTypes() - 注释类型 中的方法org.springframework.web.bind.annotation.ControllerAdvice
-
Array of classes.
- assignableTypes() - 注释类型 中的方法org.springframework.web.bind.annotation.RestControllerAdvice
-
Array of classes.
- AUTO_INC - com.ajaxjs.sqlman.model.JdbcConstants.IdType
-
自增
B
- basePackageClasses() - 注释类型 中的方法org.springframework.web.bind.annotation.ControllerAdvice
-
Type-safe alternative to
ControllerAdvice.basePackages()
for specifying the packages in which to select controllers to be advised by the@ControllerAdvice
annotated class. - basePackageClasses() - 注释类型 中的方法org.springframework.web.bind.annotation.RestControllerAdvice
-
Type-safe alternative to
RestControllerAdvice.basePackages()
for specifying the packages in which to select controllers to be advised by the@RestControllerAdvice
annotated class. - basePackages() - 注释类型 中的方法org.springframework.web.bind.annotation.ControllerAdvice
-
Array of base packages.
- basePackages() - 注释类型 中的方法org.springframework.web.bind.annotation.RestControllerAdvice
-
Array of base packages.
- BatchUpdate - com.ajaxjs.sqlman.crud中的类
-
批量更新
- BatchUpdate() - 类 的构造器com.ajaxjs.sqlman.crud.BatchUpdate
- BeanUtils - com.ajaxjs.sqlman.util中的类
- BeanUtils() - 类 的构造器com.ajaxjs.sqlman.util.BeanUtils
- BeanUtils.EachFieldArg - com.ajaxjs.sqlman.util中的接口
- BeanWriter - com.ajaxjs.sqlman.crud中的类
- BeanWriter() - 类 的构造器com.ajaxjs.sqlman.crud.BeanWriter
- binding() - 注释类型 中的方法org.springframework.web.bind.annotation.ModelAttribute
-
Allows data binding to be disabled directly on an
@ModelAttribute
method parameter or on the attribute returned from an@ModelAttribute
method, both of which would prevent data binding for that attribute.
C
- canRead(EvaluationContext, Object, String) - 类 中的方法org.springframework.context.expression.MapAccessor
- canWrite(EvaluationContext, Object, String) - 类 中的方法org.springframework.context.expression.MapAccessor
- changeColumnToFieldName(String) - 类 中的静态方法com.ajaxjs.sqlman.util.Utils
-
将以下划线分隔的数据库字段转换为驼峰风格的字符串
- changeFieldToColumnName(String) - 类 中的静态方法com.ajaxjs.sqlman.util.Utils
-
将驼峰风格的字符串转换为以下划线分隔的数据库字段
- check(String) - 类 中的静态方法com.ajaxjs.sqlman.util.SqlInjectionAnalyzer
-
SQL 注入攻击分析器 对解析后的 SQL 对象执行注入攻击分析,有注入攻击的危险则抛出异常, 并通过
visitor
参数提供基于 AST (抽象语法树)的遍历所有节点的能力。 - checkTableExists(Connection, String) - 类 中的静态方法com.ajaxjs.sqlman.util.Utils
-
检查数据库中是否存在指定的表 检测表是否存在
- closeDb() - 类 中的静态方法com.ajaxjs.sqlman.sql.JdbcConn
-
关闭当前进程的数据库连接 使用方式:
- closeDb(Connection) - 类 中的静态方法com.ajaxjs.sqlman.sql.JdbcConn
-
关闭数据库连接
- Column - com.ajaxjs.sqlman.annotation中的注释类型
-
Specifies the mapping of a persistent property or field.
- columnDefinition() - 注释类型 中的方法com.ajaxjs.sqlman.annotation.Column
-
(Optional) The SQL fragment that is used when generating the DDL for the column.
- com.ajaxjs.sqlman.annotation - 程序包 com.ajaxjs.sqlman.annotation
- com.ajaxjs.sqlman.crud - 程序包 com.ajaxjs.sqlman.crud
- com.ajaxjs.sqlman.crud.api - 程序包 com.ajaxjs.sqlman.crud.api
- com.ajaxjs.sqlman.model - 程序包 com.ajaxjs.sqlman.model
- com.ajaxjs.sqlman.sql - 程序包 com.ajaxjs.sqlman.sql
- com.ajaxjs.sqlman.util - 程序包 com.ajaxjs.sqlman.util
- ConstAnalyzer - com.ajaxjs.sqlman.util中的类
-
判断表达是否为常量的分析器
- ConstAnalyzer() - 类 的构造器com.ajaxjs.sqlman.util.ConstAnalyzer
- consumes() - 注释类型 中的方法org.springframework.web.bind.annotation.DeleteMapping
-
Alias for
RequestMapping.consumes()
. - consumes() - 注释类型 中的方法org.springframework.web.bind.annotation.GetMapping
-
Alias for
RequestMapping.consumes()
. - consumes() - 注释类型 中的方法org.springframework.web.bind.annotation.PatchMapping
-
Alias for
RequestMapping.consumes()
. - consumes() - 注释类型 中的方法org.springframework.web.bind.annotation.PostMapping
-
Alias for
RequestMapping.consumes()
. - consumes() - 注释类型 中的方法org.springframework.web.bind.annotation.PutMapping
-
Alias for
RequestMapping.consumes()
. - consumes() - 注释类型 中的方法org.springframework.web.bind.annotation.RequestMapping
-
Narrows the primary mapping by media types that can be consumed by the mapped handler.
- ControllerAdvice - org.springframework.web.bind.annotation中的注释类型
-
Specialization of
@Component
for classes that declare@ExceptionHandler
,@InitBinder
, or@ModelAttribute
methods to be shared across multiple@Controller
classes. - CookieValue - org.springframework.web.bind.annotation中的注释类型
-
Annotation to indicate that a method parameter is bound to an HTTP cookie.
- create(boolean, Class<T>) - 接口 中的方法com.ajaxjs.sqlman.sql.DAO
- create(boolean, Class<T>) - 类 中的方法com.ajaxjs.sqlman.sql.JdbcCommand
-
新建记录 也可以作为执行任意 SQL 的方法,例如执行 CreateTable
- create(Class<T>) - 类 中的方法com.ajaxjs.sqlman.crud.Entity
- create(Class<T>) - 接口 中的方法com.ajaxjs.sqlman.crud.IEntity
-
新建记录
- create(String, String, Map<String, Object>) - 接口 中的方法com.ajaxjs.sqlman.crud.api.CrudController
-
创建实体
- create(String, String, Map<String, Object>) - 类 中的方法com.ajaxjs.sqlman.crud.api.CrudService
- Create<T extends Serializable> - com.ajaxjs.sqlman.model中的类
- Create() - 类 的构造器com.ajaxjs.sqlman.model.Create
- createBatch(Object) - 类 中的方法com.ajaxjs.sqlman.crud.BatchUpdate
-
批量插入
- createBatch(String, String) - 类 中的方法com.ajaxjs.sqlman.crud.BatchUpdate
-
批量插入数据 参考链接
- createBatch(String, List<String>) - 类 中的方法com.ajaxjs.sqlman.crud.BatchUpdate
-
批量插入数据
- createBatchMap(Object, String) - 类 中的方法com.ajaxjs.sqlman.crud.BatchUpdate
-
批量插入
- CrudController - com.ajaxjs.sqlman.crud.api中的接口
-
CRUD 控制器
- CrudService - com.ajaxjs.sqlman.crud.api中的类
- CrudService() - 类 的构造器com.ajaxjs.sqlman.crud.api.CrudService
D
- DAO - com.ajaxjs.sqlman.sql中的接口
- DataAccessException - com.ajaxjs.sqlman.sql中的异常错误
-
数据访问异常
- DataAccessException(String) - 异常错误 的构造器com.ajaxjs.sqlman.sql.DataAccessException
-
创建一个数据访问异常
- DataAccessException(String, Throwable) - 异常错误 的构造器com.ajaxjs.sqlman.sql.DataAccessException
- DB2 - com.ajaxjs.sqlman.model.JdbcConstants.DatabaseVendor
- DEFAULT_NONE - 接口 中的静态变量org.springframework.web.bind.annotation.ValueConstants
-
Constant defining a value for no default - as a replacement for
null
which we cannot use in annotation attributes. - DEFAULT_PAGE_SIZE - 类 中的静态变量com.ajaxjs.sqlman.sql.Pager
-
默认分页大小
- defaultValue() - 注释类型 中的方法org.springframework.web.bind.annotation.CookieValue
-
The default value to use as a fallback.
- defaultValue() - 注释类型 中的方法org.springframework.web.bind.annotation.MatrixVariable
-
The default value to use as a fallback.
- defaultValue() - 注释类型 中的方法org.springframework.web.bind.annotation.RequestHeader
-
The default value to use as a fallback.
- defaultValue() - 注释类型 中的方法org.springframework.web.bind.annotation.RequestParam
-
The default value to use as a fallback when the request parameter is not provided or has an empty value.
- delete() - 接口 中的方法com.ajaxjs.sqlman.sql.DAO
- delete() - 类 中的方法com.ajaxjs.sqlman.sql.Sql
- delete(String, String, Serializable) - 类 中的方法com.ajaxjs.sqlman.sql.JdbcCommand
-
已过时。
- delete(String, String, Long) - 接口 中的方法com.ajaxjs.sqlman.crud.api.CrudController
-
删除实体
- delete(String, String, Long) - 类 中的方法com.ajaxjs.sqlman.crud.api.CrudService
- DELETE - org.springframework.web.bind.annotation.RequestMethod
- deleteBatch(List<? extends Serializable>) - 类 中的方法com.ajaxjs.sqlman.crud.BatchUpdate
-
物理批量删除
- DeleteMapping - org.springframework.web.bind.annotation中的注释类型
-
Annotation for mapping HTTP
DELETE
requests onto specific handler methods. - DERBY - com.ajaxjs.sqlman.model.JdbcConstants.DatabaseVendor
- DUMMY_STR - 类 中的静态变量com.ajaxjs.sqlman.crud.Entity
E
- eachField(Object, BeanUtils.EachFieldArg) - 类 中的静态方法com.ajaxjs.sqlman.util.BeanUtils
-
遍历一个 Java Bean
- eachField(Object, PropertyDescriptor[], BeanUtils.EachFieldArg) - 类 中的静态方法com.ajaxjs.sqlman.util.BeanUtils
-
遍历一个 Java Bean
- eachFields(Object, BiConsumer<String, Object>) - 类 中的静态方法com.ajaxjs.sqlman.util.BeanUtils
-
遍历 Java Bean 对象的所有字段,并对每个字段执行指定的操作。
- eachFields2(Class<?>, BiConsumer<String, Field>) - 类 中的静态方法com.ajaxjs.sqlman.util.BeanUtils
-
遍历给定类的所有非静态字段,并对每个字段执行给定的操作。
- end(JdbcCommand, String) - 类 中的静态方法com.ajaxjs.sqlman.util.PrettyLog
- Entity - com.ajaxjs.sqlman.crud中的类
- Entity() - 类 的构造器com.ajaxjs.sqlman.crud.Entity
-
Create a JDBC action with global connection
- Entity(Connection) - 类 的构造器com.ajaxjs.sqlman.crud.Entity
-
Create a JDBC action with specified connection
- Entity(DataSource) - 类 的构造器com.ajaxjs.sqlman.crud.Entity
-
Create a JDBC action with specified data source
- entity2InsertSql(String, Object) - 类 中的静态方法com.ajaxjs.sqlman.crud.BeanWriter
-
将一个实体转换成插入语句的 SqlParams 对象
- entity2UpdateSql(String, Object, String, Object) - 类 中的静态方法com.ajaxjs.sqlman.crud.BeanWriter
-
将一个实体转换成更新语句的 SqlParams 对象
- escapeSqlInjection(String) - 类 中的静态方法com.ajaxjs.sqlman.util.Utils
-
过滤输入字符串以避免 SQL 注入攻击。
- evaluate(String, StandardEvaluationContext) - 类 中的静态方法com.ajaxjs.sqlman.sql.SmallMyBatis
-
解析并评估模板中的条件标签。
- everyBeanField(Object, BiConsumer<String, Object>) - 类 中的静态方法com.ajaxjs.sqlman.crud.BeanWriter
-
对一个对象的每个字段进行操作
- everyMapField(Object, BiConsumer<String, Object>) - 类 中的静态方法com.ajaxjs.sqlman.crud.BeanWriter
-
对一个 Map 类型的实体对象的每个字段进行操作
- ExceptionHandler - org.springframework.web.bind.annotation中的注释类型
-
Annotation for handling exceptions in specific handler classes and/or handler methods.
F
- fromJson(String, Class<T>) - 接口 中的方法com.ajaxjs.sqlman.util.JsonUtil
-
Converts a JSON string to an object of the specified type.
G
- generateCode(String, MethodVisitor, CodeFlow) - 类 中的方法org.springframework.context.expression.MapAccessor
- generateIfBlock(String, Map<String, Object>) - 类 中的静态方法com.ajaxjs.sqlman.sql.SmallMyBatis
-
类似 Mybatis 替换动态 sql 的方法,要求支持 if 标签
- get() - 类 中的静态方法com.ajaxjs.sqlman.util.SnowflakeId
-
生成 id
- GET - org.springframework.web.bind.annotation.RequestMethod
- GET_CONN_SUPPLIER - 类 中的静态变量com.ajaxjs.sqlman.sql.JdbcConn
-
获取数据库连接的回调函数
- getConnection() - 类 中的静态方法com.ajaxjs.sqlman.sql.JdbcConn
-
获取一个当前进程的数据库连接
- getConnection(String) - 类 中的静态方法com.ajaxjs.sqlman.sql.JdbcConn
-
连接数据库。
- getConnection(String, String, String) - 类 中的静态方法com.ajaxjs.sqlman.sql.JdbcConn
-
连接数据库。
- getConnection(DataSource) - 类 中的静态方法com.ajaxjs.sqlman.sql.JdbcConn
-
从指定的数据源获取数据库连接
- getConstantsInt(Class<?>) - 类 中的静态方法com.ajaxjs.sqlman.util.BeanUtils
-
常量转换为 Map 获取指定类中的所有 int 类型常量的名称和值,并返回它们构成的 Map 对象。
- getFieldName(String, String) - 类 中的静态方法com.ajaxjs.sqlman.util.BeanUtils
-
根据方法名称来截取属性名称,例如把 getter 的 getXxx() 转换为 xxx 的字段名
- GetMapping - org.springframework.web.bind.annotation中的注释类型
-
Annotation for mapping HTTP
GET
requests onto specific handler methods. - getMySqlConnection(String, String, String, String) - 类 中的静态方法com.ajaxjs.sqlman.sql.JdbcConn
-
连接 MySQL 数据库
- getParams(HttpServletRequest) - 类 中的方法com.ajaxjs.sqlman.sql.Pager
-
获取分页参数
- getPropertyType() - 类 中的方法org.springframework.context.expression.MapAccessor
- getResultBean(Class<T>) - 类 中的静态方法com.ajaxjs.sqlman.sql.Sql
-
记录集合转换为 bean 的高阶函数
- getResultMap(ResultSet) - 类 中的静态方法com.ajaxjs.sqlman.sql.Sql
-
记录集合转换为 Map
- getSpecificTargetClasses() - 类 中的方法org.springframework.context.expression.MapAccessor
- getSqlById(String) - 类 中的方法com.ajaxjs.sqlman.sql.SmallMyBatis
-
根据 id 获取 SQL
- getValuedSQL(String, Map<String, Object>) - 类 中的静态方法com.ajaxjs.sqlman.sql.SmallMyBatis
-
根据传入的模板和参数映射,生成带值的 SQL 语句
- getWhereClause(HttpServletRequest) - 类 中的静态方法com.ajaxjs.sqlman.crud.api.CrudService
-
基于 URL 的 QueryString,设计一个条件查询的参数规范,可以转化为 SQL 的 Where 里面的查询
H
- H2 - com.ajaxjs.sqlman.model.JdbcConstants.DatabaseVendor
- handleSql(String, Map<String, Object>) - 类 中的静态方法com.ajaxjs.sqlman.sql.SmallMyBatis
-
处理 SQL 语句
- handleSql(Map<String, Object>, String) - 类 中的方法com.ajaxjs.sqlman.sql.SmallMyBatis
-
处理 SQL 语句
- HEAD - org.springframework.web.bind.annotation.RequestMethod
- headers() - 注释类型 中的方法org.springframework.web.bind.annotation.DeleteMapping
-
Alias for
RequestMapping.headers()
. - headers() - 注释类型 中的方法org.springframework.web.bind.annotation.GetMapping
-
Alias for
RequestMapping.headers()
. - headers() - 注释类型 中的方法org.springframework.web.bind.annotation.PatchMapping
-
Alias for
RequestMapping.headers()
. - headers() - 注释类型 中的方法org.springframework.web.bind.annotation.PostMapping
-
Alias for
RequestMapping.headers()
. - headers() - 注释类型 中的方法org.springframework.web.bind.annotation.PutMapping
-
Alias for
RequestMapping.headers()
. - headers() - 注释类型 中的方法org.springframework.web.bind.annotation.RequestMapping
-
The headers of the mapped request, narrowing the primary mapping.
- HSQLDB - com.ajaxjs.sqlman.model.JdbcConstants.DatabaseVendor
I
- Id - com.ajaxjs.sqlman.annotation中的注释类型
-
表示 id 字段
- IdField - com.ajaxjs.sqlman.model中的类
- IdField() - 类 的构造器com.ajaxjs.sqlman.model.IdField
- IEntity - com.ajaxjs.sqlman.crud中的接口
-
通用实体快速的 CRUD。
- IgnoreDB - com.ajaxjs.sqlman.annotation中的注释类型
-
用于 Java Bean 里面某个字段的注解,说明这个字段是否不参与数据库的操作
- info(String, String, Long) - 接口 中的方法com.ajaxjs.sqlman.crud.api.CrudController
-
单笔详情
- info(String, String, Long) - 类 中的方法com.ajaxjs.sqlman.crud.api.CrudService
- info(T) - 类 中的方法com.ajaxjs.sqlman.crud.Entity
- info(T) - 接口 中的方法com.ajaxjs.sqlman.crud.IEntity
-
查询单笔记录,以 Java Bean 格式返回
- init() - 类 中的方法com.ajaxjs.sqlman.crud.api.CrudService
- InitBinder - org.springframework.web.bind.annotation中的注释类型
-
Annotation that identifies methods that initialize the
org.springframework.web.bind.WebDataBinder
which will be used for populating command and form object arguments of annotated handler methods. - initDatabaseVendor() - 类 中的方法com.ajaxjs.sqlman.sql.JdbcConn
- input(Object) - 类 中的方法com.ajaxjs.sqlman.crud.Entity
- input(Object) - 接口 中的方法com.ajaxjs.sqlman.crud.IEntity
-
输入实体
- input(String, Object...) - 接口 中的方法com.ajaxjs.sqlman.sql.DAO
- input(String, Object...) - 类 中的方法com.ajaxjs.sqlman.sql.Sql
- input(String, Map<String, Object>, Object...) - 接口 中的方法com.ajaxjs.sqlman.sql.DAO
- input(String, Map<String, Object>, Object...) - 类 中的方法com.ajaxjs.sqlman.sql.Sql
- inputXml(String, Object...) - 接口 中的方法com.ajaxjs.sqlman.sql.DAO
- inputXml(String, Object...) - 类 中的方法com.ajaxjs.sqlman.sql.Sql
- inputXml(String, Map<String, Object>, Object...) - 接口 中的方法com.ajaxjs.sqlman.sql.DAO
- inputXml(String, Map<String, Object>, Object...) - 类 中的方法com.ajaxjs.sqlman.sql.Sql
- INSERT_OK_INT - 类 中的静态变量com.ajaxjs.sqlman.sql.JdbcCommand
- INSERT_OK_LONG - 类 中的静态变量com.ajaxjs.sqlman.sql.JdbcCommand
- INSERT_OK_STR - 类 中的静态变量com.ajaxjs.sqlman.sql.JdbcCommand
- insertable() - 注释类型 中的方法com.ajaxjs.sqlman.annotation.Column
-
(Optional) Whether the column is included in the generated SELECT statement for find and query operations.
- insertNewline(String, int) - 类 中的静态方法com.ajaxjs.sqlman.util.PrettyLog
-
指定行数时插入换行符
- INSTANCE - 接口 中的静态变量com.ajaxjs.sqlman.util.JsonUtil
- isBoolean(Column) - 类 中的静态方法com.ajaxjs.sqlman.util.SqlInjectionAnalyzer
-
如果
Column
没有定义table,且字段名为true/false(不区分大小写)则视为布尔常量 - isCompilable() - 类 中的方法org.springframework.context.expression.MapAccessor
- isConstExpression(Expression) - 类 中的方法com.ajaxjs.sqlman.util.ConstAnalyzer
- isInit - 类 中的变量com.ajaxjs.sqlman.crud.api.CrudService
- isReturnNewlyId() - 注释类型 中的方法com.ajaxjs.sqlman.annotation.Table
-
创建实体后是否返回新建的 id
- item(String, Object, PropertyDescriptor) - 接口 中的方法com.ajaxjs.sqlman.util.BeanUtils.EachFieldArg
J
- JdbcCommand - com.ajaxjs.sqlman.sql中的类
-
To execute basic JDBC commands, read and write data to database.
- JdbcCommand() - 类 的构造器com.ajaxjs.sqlman.sql.JdbcCommand
-
Create a JDBC action with global connection
- JdbcCommand(Connection) - 类 的构造器com.ajaxjs.sqlman.sql.JdbcCommand
-
Create a JDBC action with specified connection
- JdbcCommand(DataSource) - 类 的构造器com.ajaxjs.sqlman.sql.JdbcCommand
-
Create a JDBC action with specified data source
- JdbcConn - com.ajaxjs.sqlman.sql中的类
- JdbcConn() - 类 的构造器com.ajaxjs.sqlman.sql.JdbcConn
-
Create a JDBC action with global connection
- JdbcConn(Connection) - 类 的构造器com.ajaxjs.sqlman.sql.JdbcConn
-
Create a JDBC action with specified connection
- JdbcConn(DataSource) - 类 的构造器com.ajaxjs.sqlman.sql.JdbcConn
-
Create a JDBC action with specified data source
- JdbcConstants - com.ajaxjs.sqlman.model中的接口
-
常量
- JdbcConstants.DatabaseVendor - com.ajaxjs.sqlman.model中的枚举
-
数据库厂商的常量集合
- JdbcConstants.IdType - com.ajaxjs.sqlman.model中的枚举
-
ID 类型,可以是自增、雪花算法、UUID
- json2list(String, Class<T>) - 接口 中的方法com.ajaxjs.sqlman.util.JsonUtil
-
JSON array string converts to list with Java Bean
- json2map(String) - 接口 中的方法com.ajaxjs.sqlman.util.JsonUtil
-
json string converts to map This method is used to convert a JSON string into a Map object with String as the key type and Object as the value type.
- json2mapList(String) - 接口 中的方法com.ajaxjs.sqlman.util.JsonUtil
- JsonUtil - com.ajaxjs.sqlman.util中的接口
L
- length() - 注释类型 中的方法com.ajaxjs.sqlman.annotation.Column
-
(Optional) The column length.
- list() - 类 中的方法com.ajaxjs.sqlman.crud.Entity
- list(String) - 类 中的方法com.ajaxjs.sqlman.crud.Entity
- list(String, String, HttpServletRequest) - 接口 中的方法com.ajaxjs.sqlman.crud.api.CrudController
-
实体列表
- list(String, String, HttpServletRequest) - 类 中的方法com.ajaxjs.sqlman.crud.api.CrudService
- list2PageList(List<T>) - 类 中的静态方法com.ajaxjs.sqlman.model.PageResult
-
列表不分页,转换为 PageResult
- loadBySqlLocations(String) - 类 中的方法com.ajaxjs.sqlman.sql.SmallMyBatis
-
根据目录加载多个 XML
- loadXML(String...) - 类 中的方法com.ajaxjs.sqlman.sql.SmallMyBatis
-
加载 XML SQL
- LOG_TEXT - 类 中的静态变量com.ajaxjs.sqlman.util.PrettyLog
M
- MapAccessor - org.springframework.context.expression中的类
-
EL property accessor that knows how to traverse the keys of a standard
Map
. - MapAccessor() - 类 的构造器org.springframework.context.expression.MapAccessor
- Mapping - org.springframework.web.bind.annotation中的注释类型
-
Meta annotation that indicates a web mapping annotation.
- MARIADB - com.ajaxjs.sqlman.model.JdbcConstants.DatabaseVendor
- MatrixVariable - org.springframework.web.bind.annotation中的注释类型
-
Annotation which indicates that a method parameter should be bound to a name-value pair within a path segment.
- method() - 注释类型 中的方法org.springframework.web.bind.annotation.RequestMapping
-
The HTTP request methods to map to, narrowing the primary mapping: GET, POST, HEAD, OPTIONS, PUT, PATCH, DELETE, TRACE.
- ModelAttribute - org.springframework.web.bind.annotation中的注释类型
-
Annotation that binds a method parameter or method return value to a named model attribute, exposed to a web view.
- MYSQL - com.ajaxjs.sqlman.model.JdbcConstants.DatabaseVendor
- MYSQL_CONN - 类 中的静态变量com.ajaxjs.sqlman.sql.JdbcConn
-
一般情况用的数据库连接字符串
N
- name() - 注释类型 中的方法com.ajaxjs.sqlman.annotation.Column
-
(Optional) The name of the column.
- name() - 注释类型 中的方法org.springframework.web.bind.annotation.CookieValue
-
The name of the cookie to bind to.
- name() - 注释类型 中的方法org.springframework.web.bind.annotation.DeleteMapping
-
Alias for
RequestMapping.name()
. - name() - 注释类型 中的方法org.springframework.web.bind.annotation.GetMapping
-
Alias for
RequestMapping.name()
. - name() - 注释类型 中的方法org.springframework.web.bind.annotation.MatrixVariable
-
The name of the matrix variable.
- name() - 注释类型 中的方法org.springframework.web.bind.annotation.ModelAttribute
-
The name of the model attribute to bind to.
- name() - 注释类型 中的方法org.springframework.web.bind.annotation.PatchMapping
-
Alias for
RequestMapping.name()
. - name() - 注释类型 中的方法org.springframework.web.bind.annotation.PathVariable
-
The name of the path variable to bind to.
- name() - 注释类型 中的方法org.springframework.web.bind.annotation.PostMapping
-
Alias for
RequestMapping.name()
. - name() - 注释类型 中的方法org.springframework.web.bind.annotation.PutMapping
-
Alias for
RequestMapping.name()
. - name() - 注释类型 中的方法org.springframework.web.bind.annotation.RequestAttribute
-
The name of the request attribute to bind to.
- name() - 注释类型 中的方法org.springframework.web.bind.annotation.RequestHeader
-
The name of the request header to bind to.
- name() - 注释类型 中的方法org.springframework.web.bind.annotation.RequestMapping
-
Assign a name to this mapping.
- name() - 注释类型 中的方法org.springframework.web.bind.annotation.RequestParam
-
The name of the request parameter to bind to.
- name() - 注释类型 中的方法org.springframework.web.bind.annotation.RequestPart
-
The name of the part in the
"multipart/form-data"
request to bind to. - name() - 注释类型 中的方法org.springframework.web.bind.annotation.SessionAttribute
-
The name of the session attribute to bind to.
- names() - 注释类型 中的方法org.springframework.web.bind.annotation.SessionAttributes
-
The names of session attributes in the model that should be stored in the session or some conversational storage.
- namespaces - 类 中的变量com.ajaxjs.sqlman.crud.api.CrudService
- nextId() - 类 中的方法com.ajaxjs.sqlman.util.SnowflakeId
-
获得下一个 ID (该方法是线程安全的)
- NULL_DATE - 接口 中的静态变量com.ajaxjs.sqlman.model.JdbcConstants
-
表示数据库里面的 null 值( for Date 类型) 1970 年 1 月 1 日 00:00:00 GMT
- NULL_INT - 接口 中的静态变量com.ajaxjs.sqlman.model.JdbcConstants
-
表示数据库里面的 null 值( for int 类型)
- NULL_LONG - 接口 中的静态变量com.ajaxjs.sqlman.model.JdbcConstants
-
表示数据库里面的 null 值( for long 类型)
- NULL_STRING - 接口 中的静态变量com.ajaxjs.sqlman.model.JdbcConstants
-
表示数据库里面的 null 值(for String 类型)
- nullable() - 注释类型 中的方法com.ajaxjs.sqlman.annotation.Column
-
(Optional) Whether the column may be null.
O
- OPTIONS - org.springframework.web.bind.annotation.RequestMethod
- ORACLE - com.ajaxjs.sqlman.model.JdbcConstants.DatabaseVendor
- org.springframework.context.expression - 程序包 org.springframework.context.expression
- org.springframework.web.bind.annotation - 程序包 org.springframework.web.bind.annotation
-
Annotations for binding requests to controllers and handler methods as well as for binding request parameters to method arguments.
P
- page() - 类 中的方法com.ajaxjs.sqlman.model.PageResult
-
分页的逻辑运算
- page() - 接口 中的方法com.ajaxjs.sqlman.sql.DAO
- page() - 类 中的方法com.ajaxjs.sqlman.sql.Sql
- page(Class<T>) - 接口 中的方法com.ajaxjs.sqlman.sql.DAO
- page(Class<T>) - 类 中的方法com.ajaxjs.sqlman.sql.Sql
- page(Class<T>, Integer, Integer) - 接口 中的方法com.ajaxjs.sqlman.sql.DAO
- page(Class<T>, Integer, Integer) - 类 中的方法com.ajaxjs.sqlman.sql.Sql
- page(Integer, Integer) - 接口 中的方法com.ajaxjs.sqlman.sql.DAO
- page(Integer, Integer) - 类 中的方法com.ajaxjs.sqlman.sql.Sql
- page(String, String) - 接口 中的方法com.ajaxjs.sqlman.crud.api.CrudController
-
分页获取实体列表
- page(String, String) - 类 中的方法com.ajaxjs.sqlman.crud.api.CrudService
- pageNo2start(int, int) - 类 中的静态方法com.ajaxjs.sqlman.sql.Pager
-
将页码和每页数量转换为起始位置 pageSize 转换为 MySQL 的 start 分页
- Pager - com.ajaxjs.sqlman.sql中的类
- Pager() - 类 的构造器com.ajaxjs.sqlman.sql.Pager
- PageResult<T> - com.ajaxjs.sqlman.model中的类
-
分页信息 bean
- PageResult() - 类 的构造器com.ajaxjs.sqlman.model.PageResult
- params() - 注释类型 中的方法org.springframework.web.bind.annotation.DeleteMapping
-
Alias for
RequestMapping.params()
. - params() - 注释类型 中的方法org.springframework.web.bind.annotation.GetMapping
-
Alias for
RequestMapping.params()
. - params() - 注释类型 中的方法org.springframework.web.bind.annotation.PatchMapping
-
Alias for
RequestMapping.params()
. - params() - 注释类型 中的方法org.springframework.web.bind.annotation.PostMapping
-
Alias for
RequestMapping.params()
. - params() - 注释类型 中的方法org.springframework.web.bind.annotation.PutMapping
-
Alias for
RequestMapping.params()
. - params() - 注释类型 中的方法org.springframework.web.bind.annotation.RequestMapping
-
The parameters of the mapped request, narrowing the primary mapping.
- parse(String) - 类 中的方法com.ajaxjs.sqlman.sql.Pager
-
分页
- PATCH - org.springframework.web.bind.annotation.RequestMethod
- PatchMapping - org.springframework.web.bind.annotation中的注释类型
-
Annotation for mapping HTTP
PATCH
requests onto specific handler methods. - path() - 注释类型 中的方法org.springframework.web.bind.annotation.DeleteMapping
-
Alias for
RequestMapping.path()
. - path() - 注释类型 中的方法org.springframework.web.bind.annotation.GetMapping
-
Alias for
RequestMapping.path()
. - path() - 注释类型 中的方法org.springframework.web.bind.annotation.PatchMapping
-
Alias for
RequestMapping.path()
. - path() - 注释类型 中的方法org.springframework.web.bind.annotation.PostMapping
-
Alias for
RequestMapping.path()
. - path() - 注释类型 中的方法org.springframework.web.bind.annotation.PutMapping
-
Alias for
RequestMapping.path()
. - path() - 注释类型 中的方法org.springframework.web.bind.annotation.RequestMapping
-
The path mapping URIs (e.g.
- pathVar() - 注释类型 中的方法org.springframework.web.bind.annotation.MatrixVariable
-
The name of the URI path variable where the matrix variable is located, if necessary for disambiguation (e.g. a matrix variable with the same name present in more than one path segment).
- PathVariable - org.springframework.web.bind.annotation中的注释类型
-
Annotation which indicates that a method parameter should be bound to a URI template variable.
- POST - org.springframework.web.bind.annotation.RequestMethod
- POSTGRESQL - com.ajaxjs.sqlman.model.JdbcConstants.DatabaseVendor
- PostMapping - org.springframework.web.bind.annotation中的注释类型
-
Annotation for mapping HTTP
POST
requests onto specific handler methods. - precision() - 注释类型 中的方法com.ajaxjs.sqlman.annotation.Column
-
(Optional) For numeric or date columns, specifies the precision to which the value is stored.
- PrettyLog - com.ajaxjs.sqlman.util中的类
- PrettyLog() - 类 的构造器com.ajaxjs.sqlman.util.PrettyLog
- printRealSql(String, Object[]) - 类 中的静态方法com.ajaxjs.sqlman.util.PrettyLog
-
打印真实 SQL 执行语句
- process(ResultSet) - 接口 中的方法com.ajaxjs.sqlman.annotation.ResultSetProcessor
-
转换结果
- produces() - 注释类型 中的方法org.springframework.web.bind.annotation.DeleteMapping
-
Alias for
RequestMapping.produces()
. - produces() - 注释类型 中的方法org.springframework.web.bind.annotation.GetMapping
-
Alias for
RequestMapping.produces()
. - produces() - 注释类型 中的方法org.springframework.web.bind.annotation.PatchMapping
-
Alias for
RequestMapping.produces()
. - produces() - 注释类型 中的方法org.springframework.web.bind.annotation.PostMapping
-
Alias for
RequestMapping.produces()
. - produces() - 注释类型 中的方法org.springframework.web.bind.annotation.PutMapping
-
Alias for
RequestMapping.produces()
. - produces() - 注释类型 中的方法org.springframework.web.bind.annotation.RequestMapping
-
Narrows the primary mapping by media types that can be produced by the mapped handler.
- PUT - org.springframework.web.bind.annotation.RequestMethod
- PutMapping - org.springframework.web.bind.annotation中的注释类型
-
Annotation for mapping HTTP
PUT
requests onto specific handler methods.
Q
- query() - 接口 中的方法com.ajaxjs.sqlman.sql.DAO
-
查询单行记录(单个结果),保存为 Map<String, Object> 结构。
- query() - 类 中的方法com.ajaxjs.sqlman.sql.Sql
- query(ResultSetProcessor<T>) - 类 中的方法com.ajaxjs.sqlman.sql.JdbcCommand
-
执行查询
- query(Class<T>) - 接口 中的方法com.ajaxjs.sqlman.sql.DAO
- query(Class<T>) - 类 中的方法com.ajaxjs.sqlman.sql.Sql
- queryList() - 接口 中的方法com.ajaxjs.sqlman.sql.DAO
-
查询一组结果,保存为 List<Map<String, Object>> 结构。
- queryList() - 类 中的方法com.ajaxjs.sqlman.sql.Sql
- queryList(Class<T>) - 接口 中的方法com.ajaxjs.sqlman.sql.DAO
-
查询一组结果,保存为 List<Bean> 结构。
- queryList(Class<T>) - 类 中的方法com.ajaxjs.sqlman.sql.Sql
- queryOne(Class<T>) - 接口 中的方法com.ajaxjs.sqlman.sql.DAO
-
有且只有一行记录,并只返回第一列的字段。
- queryOne(Class<T>) - 类 中的方法com.ajaxjs.sqlman.sql.Sql
R
- read(EvaluationContext, Object, String) - 类 中的方法org.springframework.context.expression.MapAccessor
- reloadConfig() - 接口 中的方法com.ajaxjs.sqlman.crud.api.CrudController
-
重新加载数据库的配置
- reloadConfig() - 类 中的方法com.ajaxjs.sqlman.crud.api.CrudService
- RequestAttribute - org.springframework.web.bind.annotation中的注释类型
-
Annotation to bind a method parameter to a request attribute.
- RequestBody - org.springframework.web.bind.annotation中的注释类型
-
Annotation indicating a method parameter should be bound to the body of the web request.
- RequestHeader - org.springframework.web.bind.annotation中的注释类型
-
Annotation which indicates that a method parameter should be bound to a web request header.
- RequestMapping - org.springframework.web.bind.annotation中的注释类型
-
Annotation for mapping web requests onto methods in request-handling classes with flexible method signatures.
- RequestMethod - org.springframework.web.bind.annotation中的枚举
-
Enumeration of HTTP request methods.
- RequestParam - org.springframework.web.bind.annotation中的注释类型
-
Annotation which indicates that a method parameter should be bound to a web request parameter.
- RequestPart - org.springframework.web.bind.annotation中的注释类型
-
Annotation that can be used to associate the part of a "multipart/form-data" request with a method argument.
- required() - 注释类型 中的方法org.springframework.web.bind.annotation.CookieValue
-
Whether the cookie is required.
- required() - 注释类型 中的方法org.springframework.web.bind.annotation.MatrixVariable
-
Whether the matrix variable is required.
- required() - 注释类型 中的方法org.springframework.web.bind.annotation.PathVariable
-
Whether the path variable is required.
- required() - 注释类型 中的方法org.springframework.web.bind.annotation.RequestAttribute
-
Whether the request attribute is required.
- required() - 注释类型 中的方法org.springframework.web.bind.annotation.RequestBody
-
Whether body content is required.
- required() - 注释类型 中的方法org.springframework.web.bind.annotation.RequestHeader
-
Whether the header is required.
- required() - 注释类型 中的方法org.springframework.web.bind.annotation.RequestParam
-
Whether the parameter is required.
- required() - 注释类型 中的方法org.springframework.web.bind.annotation.RequestPart
-
Whether the part is required.
- required() - 注释类型 中的方法org.springframework.web.bind.annotation.SessionAttribute
-
Whether the session attribute is required.
- ResponseBody - org.springframework.web.bind.annotation中的注释类型
-
Annotation that indicates a method return value should be bound to the web response body.
- RestController - org.springframework.web.bind.annotation中的注释类型
-
A convenience annotation that is itself annotated with
@Controller
and@ResponseBody
. - RestControllerAdvice - org.springframework.web.bind.annotation中的注释类型
-
A convenience annotation that is itself annotated with and
@ResponseBody
. - Result - com.ajaxjs.sqlman.model中的类
- Result() - 类 的构造器com.ajaxjs.sqlman.model.Result
- ResultSetProcessor<T> - com.ajaxjs.sqlman.annotation中的接口
-
如何转换 ResultSet 到目标结果的处理器
- retrieveCredentials(DataSource) - 类 中的静态方法com.ajaxjs.sqlman.util.Utils
-
利用反射获取数据源连接信息
S
- scale() - 注释类型 中的方法com.ajaxjs.sqlman.annotation.Column
-
(Optional) For floating-point or decimal columns, specifies the number of digits after the decimal point.
- SessionAttribute - org.springframework.web.bind.annotation中的注释类型
-
Annotation to bind a method parameter to a session attribute.
- SessionAttributes - org.springframework.web.bind.annotation中的注释类型
-
Annotation that indicates the session attributes that a specific handler uses.
- setBeanValue(Object, String, Object) - 类 中的静态方法com.ajaxjs.sqlman.util.BeanUtils
-
设置 Java Bean 的值
- setConnection(Connection) - 类 中的静态方法com.ajaxjs.sqlman.sql.JdbcConn
-
保存一个数据库连接对象到当前进程
- setProperty(Object, String, Object) - 类 中的静态方法com.ajaxjs.sqlman.util.BeanUtils
-
调用 bean 对象的 setter 方法 参考 Spring 的
ReflectionUtils.setField(null, null, null);
- setTableModel(TableModel) - 类 中的方法com.ajaxjs.sqlman.crud.Entity
- setTableName(String) - 类 中的方法com.ajaxjs.sqlman.crud.Entity
- SmallMyBatis - com.ajaxjs.sqlman.sql中的类
-
类似 MyBatis 把 SQL 存储在 XML 中,这个是低配版
- SmallMyBatis() - 类 的构造器com.ajaxjs.sqlman.sql.SmallMyBatis
- SNOW - com.ajaxjs.sqlman.model.JdbcConstants.IdType
-
雪花 id(Long)
- SnowflakeId - com.ajaxjs.sqlman.util中的类
-
雪花生成器
- SnowflakeId(long) - 类 的构造器com.ajaxjs.sqlman.util.SnowflakeId
- sql - 类 中的变量com.ajaxjs.sqlman.model.SqlParams
-
给 PrepareStatement 用的 SQL 语句
- sql(String, Object...) - 类 中的静态方法com.ajaxjs.sqlman.sql.Sql
- sql(Connection, String, Object...) - 类 中的静态方法com.ajaxjs.sqlman.sql.Sql
- sql(DataSource, String, Object...) - 类 中的静态方法com.ajaxjs.sqlman.sql.Sql
- Sql - com.ajaxjs.sqlman.sql中的类
- Sql() - 类 的构造器com.ajaxjs.sqlman.sql.Sql
-
Create a JDBC action with global connection
- Sql(Connection) - 类 的构造器com.ajaxjs.sqlman.sql.Sql
-
Create a JDBC action with specified connection
- Sql(DataSource) - 类 的构造器com.ajaxjs.sqlman.sql.Sql
-
Create a JDBC action with specified data source
- SQL_SERVER - com.ajaxjs.sqlman.model.JdbcConstants.DatabaseVendor
- SqlInjectionAnalyzer - com.ajaxjs.sqlman.util中的类
-
基于 SQL 语法对象的 SQL 注入攻击分析实现
- SqlInjectionAnalyzer() - 类 的构造器com.ajaxjs.sqlman.util.SqlInjectionAnalyzer
- SqlParams - com.ajaxjs.sqlman.model中的类
-
给 PrepareStatement 用的 SQL 语句和参数值列表
- SqlParams() - 类 的构造器com.ajaxjs.sqlman.model.SqlParams
T
- table() - 注释类型 中的方法com.ajaxjs.sqlman.annotation.Column
-
(Optional) The table in which the column is created in a secondary table scenario.
- Table - com.ajaxjs.sqlman.annotation中的注释类型
-
表名
- TableModel - com.ajaxjs.sqlman.model中的类
-
具体表里面的各个字段是什么名称,这里指定
- TableModel() - 类 的构造器com.ajaxjs.sqlman.model.TableModel
- tilNextMillis(long) - 类 中的静态方法com.ajaxjs.sqlman.util.SnowflakeId
-
获取时间戳,并与上次时间戳比较。
- TRACE - org.springframework.web.bind.annotation.RequestMethod
- Transient - com.ajaxjs.sqlman.annotation中的注释类型
-
Specifies that the property or field is not persistent.
- trimResult(Object) - 类 中的静态方法com.ajaxjs.sqlman.util.PrettyLog
- types() - 注释类型 中的方法org.springframework.web.bind.annotation.SessionAttributes
-
The types of session attributes in the model that should be stored in the session or some conversational storage.
U
- unique() - 注释类型 中的方法com.ajaxjs.sqlman.annotation.Column
-
(Optional) Whether the column is a unique key.
- updatable() - 注释类型 中的方法com.ajaxjs.sqlman.annotation.Column
-
(Optional) Whether the column is included in the generated UPDATE statement for the entity.
- update() - 类 中的方法com.ajaxjs.sqlman.crud.Entity
- update() - 接口 中的方法com.ajaxjs.sqlman.sql.DAO
- update() - 类 中的方法com.ajaxjs.sqlman.sql.JdbcCommand
-
执行 SQL UPDATE 更新
- update(String) - 类 中的方法com.ajaxjs.sqlman.crud.Entity
-
修改实体 将一个 Map 转换成更新语句的 SqlParams 对象,可允许任意的过滤条件,而不只是 WHERE id = 1
- update(String) - 接口 中的方法com.ajaxjs.sqlman.crud.IEntity
- update(String, String, Map<String, Object>) - 接口 中的方法com.ajaxjs.sqlman.crud.api.CrudController
-
修改实体
- update(String, String, Map<String, Object>) - 类 中的方法com.ajaxjs.sqlman.crud.api.CrudService
- Update - com.ajaxjs.sqlman.model中的类
- Update() - 类 的构造器com.ajaxjs.sqlman.model.Update
- Utils - com.ajaxjs.sqlman.util中的类
- Utils() - 类 的构造器com.ajaxjs.sqlman.util.Utils
- UUID - com.ajaxjs.sqlman.model.JdbcConstants.IdType
-
UUID
V
- value() - 注释类型 中的方法com.ajaxjs.sqlman.annotation.Id
-
Id 是哪个字段?
- value() - 注释类型 中的方法com.ajaxjs.sqlman.annotation.Table
-
表名
- value() - 注释类型 中的方法org.springframework.web.bind.annotation.ControllerAdvice
-
Alias for the
ControllerAdvice.basePackages()
attribute. - value() - 注释类型 中的方法org.springframework.web.bind.annotation.CookieValue
-
Alias for
CookieValue.name()
. - value() - 注释类型 中的方法org.springframework.web.bind.annotation.DeleteMapping
-
Alias for
RequestMapping.value()
. - value() - 注释类型 中的方法org.springframework.web.bind.annotation.ExceptionHandler
-
Exceptions handled by the annotated method.
- value() - 注释类型 中的方法org.springframework.web.bind.annotation.GetMapping
-
Alias for
RequestMapping.value()
. - value() - 注释类型 中的方法org.springframework.web.bind.annotation.InitBinder
-
The names of command/form attributes and/or request parameters that this init-binder method is supposed to apply to.
- value() - 注释类型 中的方法org.springframework.web.bind.annotation.MatrixVariable
-
Alias for
MatrixVariable.name()
. - value() - 注释类型 中的方法org.springframework.web.bind.annotation.ModelAttribute
-
Alias for
ModelAttribute.name()
. - value() - 注释类型 中的方法org.springframework.web.bind.annotation.PatchMapping
-
Alias for
RequestMapping.value()
. - value() - 注释类型 中的方法org.springframework.web.bind.annotation.PathVariable
-
Alias for
PathVariable.name()
. - value() - 注释类型 中的方法org.springframework.web.bind.annotation.PostMapping
-
Alias for
RequestMapping.value()
. - value() - 注释类型 中的方法org.springframework.web.bind.annotation.PutMapping
-
Alias for
RequestMapping.value()
. - value() - 注释类型 中的方法org.springframework.web.bind.annotation.RequestAttribute
-
Alias for
RequestAttribute.name()
. - value() - 注释类型 中的方法org.springframework.web.bind.annotation.RequestHeader
-
Alias for
RequestHeader.name()
. - value() - 注释类型 中的方法org.springframework.web.bind.annotation.RequestMapping
-
The primary mapping expressed by this annotation.
- value() - 注释类型 中的方法org.springframework.web.bind.annotation.RequestParam
-
Alias for
RequestParam.name()
. - value() - 注释类型 中的方法org.springframework.web.bind.annotation.RequestPart
-
Alias for
RequestPart.name()
. - value() - 注释类型 中的方法org.springframework.web.bind.annotation.RestController
-
The value may indicate a suggestion for a logical component name, to be turned into a Spring bean in case of an autodetected component.
- value() - 注释类型 中的方法org.springframework.web.bind.annotation.RestControllerAdvice
-
Alias for the
RestControllerAdvice.basePackages()
attribute. - value() - 注释类型 中的方法org.springframework.web.bind.annotation.SessionAttribute
-
Alias for
SessionAttribute.name()
. - value() - 注释类型 中的方法org.springframework.web.bind.annotation.SessionAttributes
-
Alias for
SessionAttributes.names()
. - ValueConstants - org.springframework.web.bind.annotation中的接口
-
Common value constants shared between bind annotations.
- valueOf(String) - 枚举 中的静态方法com.ajaxjs.sqlman.model.JdbcConstants.DatabaseVendor
-
返回带有指定名称的该类型的枚举常量。
- valueOf(String) - 枚举 中的静态方法com.ajaxjs.sqlman.model.JdbcConstants.IdType
-
返回带有指定名称的该类型的枚举常量。
- valueOf(String) - 枚举 中的静态方法org.springframework.web.bind.annotation.RequestMethod
-
返回带有指定名称的该类型的枚举常量。
- values - 类 中的变量com.ajaxjs.sqlman.model.SqlParams
-
参数值列表
- values() - 枚举 中的静态方法com.ajaxjs.sqlman.model.JdbcConstants.DatabaseVendor
-
按照声明该枚举类型的常量的顺序, 返回 包含这些常量的数组。
- values() - 枚举 中的静态方法com.ajaxjs.sqlman.model.JdbcConstants.IdType
-
按照声明该枚举类型的常量的顺序, 返回 包含这些常量的数组。
- values() - 枚举 中的静态方法org.springframework.web.bind.annotation.RequestMethod
-
按照声明该枚举类型的常量的顺序, 返回 包含这些常量的数组。
- visit(AllValue) - 类 中的方法com.ajaxjs.sqlman.util.ConstAnalyzer
- visit(AnalyticExpression) - 类 中的方法com.ajaxjs.sqlman.util.ConstAnalyzer
- visit(AnyComparisonExpression) - 类 中的方法com.ajaxjs.sqlman.util.ConstAnalyzer
- visit(ArrayConstructor) - 类 中的方法com.ajaxjs.sqlman.util.ConstAnalyzer
- visit(ArrayExpression) - 类 中的方法com.ajaxjs.sqlman.util.ConstAnalyzer
- visit(CaseExpression) - 类 中的方法com.ajaxjs.sqlman.util.ConstAnalyzer
- visit(CastExpression) - 类 中的方法com.ajaxjs.sqlman.util.ConstAnalyzer
- visit(CollateExpression) - 类 中的方法com.ajaxjs.sqlman.util.ConstAnalyzer
- visit(ConnectByRootOperator) - 类 中的方法com.ajaxjs.sqlman.util.ConstAnalyzer
- visit(DateTimeLiteralExpression) - 类 中的方法com.ajaxjs.sqlman.util.ConstAnalyzer
- visit(DateValue) - 类 中的方法com.ajaxjs.sqlman.util.ConstAnalyzer
- visit(DoubleValue) - 类 中的方法com.ajaxjs.sqlman.util.ConstAnalyzer
- visit(ExtractExpression) - 类 中的方法com.ajaxjs.sqlman.util.ConstAnalyzer
- visit(Function) - 类 中的方法com.ajaxjs.sqlman.util.ConstAnalyzer
- visit(Function) - 类 中的方法com.ajaxjs.sqlman.util.SqlInjectionAnalyzer
- visit(HexValue) - 类 中的方法com.ajaxjs.sqlman.util.ConstAnalyzer
- visit(IntervalExpression) - 类 中的方法com.ajaxjs.sqlman.util.ConstAnalyzer
- visit(JdbcNamedParameter) - 类 中的方法com.ajaxjs.sqlman.util.ConstAnalyzer
- visit(JdbcParameter) - 类 中的方法com.ajaxjs.sqlman.util.ConstAnalyzer
- visit(JsonAggregateFunction) - 类 中的方法com.ajaxjs.sqlman.util.ConstAnalyzer
- visit(JsonExpression) - 类 中的方法com.ajaxjs.sqlman.util.ConstAnalyzer
- visit(JsonFunction) - 类 中的方法com.ajaxjs.sqlman.util.ConstAnalyzer
- visit(KeepExpression) - 类 中的方法com.ajaxjs.sqlman.util.ConstAnalyzer
- visit(LongValue) - 类 中的方法com.ajaxjs.sqlman.util.ConstAnalyzer
- visit(MySQLGroupConcat) - 类 中的方法com.ajaxjs.sqlman.util.ConstAnalyzer
- visit(NextValExpression) - 类 中的方法com.ajaxjs.sqlman.util.ConstAnalyzer
- visit(NotExpression) - 类 中的方法com.ajaxjs.sqlman.util.ConstAnalyzer
- visit(NullValue) - 类 中的方法com.ajaxjs.sqlman.util.ConstAnalyzer
- visit(NumericBind) - 类 中的方法com.ajaxjs.sqlman.util.ConstAnalyzer
- visit(Addition) - 类 中的方法com.ajaxjs.sqlman.util.ConstAnalyzer
- visit(BitwiseAnd) - 类 中的方法com.ajaxjs.sqlman.util.ConstAnalyzer
- visit(BitwiseLeftShift) - 类 中的方法com.ajaxjs.sqlman.util.ConstAnalyzer
- visit(BitwiseOr) - 类 中的方法com.ajaxjs.sqlman.util.ConstAnalyzer
- visit(BitwiseRightShift) - 类 中的方法com.ajaxjs.sqlman.util.ConstAnalyzer
- visit(BitwiseXor) - 类 中的方法com.ajaxjs.sqlman.util.ConstAnalyzer
- visit(Concat) - 类 中的方法com.ajaxjs.sqlman.util.ConstAnalyzer
- visit(Division) - 类 中的方法com.ajaxjs.sqlman.util.ConstAnalyzer
- visit(IntegerDivision) - 类 中的方法com.ajaxjs.sqlman.util.ConstAnalyzer
- visit(Modulo) - 类 中的方法com.ajaxjs.sqlman.util.ConstAnalyzer
- visit(Multiplication) - 类 中的方法com.ajaxjs.sqlman.util.ConstAnalyzer
- visit(Subtraction) - 类 中的方法com.ajaxjs.sqlman.util.ConstAnalyzer
- visit(AndExpression) - 类 中的方法com.ajaxjs.sqlman.util.ConstAnalyzer
- visit(AndExpression) - 类 中的方法com.ajaxjs.sqlman.util.SqlInjectionAnalyzer
- visit(OrExpression) - 类 中的方法com.ajaxjs.sqlman.util.ConstAnalyzer
- visit(OrExpression) - 类 中的方法com.ajaxjs.sqlman.util.SqlInjectionAnalyzer
- visit(XorExpression) - 类 中的方法com.ajaxjs.sqlman.util.ConstAnalyzer
- visit(Between) - 类 中的方法com.ajaxjs.sqlman.util.ConstAnalyzer
- visit(EqualsTo) - 类 中的方法com.ajaxjs.sqlman.util.ConstAnalyzer
- visit(ExistsExpression) - 类 中的方法com.ajaxjs.sqlman.util.ConstAnalyzer
- visit(ExpressionList) - 类 中的方法com.ajaxjs.sqlman.util.ConstAnalyzer
- visit(FullTextSearch) - 类 中的方法com.ajaxjs.sqlman.util.ConstAnalyzer
- visit(GeometryDistance) - 类 中的方法com.ajaxjs.sqlman.util.ConstAnalyzer
- visit(GreaterThan) - 类 中的方法com.ajaxjs.sqlman.util.ConstAnalyzer
- visit(GreaterThanEquals) - 类 中的方法com.ajaxjs.sqlman.util.ConstAnalyzer
- visit(InExpression) - 类 中的方法com.ajaxjs.sqlman.util.ConstAnalyzer
- visit(IsBooleanExpression) - 类 中的方法com.ajaxjs.sqlman.util.ConstAnalyzer
- visit(IsDistinctExpression) - 类 中的方法com.ajaxjs.sqlman.util.ConstAnalyzer
- visit(IsNullExpression) - 类 中的方法com.ajaxjs.sqlman.util.ConstAnalyzer
- visit(JsonOperator) - 类 中的方法com.ajaxjs.sqlman.util.ConstAnalyzer
- visit(LikeExpression) - 类 中的方法com.ajaxjs.sqlman.util.ConstAnalyzer
- visit(Matches) - 类 中的方法com.ajaxjs.sqlman.util.ConstAnalyzer
- visit(MinorThan) - 类 中的方法com.ajaxjs.sqlman.util.ConstAnalyzer
- visit(MinorThanEquals) - 类 中的方法com.ajaxjs.sqlman.util.ConstAnalyzer
- visit(MultiExpressionList) - 类 中的方法com.ajaxjs.sqlman.util.ConstAnalyzer
- visit(NamedExpressionList) - 类 中的方法com.ajaxjs.sqlman.util.ConstAnalyzer
- visit(NotEqualsTo) - 类 中的方法com.ajaxjs.sqlman.util.ConstAnalyzer
- visit(RegExpMatchOperator) - 类 中的方法com.ajaxjs.sqlman.util.ConstAnalyzer
- visit(RegExpMySQLOperator) - 类 中的方法com.ajaxjs.sqlman.util.ConstAnalyzer
- visit(SimilarToExpression) - 类 中的方法com.ajaxjs.sqlman.util.ConstAnalyzer
- visit(OracleHierarchicalExpression) - 类 中的方法com.ajaxjs.sqlman.util.ConstAnalyzer
- visit(OracleHint) - 类 中的方法com.ajaxjs.sqlman.util.ConstAnalyzer
- visit(OracleNamedFunctionParameter) - 类 中的方法com.ajaxjs.sqlman.util.ConstAnalyzer
- visit(Parenthesis) - 类 中的方法com.ajaxjs.sqlman.util.ConstAnalyzer
- visit(RowConstructor) - 类 中的方法com.ajaxjs.sqlman.util.ConstAnalyzer
- visit(RowGetExpression) - 类 中的方法com.ajaxjs.sqlman.util.ConstAnalyzer
- visit(SignedExpression) - 类 中的方法com.ajaxjs.sqlman.util.ConstAnalyzer
- visit(StringValue) - 类 中的方法com.ajaxjs.sqlman.util.ConstAnalyzer
- visit(TimeKeyExpression) - 类 中的方法com.ajaxjs.sqlman.util.ConstAnalyzer
- visit(TimestampValue) - 类 中的方法com.ajaxjs.sqlman.util.ConstAnalyzer
- visit(TimeValue) - 类 中的方法com.ajaxjs.sqlman.util.ConstAnalyzer
- visit(TimezoneExpression) - 类 中的方法com.ajaxjs.sqlman.util.ConstAnalyzer
- visit(TryCastExpression) - 类 中的方法com.ajaxjs.sqlman.util.ConstAnalyzer
- visit(UserVariable) - 类 中的方法com.ajaxjs.sqlman.util.ConstAnalyzer
- visit(ValueListExpression) - 类 中的方法com.ajaxjs.sqlman.util.ConstAnalyzer
- visit(VariableAssignment) - 类 中的方法com.ajaxjs.sqlman.util.ConstAnalyzer
- visit(WhenClause) - 类 中的方法com.ajaxjs.sqlman.util.ConstAnalyzer
- visit(XMLSerializeExpr) - 类 中的方法com.ajaxjs.sqlman.util.ConstAnalyzer
- visit(Column) - 类 中的方法com.ajaxjs.sqlman.util.ConstAnalyzer
- visit(Column) - 类 中的方法com.ajaxjs.sqlman.util.SqlInjectionAnalyzer
- visit(AllColumns) - 类 中的方法com.ajaxjs.sqlman.util.ConstAnalyzer
- visit(AllTableColumns) - 类 中的方法com.ajaxjs.sqlman.util.ConstAnalyzer
- visit(PlainSelect) - 类 中的方法com.ajaxjs.sqlman.util.SqlInjectionAnalyzer
- visit(SubSelect) - 类 中的方法com.ajaxjs.sqlman.util.ConstAnalyzer
- visit(SubSelect) - 类 中的方法com.ajaxjs.sqlman.util.SqlInjectionAnalyzer
- visit(WithItem) - 类 中的方法com.ajaxjs.sqlman.util.SqlInjectionAnalyzer
- visitBinaryExpression(BinaryExpression) - 类 中的方法com.ajaxjs.sqlman.util.ConstAnalyzer
- visitBinaryExpression(BinaryExpression) - 类 中的方法com.ajaxjs.sqlman.util.SqlInjectionAnalyzer
W
- write(EvaluationContext, Object, String, Object) - 类 中的方法org.springframework.context.expression.MapAccessor
所有类 所有程序包