摘要:
@JsonInclude(JSON include.Include.NON_EMPTY) 标记是jackson包提供的json序列化方法,已经集成于Springboot2.0中,此方法的配置意在可以对实体json序列化的时候进行对应的数值处理。 将该标记放在属性上,如果该属性为空字符串或者为null 阅读全文
摘要:
首先要下载vue-router(若直接npm install vue-router --save,版本不匹配可能会报错): 使用vue2安装对应的router3版本 npm install vue-router@3 --save 使用vue3安装对应的router4版本 npm install vu 阅读全文
摘要:
查看 Nginx 1.查看Nginx安装目录 whereis nginx 2.启动Nginx:切换到Nginx的安装目录,执行如下命令: 启动命令:./nginx 停止命令:./nginx -s stop 3.查看防火墙和添加端口 查看防火墙状态 firewall-cmd --state 4.打开防 阅读全文
摘要:
在linux下安装nginx,首先需要安装 gcc-c++编译器。然后安装nginx依赖的pcre和zlib包。最后安装nginx即可。 1.先安装gcc-c++编译器 yum install gcc-c++ yum install -y openssl openssl-devel 2.再安装pcr 阅读全文
摘要:
pom文件里添加: <resources> <resource> <directory>src/main/java</directory> <includes> <include>**/*.yml</include> <include>**/*.properties</include> <inclu 阅读全文
摘要:
报错代码: <build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> </plugin> <plugin> <gro 阅读全文
摘要:
项目结构:前端端口8001,访问后端网关端口88,网关配置好跨域问题后,再将请求转发到相应的业务接口。但是配置好了之后,前端访问88端口返回404 网关的application.yml spring: cloud: nacos: discovery: server-addr: 124.221.226 阅读全文
摘要:
问题场景 这里是项目本身是vue写的H5项目,同时也需要小程序端,小程序端直接采用了H5内嵌的方式,这样其中的扫码功能就需要调用微信的jssdk。 JS-SDK说明文档:https://developers.weixin.qq.com/doc/offiaccount/OA_Web_Apps/JS-S 阅读全文
摘要:
前言在使用微服务的时候,可以用nacos作为注册中心。 可以在官方文档中进入Nacos Discovery Example查看。 SpringCloud Alibaba官方文档: https://github.com/alibaba/spring-cloud-alibaba/blob/2.2.x/R 阅读全文
摘要:
前言这两天打算自己学习用写个项目,就去腾讯云申请了个服务器,记录一下刚申请的服务器安装docker,并使用docker安装redis和mysql。 一、安装docker可以参考docker官方文档,这里我们安装centos版。docker官方文档地址:https://docs.docker.com/ 阅读全文