天天看点

分类整理

数据库相关

schema schema 不翻译
catalog 目录
tables
column 列/字段
index 索引
sequence 序列 对应于数据库中的sequence
unique 唯一的
nullable 可为空的
insertable 可插入的
updatable 可更新的
embedded objects 嵌入对象
embeddable object 可嵌入的对象
identity generator ID生成器
sequence generator 序列生成器
temporal precision 瞬时精度
precision 精度
decimal precision 十进制精度
scale 刻度,数值范围 关系数据库中通常指小数点位数
decimal scale 十进制
primary key 主键/主关键字
primary key column 主键列
foreign key 外键/外关键字
foreign key column 外键列
association 关联
association column 关联列
join column 连接列 根据情况选择不翻译
relationship 关系/关联
unique constraint 唯一约束
invariant constraint 不变约束
constraint violation 约束违例

Java/面向对象相关

POJO 简单java对象 Plain Old Java Object
entity hierarchy 实体层次
field 字段
property 属性
attribute 属性
Inheritance 继承
unqualified class name 短类名 不附带包名
full qualified class name(fqcn) 全称类名 附带包名
List 列表 根据情况选择不翻译 
ordered list 有序列表
indexed list 索引列表
Bag 根据情况选择不翻译 
Set 集合 根据情况选择不翻译 
Map 映射/映射表 根据情况选择不翻译 
target entity 目标实体
entity 实体
Semantic 语义
java representation java表示
primitive type 主要/基本类型
core type 核心类型
Serializable 序列化

O/R Mapping相关

object/relational mapping 对象/关系 映射
metadata 元数据
metamodel 元模型
annotation 注解
meta-annotation 元注解
Metadata impact 元数据影响
paradigm 范例
persistence 持久/持久化
wrapper class 封装/包裹类
logical mapping 逻辑映射
physical mapping 物理映射
identity 标识(符) 能唯一标识一个对象的字段/列,对应到数据库一般为主键
Identifier 标识符
Versioning for optimistic locking 乐观锁定版本控制
transient 瞬态/瞬时的 这个词建议和具体的词组一起出现,单独出现似乎没有什么特别的意义
fetch 获取
lazy fetch 延迟获取
eagerly fetch 即时获取
lazy loading 延迟加载
lazy simple properties 延时加载的简单属性
lazy association fetching 延时关联获取
projection 投影
ordinal 顺序的
portable application 可移植的应用
Class-defined 已定义类
Table per Class 每个类一张表
Single Table per Class Hierarchy 每个类层次结构一张表
Joined Subclass 连接的子类
inheritance hierarchy 继承层次结构
one to many 一对多
one to one 一对一
many to many 多对多
bidirectional 双向的
unidirectional 单向的
discriminator 识别符
discriminator column 识别符列
discriminator type 识别符类型
owner side 所有者侧
owner table 所有者表
owner property 所有者属性
owner primary key 所有者主键
concatenation 串联/链接
owned side 被拥有侧
Collection 集合/集合类
version 版本
timestamp 时间戳
optimize 优化
Transitive persistence 传播性持久化
cascading 级联
Association fetching 关联获取
composite primary key 复合主键
secondary table 次级表
Cache mode 缓存模式
Flush mode Flush模式
Cache region 缓存区
second level cache 二级缓存
query 查询
native query 本地查询
clause 子句
scope 范围
global scope 全局范围
field level 字段级
property level 属性级
class level 类级
package level 包级
bean level bean级
application level 应用级
annotations extension 注解扩展
persister 持续
optimistic lock 乐观锁
batch size 批大小
context 上下文
Access type 访问类型
Sub-entity 子实体
composite user type 复合自定义类型
comparator 比较器
comparator type 比较器类型
callable 可调用的
filter 过滤器
validator 验证器
build in 内建
constraint descriptor 约束描述符
constraint validator 约束验证
automatic indexing 自动索引

常见技术英语

implicit 隐式
explicit 显式
capitalize 大写的
mandatory 必须的
externalize 外部化
legacy system 遗留系统
concurrency 并行
cacheable 可缓存的
Formula 公式
mutable 可变的
immutable 不可变
dynamic 动态
scalar 标量
hash 哈希
hint 提示
regular expression 正则表达式
override 覆写/覆盖

继续阅读