摘要:
请求服务器报 504 Geteway Time-out 原因:Nginx设置时长限制,超过10分钟,会自动断开。如果要修改,同时修改框中的两处 备注:也有可能是某一台节点宕机了,要先节点服务器是否正常 阅读全文
摘要:
1 <!--修改一个代办信息--> 2 <update id="updateBoard" parameterType="com.spring.board.entity.Board"> 3 update web_board 4 <set> 5 <if test="title != null">titl 阅读全文
摘要:
前端代码 1 <div class="custom-control custom-checkbox " style="float: right;"> 2 <input type="checkbox" class="custom-control-input" name="remFlag" id="re 阅读全文
摘要:
1 package com.webservice.client.config; 2 3 import org.apache.cxf.jaxws.endpoint.dynamic.JaxWsDynamicClientFactory; 4 import javax.xml.namespace.QName 阅读全文
摘要:
1 /** 2 * 使用 HMAC-SHA1 签名方法对对encryptText进行签名 3 * 4 * @param encryptText 被签名的字符串 5 * @param encryptKey 密钥 6 * @return 返回签名后的Base64串 7 * @throws Excepti 阅读全文
摘要:
Base64URLSafeString 1 /** 2 * 将内容进行Base64加密 3 * 4 * @param content 5 * @return 6 * @throws UnsupportedEncodingException 7 */ 8 public static String Ba 阅读全文
摘要:
找到listener.ora文件,将SID名改为连接的数据库的SID,保存 在服务力找到这个,然后重启下即可 连接成功 阅读全文
摘要:
maven依赖 1 <!--log4j--> 2 <dependency> 3 <groupId>org.springframework.boot</groupId> 4 <artifactId>spring-boot-starter</artifactId> 5 <exclusions> 6 <e 阅读全文
摘要:
Springboot整合Mybatis,连接多个数据库,其实和mybatis连接单个数据库基本一致,只是在对应包下面引入对应的数据源即可,下面是maven依赖,需要注意的是mysql使用的版本 1 <dependencies> 2 <dependency> 3 <groupId>com.oracle 阅读全文
摘要:
1 /** 2 * 获取当前网络ip 3 * 4 * @param request 5 * @return 6 */ 7 @RequestMapping("getIpAddress") 8 public static String getIpAddress(HttpServletRequest re 阅读全文