后端 第6页
如何通过Oracle E-BUSINESS SUITE发布Web Service-Ddmit

如何通过Oracle E-BUSINESS SUITE发布Web Service

需求:将PL/SQL的程序包通过Oracle E-BUSINESS SUITE(EBS)发布为WEB SERVICE(SOAP),然后通过axis2客户端调用WEB SERVICE(SOAP),从而执行相应的存储过程。 具体通过Oracle E-BUSINESS SUIT...
CENTOS搭建FTP服务器(vsftpd安装及配置)-Ddmit

CENTOS搭建FTP服务器(vsftpd安装及配置)

1.环境 CentOS Linux release 7.6.1810 (Core); vsftpd: version 3.0.2; 2.安装 vsftpd root@ssr ~]# yum install -y vsftpd 3.启动 vsftpd [root@ssr ~]# systemctl start vsftpd 启动后,可...
ddmit的头像-DdmitDdmit6年前
026591
MyEclipse:String literal is not properly closed by a double-quote-Ddmit

MyEclipse:String literal is not properly closed by a double-quote

初学java,经常遇到这个问题”String literal is not properly closed by a double-quote eclipse”,错误的具体表现形式就是中文乱码,解决方法之一就是更改工程的编码方式。首先选择工程,右...
ddmit的头像-DdmitDdmit6年前
018071
Apple账号登录提示:Please sign in with an app-specific password问题解决-Ddmit

Apple账号登录提示:Please sign in with an app-specific password问题解决

错误信息 使用Xcode或cydia impactor登录苹果账号时提示: file:provision.cpp;line:173;what: Please sign in with an app-specific password. You can create one at appleid.apple.com. 这是...
ddmit的头像-DdmitDdmit5年前
024611
Docker启动容器报错:port is already allocated解决办法-Ddmit

Docker启动容器报错:port is already allocated解决办法

环境信息 docker: 19.03.6; CENTOS 7搬瓦工 ; 错误原因 服务器重启后,docker启动nginx等容器报错: Failed to allocate and map port 443-443: Bind for 0.0.0.0:443 failed: port is alread...
ddmit的头像-DdmitDdmit5年前
027291
Java将文件名转为小写-Ddmit

Java将文件名转为小写

代码: /** * 列出目录下所有的文件&文件夹 * * @param dirName 路径名称 * @return * @author 四个空格-https://www.4spaces.org */ public static void listAllFiles(String dirName) { /...
ddmit的头像-DdmitDdmit5年前
013451
VMware Workstation 12 Pro安装CentOS图文教程-Ddmit

VMware Workstation 12 Pro安装CentOS图文教程

本文记录了VMware Workstation 12 Pro安装CentOs的整个过程,具体如下: VMware Workstation 12; CENTOS 6.4 ; 创建虚拟机 1.首先安装好VMware Workstation 12,具体安装过程此处略过; 2.启...
ddmit的头像-DdmitDdmit6年前
019361
好恶心的阿里云主机,不忍吐槽-Ddmit

好恶心的阿里云主机,不忍吐槽

阿里自己的网站内容从来不跑在阿里云主机上也就罢了,上个月我购买了一个阿里云主机,感觉速度还可以,于是把自己的个人博客搬到了阿里云主机,本来打算以后博客就在阿里云呆着了,可是好景不长...
ddmit的头像-DdmitDdmit6年前
017201
Java中将字符串转为驼峰格式-Ddmit

Java中将字符串转为驼峰格式

方式1 使用CaseUtils 对Java字符串进行转换为驼峰格式: CaseUtils.toCamelCase(null, false) = null CaseUtils.toCamelCase('', false, *) = '' CaseUtils.toCamelCase(*, false, null) = * Ca...
ddmit的头像-DdmitDdmit5年前
062031
Google Gson报错:java.lang.ClassCastException: com.google.gson.internal.LinkedTreeMap cannot be cast to解决办法-Ddmit

Google Gson报错:java.lang.ClassCastException: com.google.gson.internal.LinkedTreeMap cannot be cast to解决办法

Google Gson报错:java.lang.ClassCastException: com.google.gson.internal.LinkedTreeMap cannot be cast to解决办法 错误信息: java.lang.ClassCastException: com.google.gson.internal.Li...
ddmit的头像-DdmitDdmit6年前
041121