- 浏览: 49225 次
- 性别:
- 来自: 深圳
最新评论
-
aine_pan:
写的不错,我刚好也看了这个实现,准备复写schema的注解实现 ...
hibernate涂鸦(1)——cfg配置 -
mark2007081021:
您好,我也在看这部分内容,需要和同道中人交流,联系方式:qq: ...
Spring Roo学习笔记(1)——介绍
文章列表
__init__.py
定义Selenium2Library对象,继承自所有的keywords对象,init函数中调用所有父对象的init函数,设置_BrowserManagementKeywords的timeout和implicit_wait,_RunOnFailureKeywords的keywords属性。Selenium2Library即为RF的库名,__init__(self, timeout=5.0, implicit_wait=0.0, run_on_failure='Capture Page Screenshot') 表示可以在申明库的同时传递三个参数,具体参数的含义在使用这 ...
=============第二章:数据预处理*********第二节:描述性统计概述=================
Measuring the Central Tendency
算数平均 arithmetic mean / 加权平均 weighted arithmetic mean:对过大过小值敏感,属于algebraic measure
裁剪后平均 trimmed mean:去掉一定比例的过值后进行平均,属于algebraic measure
中位数 median:适用于非对称分布数据,属于holistic measure,可以通过分组近似估算中间组的中位数。
众数 m ...
=============第一章:DM介绍=================
Data mining的范畴:
data collection and database creation
data management (including data storage and retrieval, and database transaction processing)
advanced data analysis (involving data warehousing and data mining).
Data mining的步骤:
Data cleaning (to re ...
The module XML file
位置:src/main/java/包/applicationScaffold.gwt.xml
由于Roo的项目必须是maven构建的,所以有固定的src目录结构;名字也是自动生成的(@question希望在使用Roo命令时可以修改
);
内容:
模块:applicationScaffold
继承User
继承Standard theme
继承Activity
继承Place
继承Inject
:gwt的依赖注入模块,项目名字叫Gin
,是基于Guice
的
继承RequestFactor ...
The module XML file
位置:src/com.hellomvp/HelloMVP.gwt.xml
内容:
模块:helloMVP
继承User
继承Standard theme
继承Activity
:Presenter of MVP,依赖于Place模块,本质是一个widget上的事件处理引擎。
继承Place
:View States of MVP
entry-point:com.hellomvp.client.HelloMVP
replace-with
:对co ...
Roo is not a runtime:只介入开发过程,这点我很喜欢。
Roo is not an IDE plugin:可以用eclipse的STS插件,但不依赖于IDE,好处是更新或者切换版本时不至于太突兀,这点用过某XXStudio就感同身受了。
Roo is not an annotation processing library:Roo不会使用java的api来处理ann,也就是说它都不介入compile阶段,它只是把java文件当文本文件来处理里面的ann。
万恶的maven再次出现,Roo构建出来的project是基于pom结构的。
10分钟构建一个web a ...
The module XML file
位置:src/包/项目名.gwt.xml
内容:
模块:项目名全小写
继承User
继承Standard theme
entry-point:client包下的项目文件名为类名的类
源client
源shared
The Host Page
位置:war/项目名.html
内容:
meta tag
css: 项目名.css
js: 模块名/模块名.nocache.js
<h1>Web Application Starter Project</h1& ...
org.hibernate.type.TypeResolver
-- basicTypeRegistry: 在无参构造函数中被new出来,并在带参构造函数中被赋值
-- typeFactory: 在无参构造函数中被new出来,并在带参构造函数中被赋值
-- public Type heuristicType(String) throws MappingException: 调用②
heuristicType(typeName, null)
-- public Type heuristicType(String, Properties) throws Mappin ...
org.hibernate.cfg.annotations.QueryBinder: 抽象静态帮助类
-- public static void bindSqlResultsetMapping(SqlResultSetMapping ann, Mappings, boolean isDefault): 使用ann,mapping和isDefault建立ResultsetMappingSecondPass
的一个对象,作为参数调用mapping.addSecondPass(
SecondPass
);
-- public static void bindSql ...
org.hibernate.annotations.common.reflection.java.JavaXPackage extends JavaXAnnotatedElemen: Hibernate对Package的适配(Adapter pattern
)
-- javaReflectionManager: 父类属性
-- annotatedElement: 父类属性
-- public JavaXPackage(Package, JavaReflectionManager): 直接调用同参数super构造函数,分别赋值给annotatedElement
和ja ...