ERROR 27-05 13:02:11,659 - 原客户号[4264257810]更新失败org.springframework.orm.hibernate3.HibernateJdbcException: JDBC exception on Hibernate data access: SQL ...
分类:
编程语言 时间:
2020-05-27 13:45:01
阅读次数:
75
运行单元测试,或者跑程序 时,使用BeanUtils复制对象属性,结果抛出了No value specified for Date异常。 原因是:数据源orig有一个参数是java.util.Date类型,没有初始化值,调用了BeanUtils.copyProperties方法。 解决办法: 在使用 ...
分类:
其他好文 时间:
2020-05-26 11:53:23
阅读次数:
324
玩转Pod调度 Deployment或RC:全自动调度 apiVersion: apps/v1beta1 kind: Deployment metadata: name: nginx-deployment spec: replicas: 3 template: metadata: labels: a ...
分类:
Web程序 时间:
2020-05-25 17:31:45
阅读次数:
58
command args参数 示例1: spec: containers: - name: liveness image: busybox command: ["sh", "-c"] args: - /bin/sh - -c - echo ok > /tmp/health; sleep 10; rm ...
分类:
其他好文 时间:
2020-05-24 16:27:40
阅读次数:
66
Find the sum of all left leaves in a given binary tree. Example: 3 / \ 9 20 / \ 15 7 There are two left leaves in the binary tree, with values 9 and 1 ...
分类:
其他好文 时间:
2020-05-24 11:27:13
阅读次数:
52
Ruby提供了两个级别访问网络的服务,在底层你可以访问操作系统,它可以让你实现客户端和服务器为面向连接和无连接协议的基本套接字支持。 Ruby 统一支持应用程序的网络协议,如FTP、HTTP等。 不管是高层的还是底层的。ruby提供了一些基本类,让你可以使用TCP,UDP,SOCKS等很多协议交互, ...
分类:
其他好文 时间:
2020-05-23 18:41:05
阅读次数:
68
博客转自:http://www.lighthouse3d.com/tutorials/glut-tutorial/subwindow-reshape/ The callback for the reshape function needs to do two things: it resizes t ...
分类:
其他好文 时间:
2020-05-23 18:30:51
阅读次数:
61
创建表 CREATE TABLE `products` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(255) NOT NULL, `price` decimal(10,2) DEFAULT NULL, PRIMARY KEY (`id ...
分类:
数据库 时间:
2020-05-23 14:47:10
阅读次数:
92
节点亲和性 pod.spec.nodeAffinity: preferredDuringSchedulingIgnoredDuringExecution:软策略 requiredDuringSchedulingIgnoredDuringExecution:硬策略 requiredDuringSche ...
分类:
Web程序 时间:
2020-05-23 00:28:20
阅读次数:
64
和普通的修改密码不太一样 ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right sy ...
分类:
数据库 时间:
2020-05-22 21:15:47
阅读次数:
210