摘要:
jar-maven java: 原文:https://blog.csdn.net/qq_33811662/article/details/80809849 阅读全文
摘要:
function backRunning(){ if(plus.os.name == 'Android'){ var main = plus.android.runtimeMainActivity(); main.moveTaskToBack(false); } } 阅读全文
摘要:
CentOS7使用firewalld打开关闭防火墙与端口 CentOS7使用firewalld打开关闭防火墙与端口 CentOS7使用firewalld打开关闭防火墙与端口 1、firewalld的基本使用 启动: systemctl start firewalld 关闭: systemctl st 阅读全文
摘要:
/** * 模拟form表单的形式 ,上传文件 以输出流的形式把文件写入到url中,然后用输入流来获取url的响应 * * @param url 请求地址 form表单url地址 * @param filePath 文件在服务器保存路径 * @return String url的响应信息返回值 * 阅读全文
摘要:
修改pom项目版本 jenkins 关联 shell命令 阅读全文
摘要:
mybatis时,设置Map返回,当值为空时属性也会没有 在application.properties中加入下面配置,将会解决这个问题。 #当查询数据为空时字段返回为null,不加这个查询数据为空时,字段将被隐藏mybatis.configuration.call-setters-on-nulls 阅读全文
摘要:
<build> <build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> </plugin> <plugin> <g 阅读全文
摘要:
#etc/profile export CATALINA_HOME=/wocloud/tomcat_cluster/tomcat1/apache-tomcat-7.0.57 #查看防火墙状态 firewall-cmd --state #开放8080 firewall-cmd --permanent 阅读全文
摘要:
在linux上开启的tomcat使用浏览器访问不了。 主要原因在于防火墙的存在,导致的端口无法访问。 CentOS7使用firewall而不是iptables。所以解决这类问题可以通过添加firewall的端口,使其对我们需要用的端口开放。 1.使用命令 firewall-cmd --state查看 阅读全文
摘要:
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 阅读全文