2019年1月8日
摘要: jar-maven java: 原文:https://blog.csdn.net/qq_33811662/article/details/80809849 阅读全文
posted @ 2019-01-08 23:55 FeeCy 阅读(2912) 评论(0) 推荐(0) 编辑
  2018年11月27日
摘要: function backRunning(){ if(plus.os.name == 'Android'){ var main = plus.android.runtimeMainActivity(); main.moveTaskToBack(false); } } 阅读全文
posted @ 2018-11-27 13:52 FeeCy 阅读(1809) 评论(0) 推荐(0) 编辑
  2018年11月23日
摘要: CentOS7使用firewalld打开关闭防火墙与端口 CentOS7使用firewalld打开关闭防火墙与端口 CentOS7使用firewalld打开关闭防火墙与端口 1、firewalld的基本使用 启动: systemctl start firewalld 关闭: systemctl st 阅读全文
posted @ 2018-11-23 14:45 FeeCy 阅读(149) 评论(0) 推荐(0) 编辑
  2018年8月29日
摘要: /** * 模拟form表单的形式 ,上传文件 以输出流的形式把文件写入到url中,然后用输入流来获取url的响应 * * @param url 请求地址 form表单url地址 * @param filePath 文件在服务器保存路径 * @return String url的响应信息返回值 * 阅读全文
posted @ 2018-08-29 16:42 FeeCy 阅读(8663) 评论(0) 推荐(0) 编辑
  2018年8月23日
摘要: 修改pom项目版本 jenkins 关联 shell命令 阅读全文
posted @ 2018-08-23 14:02 FeeCy 阅读(994) 评论(0) 推荐(1) 编辑
  2018年8月22日
摘要: mybatis时,设置Map返回,当值为空时属性也会没有 在application.properties中加入下面配置,将会解决这个问题。 #当查询数据为空时字段返回为null,不加这个查询数据为空时,字段将被隐藏mybatis.configuration.call-setters-on-nulls 阅读全文
posted @ 2018-08-22 17:25 FeeCy 阅读(2000) 评论(0) 推荐(0) 编辑
  2018年8月21日
摘要: <build> <build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> </plugin> <plugin> <g 阅读全文
posted @ 2018-08-21 11:05 FeeCy 阅读(209) 评论(0) 推荐(0) 编辑
  2018年8月17日
摘要: #etc/profile export CATALINA_HOME=/wocloud/tomcat_cluster/tomcat1/apache-tomcat-7.0.57 #查看防火墙状态 firewall-cmd --state #开放8080 firewall-cmd --permanent 阅读全文
posted @ 2018-08-17 16:13 FeeCy 阅读(658) 评论(0) 推荐(0) 编辑
摘要: 在linux上开启的tomcat使用浏览器访问不了。 主要原因在于防火墙的存在,导致的端口无法访问。 CentOS7使用firewall而不是iptables。所以解决这类问题可以通过添加firewall的端口,使其对我们需要用的端口开放。 1.使用命令 firewall-cmd --state查看 阅读全文
posted @ 2018-08-17 13:37 FeeCy 阅读(104) 评论(0) 推荐(0) 编辑
摘要: Cannot find bin/catalina.sh The file is absent or does not have execute permission This file is needed to run this program 原因: 没有权限 解决 : chmod 777 *.s 阅读全文
posted @ 2018-08-17 11:25 FeeCy 阅读(1115) 评论(0) 推荐(0) 编辑