上一页 1 2 3 4 5 6 7 8 ··· 24 下一页
摘要: server { listen 443 ssl; server_name **.com; #证书绑定的网站域名 ssl_certificate **.pem; #证书公钥 ssl_certificate_key **.key; #证书私钥 ssl_session_timeout 5m; ssl_ci 阅读全文
posted @ 2021-07-22 13:43 litf 阅读(5593) 评论(0) 推荐(0)
摘要: <view class="tabTit box"> <view class="flex1{{!tab[index]?' active':''}}" wx:for="{{tabTxt}}" wx:key="type" data-index="{{index}}" bindtap="filterTab" 阅读全文
posted @ 2021-07-16 08:30 litf 阅读(96) 评论(0) 推荐(0)
摘要: 1.首先将SpringBoot项目打包成JAR包,通过xFTP或者其他工具将JAR包上传到Linux上,然后执行如下命令启动项目: java -jar xxx.jar 该命令启动jar,一旦Xshell窗口关闭,JAR就停止运行了.如果想让项目在后台一直运行,通过如下命令启动JAR: nohup j 阅读全文
posted @ 2021-07-08 09:45 litf 阅读(672) 评论(0) 推荐(0)
摘要: //查询所有 List<PmsProduct> list1 = pmsProductService.list(new QueryWrapper<PmsProduct>()); 1 //根据条件查询 eq List<PmsProduct> list2 = pmsProductService.list( 阅读全文
posted @ 2021-06-22 13:20 litf 阅读(452) 评论(0) 推荐(0)
摘要: <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-aop</artifactId> </dependency> */ @Aspect @Component @Slf4j p 阅读全文
posted @ 2021-06-21 18:19 litf 阅读(726) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 7 8 ··· 24 下一页