logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

主机访问不了虚拟机nginx

在虚拟机安装完nginx后,此时虚拟机能够访问nginx的80端口,但是主机无法访问虚拟机的nginx,可能是端口没有开放。此时需要关闭防火墙firewalldsystemctl stop firewalld.service#停止firewallsystemctl disable firewalld.service#禁止firewall开机启动如果同时配置了iptables,也需要关闭停止防火墙:

#nginx#linux
EasyExcel获取多个sheet的excel数据

①获取ExcelReaderpublic Result dataImport(InputStream is) throws IOException {//根据输入流创建ExcelReaderbyte[] buffer = new byte[is.available()];is.read(buffer);InputStream wrapperInputStream = new ByteArrayIn

#java#spring
Vue动态绑定radio,checkbox的选中状态

<input type="radio"/>首先是基础的radio按钮,在很多情况下我们要根据条件来判断这个按钮是否被选中,所以就需要动态设置它的选中状态,即绑定checked属性:<input type="radio" :checked="表达式"/>在这里,选中状态并不是看checked的属性值,而是看有没有checked这个属性,即使属性值为空或true或false或任

FastDFS整合Nginx模块

配置安装fastdfs-nginx-module模块1.下载fastdfs-nginx-module#cd /usr/local/src#wget -O fastdfs-nginx-module-1.20.tar.gzhttps://codeload.github.com/happyfish100/fastdfs-nginx-module/tar.gz/V1.202.解压fastdfs-nginx

#linux#nginx#centos
mybatis mapper.xml关于<>等特殊字符报错问题

因为mapper.xml文件格式的原因,<>等特殊字符都无法直接使用,需要 转义后才能正常使用,如下表:

#xml#mysql#mybatis
SpringBoot Dao层常用注解

@Repository:作用在DAO层,将该类依赖注入,其他层就可以调用该mapper,如果启动类添加了@MapperScan注解,就不需要再写这个注解。@Data:注解在实体类上,为该实体类提供getter、setter方法,提供equals方法以及hashcode方法。@Accessors:@TableName@Accessors@EqualsAndHashCode@TableId@NotEm

#java#后端#spring
javax.websocket.server.ServerContainer not available

当springboot项目集成了websocket时,此时单元测试类启动后就会报:javax.websocket.server.ServerContainer not available这是因为springbootTest启动时不会启动服务器,所以websocket就会报错,这个时候需要在注解中添加webEnvironment,给wevsocket提供测试环境:@SpringBootTest(we

#websocket#spring boot#单元测试
到底了