上一页 1 ··· 7 8 9 10 11
摘要: 一、JPA通用策略生成器通过annotation来映射hibernate实体的,基于annotation的hibernate主键标识为@Id,其生成规则由@GeneratedValue设定的.这里的@id和@GeneratedValue都是JPA的标准用法,JPA提供四种标准用法,由@GeneratedValue的源代码可以明显看出.Java代码@Target({METHOD,FIELD})@Retention(RUNTIME)public@interfaceGeneratedValue{GenerationTypestrategy()defaultAUTO;Stringgenerator() 阅读全文
posted @ 2013-04-06 08:06 springstudent 阅读(323) 评论(0) 推荐(0) 编辑
摘要: 在jar上设置/右键properties/Javadoc Location/Struts-2.3.12/docs下面找到对应的文档 阅读全文
posted @ 2013-04-05 22:53 springstudent 阅读(249) 评论(0) 推荐(0) 编辑
摘要: 选中你想要读的jar包/右键Properties/Java Source Attachment/Struts-2.3.12/src/core/src/main/java你想读任何一个jar,都是类似设置 阅读全文
posted @ 2013-04-05 22:45 springstudent 阅读(139) 评论(0) 推荐(0) 编辑
摘要: 在struts.xml中添加一个常量就行了,在struts.xml中可以设置那些常量,我们可以到struts-core/org.apache.struts2/static/default.properties中去查找将开发模式设置为true就行了,即<constant name="struts.devMode" value="true" /> 阅读全文
posted @ 2013-04-05 22:38 springstudent 阅读(503) 评论(0) 推荐(0) 编辑
摘要: com.microsoft.sqlserver.jdbc.SQLServerException: 通过端口 1433 连接到主机 localhost 的 TCP/IP 连接失败。错误:“Connection refused: connect。请验证连接属性,并检查 SQL Server 的实例正在主机上运行,且在此端口接受 TCP/IP 连接,还要确保防火墙没有阻止到此端口的 TCP 连接。”。对于hibernate链接SQL Server2008出现这种原因及我本人的解决办法<property name="connection.driver_class">co 阅读全文
posted @ 2013-04-05 21:23 springstudent 阅读(1025) 评论(0) 推荐(0) 编辑
摘要: 1.绝对值 S:select abs(-1) value O:select abs(-1) value from dual 2.取整(大) S:select ceiling(-1.001) value O:select ceil(-1.001) value from dual 3.取整(小) S:select floor(-1.001) value O:select floor(-1.001) value from dual 4.取整(截取) S:select cast(-1.002 as int) value O:select trunc(-1.002)... 阅读全文
posted @ 2013-04-05 15:46 springstudent 阅读(335) 评论(0) 推荐(0) 编辑
上一页 1 ··· 7 8 9 10 11