A.不能再继续使用SQL语句了 B.可以使用符合对象语言的对象查询语句 C.可以使用条件查询语句 D.只能使用HQL语句
多项选择题Spring的AOP中通知类型有()
A.围绕通知 B.提前通知 C.抛出通知 D.消息通知
多项选择题Hibernate 中的查询语句如下 From User u where u.name=:username and u.yearold=:yearold 正确的参数注入方式有()
A.query.setParameter(“username”,”bluedavy”) B.query.setParameter(“yearold”,25) C.query.setParameter(0,”bluedavy”) D.query.setParameter(1,25)
多项选择题在Hibernate中关于数据库表主键,正确的说法有()
A.“uuid.hex”由Hibernate 基于128位UUID算法生成16进制数值(编码后以长度32的字符串表示)作为主键 B.“uuid.hex”生成的主键只能适用于SQL Server数据库 C.“Native”根据具体连接的数据库从identity,sequence 或者hilo选择一种来生成主键 D.“increment”生成 long,short 或者int类型的主键
多项选择题HTML标记描述正确的有()
A.<html:button>标记显示一个按钮控件 B.<html:cancel>标记显示一个取消按钮 C.<html:submit>标记显示一个提交按钮 D.<html:select>标记显示HTML复选框按钮
多项选择题给出下列java源代码: Point x Public class Interesting{} 在源代码 point x处添加()能符合java语法
A.import java.awt.* B.package local.util C.class MoreInteresting{} D.protected class MoreInteresting{}