- 博客(8)
- 资源 (2)
- 收藏
- 关注
转载 hibernate 连 oracle 没有主键怎么办
这里记录hibernate中组合主键的annotation方式。hibernate-annotations说明文档中有说到组合主键使用annotation的方式实现,如下几种下面是定义组合主键的几种语法:1. 将组件类注解为@Embeddable,并将组件的属性注解为@Id2. 将组件的属性注解为@EmbeddedId3. 将类注解为@IdClass,
2017-04-06 14:04:27 2099
转载 安装redis 遇到的问题及解决
hadoop@stormspark:~/workspace/redis2.6.13/src$ make testYou need tcl 8.5 or newer in order to run the Redis testmake: *** [test] Error 1[html] view plain copy wget http://d
2017-03-23 15:39:38 398
转载 IntelliJ中的main函数和System.out.println()快捷键
1、在IntelJ中和Eclipse中稍有不同,在Eclipse中,输入main再按Alt+/即可自动补全main函数,但是在IntellJ中则是输入psvm,选中即可2、在方法体内部有for循环,在IntellJ中是输入fori,然后会有一个提示,选中需要的for循环即可3、System.out.println();在IntellJ中是输入sout
2017-03-15 17:15:40 362
转载 docker 无法下载私有库镜像
docker pull xxx.xxx.comError: Invalid registry endpoint https://dl.dockerpool.com:5000/v1/: Get https://www.dockerpool.com:5000/v1/_ping: EOF. If this private registry supports only HTTP or HTTP
2017-03-10 17:21:21 532
原创 java访问zabbix api中文提示json格式错误
近日使用java访问zabbix api 在传递中文参数的时候,打死也出来结果。通过postman等请求工具,发现传递的参数能返回结果。那么就基本判断出是java 发送post请求时,未进行中文设置。代码如下public static String sendPost(String urlAddr,String param) { Http
2017-03-01 17:52:09 1528
原创 mysql中int型时间转换datetiem
mysql中int型时间 是从1970年到现在时刻的秒差数值转换方法是int 转 datetimeSELECT FROM_UNIXTIME(1479286027) datetime类型,转intSELECT UNIX_TIMESTAMP('2016-11-16 14:14:07')
2016-11-16 19:08:12 726
原创 zabbix 数据库items中几个关系
items 表记录设备的性能数据,具体数值在history等几个表里items中value_type 由 0,1,2,3,40对应history表1对应history_str表2对应history_log表3对应history_uint表4对应history_text表如果key 不是一个确定的值 例如net.if.in[{#IFNAME}] 他代表一类
2016-11-16 18:58:27 656
原创 Spring + SpringMVC + Mybatis 开发
Spring 根据个人理解Spring 负责帮你实例化对象,帮你管理这些对象。包括配置文件等等Spring MVC 帮助你把三层分开,目前看满足了 Struts的功能。MyBatis 负责持久化对象,和数据库交互。基本结构包括 数据库 + Model层 + DAO层(java+xml) + Service(接口)+ Service实现 + Co
2016-11-11 10:22:12 242
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人