摘要:
1:安装apache2 sudo apt install apache2 2:修改端口号 sudo vi /etc/apache2/ports.conf 3:修改跟目录 在 /etc/apache2/sites-available 中修改 000-default.conf 中的DocumentRoo 阅读全文
摘要:
public static JSONArray convertToJSON(ResultSet resultSet) throws Exception { JSONArray jsonArray = new JSONArray(); while (resultSet.next()) { int total_rows... 阅读全文
摘要:
增加以下配置: 阅读全文
摘要:
例如有以下格式数据: 现在需要将每一行的10位长度的数字串后面增加等号“=” 阅读全文
摘要:
1:查出锁定表的信息SELECT s.sid, s.serial#, s.username, s.schemaname, s.osuser, s.process, s.machine,s.terminal, s.logon_time, l.typeFROM v$session s, v$lock l 阅读全文
摘要:
1:修改Tomcat默认端口号,将默认的8080修改为8081 apache-tomcat-8.5.31\conf\server.xml 2:配置管理台用户权限信息,注意username与password apache-tomcat-8.5.31\conf\tomcat-users.xml 3:配置 阅读全文
摘要:
1:添加依赖 2:应用案例 阅读全文
摘要:
1. 下载mysql的repo源 $ wget http://repo.mysql.com/mysql-community-release-el7-5.noarch.rpm 2. 安装mysql-community-release-el7-5.noarch.rpm包 $ sudo rpm -ivh 阅读全文
摘要:
1:build.gradle 添加依赖包 2:测试代码 (1)FwjlVo.java (2)FwjlDao.java (3)FwjlService.java (4)FwjlServiceImpl.java 3:配置文件 (1)application.properties (2)FwjlMapper. 阅读全文
摘要:
1:安装NFS (1)安装 yum install nfs-utils rpcbind (2)启动rpcbind服务 systemctl restart rpcbind.service 查看服务状态 systemctl status rpcbind.service 查看rpc lsof -i :11 阅读全文