如何使用Gradle为as400 db2创建springboot Web服务?

j5fpnvbx  于 2023-08-06  发布在  DB2
关注(0)|答案(2)|浏览(154)

我正在尝试使用gradle为as400 db2创建一个springboot webservice。我有一个web服务的sql与grdle。要将其连接到DB2400,应该进行哪些更改??

jv2fixgn

jv2fixgn1#

在这里获取JDBC驱动程序:
https://www-03.ibm.com/systems/power/software/i/toolbox/downloads.html
驱动程序的Gradle依赖项:

// https://mvnrepository.com/artifact/net.sf.jt400/jt400
compile group: 'net.sf.jt400', name: 'jt400', version: '9.4'

字符串
包括驱动程序类名称等的常见问题可以在这里找到:
https://www-03.ibm.com/systems/power/software/i/toolbox/faq/jdbc.html

zz2j4svz

zz2j4svz2#

检查我的情况下,有我的代码工作,有所有的配置.代码在保存方面有问题,这是因为事务,我已经尝试修复。但是检查一下您的db2是否没有这个事务问题:error when doing an insert or an update with springboot and a database bd2 as400 ibm

相关问题