摘要:
实体类 @Data public class ListImageTextVO { private String id; private Integer itype; private String title;private List<String> picUrls; //list集合 } xml文件 阅读全文
摘要:
首先在 resources 目录下自定义一个配置文件 如sms.properties #短信平台相关 mall.sms.regionId=ch-hangzhou mall.sms.accessKeyId=********* mall.sms.accessKeySecret=********** ma 阅读全文
摘要:
原文链接:https://blog.csdn.net/zll_0405/article/details/81208606 firewall-cmd --state 1, 开启防火墙,启动firewall:systemctl start firewalld.service 设置开机自启: system 阅读全文
摘要:
当在controller 中使用@Valid+ BindResult 和在参数实体中使用@NotNull,@NotEmpty等注解进行参数验证, 最后通过接口调用却正常进入方法体内没有进行参数验证的情况, 原因在于 1:BindResult封装了参数验证抛出的异常,也就是说异常被抛出但异常被捕获到了 阅读全文
摘要:
/*** 这里只是简单记录当上传图片不是放在tomcat其他服务器中时,只是放在磁盘中* 便可以这样配置,在项目启动后可以访问到磁盘中的资源。*/@Configuration public class SystemConfigurer implements WebMvcConfigurer { @V 阅读全文
摘要:
在pom文件中添加插件 <!-- tomcat7 --> <plugin> <groupId>org.apache.tomcat.maven</groupId> <artifactId>tomcat7-maven-plugin</artifactId> <version>2.2</version> 阅读全文
摘要:
启动类JeewxBootApplication 添加继承SpringBootServletInitializer重写实现 @SpringBootApplication public class JeewxBootApplication extends SpringBootServletInitial 阅读全文
摘要:
server { listen 80; server_name localhost; #charset koi8-r; #access_log logs/host.access.log main; # 将80端口的链接转发到8080端口 location /guohang { proxy_pass 阅读全文
摘要:
最新安装步骤移步:https://www.cnblogs.com/yunian139/p/13468465.html 以下步骤作废,参考安装移步: https://www.cnblogs.com/yunian139/p/13468465.html 下载tar包: wget https://dev.m 阅读全文
摘要:
2.redis在linux下的安装2.1 安装#安装C语言环境(已经安装可跳过)yum install gcc-c++#下载压缩包wget http://download.redis.io/releases/redis-4.0.1.tar.gz#解压tar -zxvf redis-4.0.1.tar 阅读全文