上一页 1 ··· 4 5 6 7 8 9 10 11 12 13 下一页
摘要: Centos7默认安装了firewalld,如果没有安装的话,可以使用 yum install firewalld firewalld-config 进行安装。 一、防火墙 1)查看防火墙的状态 firewall-cmd --state 2)开启防火墙 systemctl start firewal 阅读全文
posted @ 2019-07-02 16:15 智走 阅读(391) 评论(0) 推荐(0)
摘要: package com.example.atlogging.controller; import javax.imageio.ImageIO; import java.awt.geom.AffineTransform; import java.awt.image.AffineTransformOp; import java.awt.image.BufferedImage; import jav... 阅读全文
posted @ 2019-07-02 15:24 智走 阅读(239) 评论(0) 推荐(0)
摘要: 图片压缩java的工具 thumbnailator 一、maven 二、控制器TestThumbnails.java 阅读全文
posted @ 2019-07-02 15:16 智走 阅读(1794) 评论(0) 推荐(0)
摘要: 参照博客来源 一、介绍 Vue CLI 是一个基于 Vue.js 进行快速开发的完整系统。有三个组件: CLI:@vue/cli 全局安装的 npm 包,提供了终端里的vue命令(如:vue create 、vue serve 、vue ui 等命令) CLI 服务:@vue/cli-service 阅读全文
posted @ 2019-06-29 16:54 智走 阅读(8694) 评论(0) 推荐(0)
摘要: 模板引擎实时生效需要按:Ctrl+F9 idea热部署 官方文档(可配置的参数) Positive matches下面的代表已经匹配上的配置类 Negative matches下面的代表没有匹配上的配置类 阅读全文
posted @ 2019-06-27 15:11 智走 阅读(755) 评论(0) 推荐(0)
摘要: 一、application集成SpringBootServletInitializer(重写configure方法) 二、配置pom.xml 三、完成后进行编译打包 编译:mvn clean compile 打包:mvn clean package 阅读全文
posted @ 2019-06-27 10:16 智走 阅读(944) 评论(0) 推荐(0)
摘要: 源码下载 一、maven <!-- 引入json处理包 --> <dependency> <groupId>com.alibaba</groupId> <artifactId>fastjson</artifactId> <version>1.2.35</version> </dependency> 阅读全文
posted @ 2019-06-22 16:55 智走 阅读(2359) 评论(9) 推荐(1)
摘要: 参考博客:https://blog.csdn.net/makang110/article/details/80065927 rpm -qa | grep ssh 可以看到系统中ssh安装包 ps -ef | grep ssh查看ssh服务有没有运行,如果有,可以看到类似以下内容: root 2659 阅读全文
posted @ 2019-06-20 16:16 智走 阅读(188) 评论(0) 推荐(0)
摘要: 登录mysql之后 服务器的防火墙一定要开启3306端口 # 设置外部网络访问mysql权限 mysql> update user set host = '%' where user ='root'; # 刷新一下权限 mysql> flush privileges; # 所有外部访问者访问 (如j 阅读全文
posted @ 2019-06-15 14:29 智走 阅读(150) 评论(0) 推荐(0)
摘要: https://www.bt.cn/bbs/thread-1229-1-1.html 阅读全文
posted @ 2019-06-11 18:10 智走 阅读(129) 评论(0) 推荐(0)
上一页 1 ··· 4 5 6 7 8 9 10 11 12 13 下一页