`
张洪财
  • 浏览: 267113 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论
文章列表
恶意文件路径:/usr/bin/pamdicks 恶意文件md5:5b3dd2d516a24cddaa160b736b38b6a4 描述:通常黑客入侵后会植入挖矿程序赚取收益,该类程序占用CPU等资源,影响用户正常业务,危害较大。且该程序可能还存在自删除行为,或伪装成系统程序以躲避检测。如果发现该文件不存在,请检查是否存在可疑进程、定时任务或启动项。具体详情可查看帮助:https://helpcdn.aliyun.com/knowledge_detail/41206.html
1、设置catalina.sh export JRE_HOME="/mnt/server/jdk8" export JPDA_ADDRESS="ip:8000" 2、查看机器对外8000端口已经开放; 3、eclipse 建立调试链接   在eclipse的 菜单下选择 debug configuration ,再选择“Remote Java Application”菜单,右键点击,选择“New”。 在弹出的框中,选择要断点调试的项目,定义我们的web项目放在哪里,填写他的ip以及提供的服务端口号,tomcat的这个版本是8000.最后选择 ...
一、改文件 pom.xml  project标签内下添加 <profiles> <profile> <id>dev</id> <properties> <test>11aaaaaaaaaaaa22x</test> </properties> <activation> <activeByDefault>true</activeByDefault> </activation> & ...
1、工程pom.xml 文件 <plugin> <groupId>org.apache.tomcat.maven</groupId> <artifactId>tomcat7-maven-plugin</artifactId> <version>2.2</version> <configuration>     <url>http://ip:port/manager/text</url> <username>admin</usern ...
1、 maven 引入包 <dependency> <groupId>org.flywaydb</groupId> <artifactId>flyway-core</artifactId> </dependency> 2、建文件夹 classpath  下 db/migration 3、 些sql文件 。 文件名"V版本好__名字.sql” 完事
1:pom.xml中增加 <dependency>     <groupId>org.springframework.boot</groupId>     <artifactId>spring-boot-devtools</artifactId>     <optional>true</optional>     <scope>true</scope> </dependency> 2:pom.xml中增加以下插件 <plugin>     <groupId& ...
1、建一个基本的springboot工程; 2、在pom.xml中加入 mybatis和数据库驱动包 <dependency> <groupId>org.mybatis.spring.boot</groupId> <artifactId>mybatis-spring-boot-starter</artifactId> <version>1.3.0</version> </dependency> <dependency> <groupId>mysql</g ...

jconsole

1、设置tomcat start.sh JAVA_OPTS="-Xmx1024M -Xms512M -Xss3M -Dcom.sun.management.jmxremote.port=9999 -Dcom.s un.management.jmxremote.ssl=false -Dcom.sun.management.jmxremote.authenticate=true" export JAVA_OPTS 2、设置javaSDK 中的链接密码 位置:jre/lib/management 2.1 将jmxremote.password和jmxremote.access改成 ...
一 概述     使用疱丁分词器,发现中央仓库中没有paoding-analysis这个jar包,而且如果只是单纯的将从其他处获取的jar包拷贝到本地仓库时不行的,pom文件依然报错,也无法导入到项目的classpath中。需要用maven将jar包导入到本地仓库中才可以,不能通过手动拷贝的方式。以下将介绍如何将中央仓库中没有的jar包导入到本地仓库。 二 环境 windows 7 Apache Maven 3.1.1 三 步骤 1.命令格式如下 [plain] view plain copy 在CODE上查看代码片派生到我的代码片 <span style="font-fam ...

mysql emoji支持

[client] default-character-set = utf8mb4 [mysqld] character-set-server=utf8mb4 collation-server=utf8mb4_unicode_ci [mysql] default-character-set=utf8mb4 注意: 表字段也需要相应改成utf8mb4支持 。排序集合也改
SET GLOBAL log_bin_trust_function_creators = 1; CREATE FUNCTION `GET_FIRST_PINYIN_CHAR`(PARAM VARCHAR(255)) RETURNS VARCHAR(2) CHARSET utf8 BEGIN     DECLARE V_RETURN VARCHAR(255);     DECLARE V_FIRST_CHAR VARCHAR(2);     SET V_FIRST_CHAR = UPPER(LEFT(PARAM,1));     SET V_RETURN = V_FIRST_CHAR;     I ...
网页: <SCRIPT language=JavaScript1.2> function disableselect(e){ return false} function reEnable(){return true } file://if IE4+ document.onselectstart=new Function ("return false") file://if NS6 if (window.sidebar){ document.onmousedown=disableselect document.onclick=reEnable } </SC ...
更新缓存: if (window.applicationCache.status == window.applicationCache.UPDATEREADY) { window.applicationCache.update(); } swapCache
比较好的。 收藏 http://jingyan.baidu.com/article/0bc808fc6498cd1bd585b95c.html
if(is_array($HTTP_GET_VARS))    {        foreach($HTTP_GET_VARS as $key=>$value)        {            if(is_array($HTTP_GET_VARS[$key]))            {                foreach($HTTP_GET_VARS[$key] as $key2=>$value2)                {                    $myway_Var[$key][$key2] = $value2;    ...
Global site tag (gtag.js) - Google Analytics