摘要: <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-mail</artifactId></dependency>接口类 public interface IMailServi 阅读全文
posted @ 2022-03-25 16:41 爱上-睡觉 阅读(40) 评论(0) 推荐(0) 编辑
摘要: LEFT JOIN (select patent_no,legal_flag from t_legal_status as b where not exists(select 1 from t_legal_status where patent_no= b.patent_noand b.public 阅读全文
posted @ 2021-12-17 10:56 爱上-睡觉 阅读(13) 评论(0) 推荐(0) 编辑
摘要: <!-- 打包配置--><build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <executions> <exe 阅读全文
posted @ 2021-11-19 16:59 爱上-睡觉 阅读(42) 评论(0) 推荐(0) 编辑
摘要: public static void main(String[] args) { String pattern = "(?<=\">)(.*?)(?=\\</base:Paragraphs)"; Pattern r = Pattern.compile(pattern); Matcher m =r.m 阅读全文
posted @ 2021-11-01 17:01 爱上-睡觉 阅读(33) 评论(0) 推荐(0) 编辑
摘要: server: port: 9927spring: application: name: gta-apigateway cloud: nacos: discovery: server-addr: 10.10.25.18:8848 # nacos服务地址 namespace: a02ac5d9-a07 阅读全文
posted @ 2021-05-13 15:20 爱上-睡觉 阅读(390) 评论(0) 推荐(0) 编辑
摘要: public enum CourseExtendEnum { CLASSNAMEERR("没有名称!"), CLASSCODEERR("没有该序号!"); private String text; private CourseExtendEnum(String text) { this.text = 阅读全文
posted @ 2021-05-12 15:51 爱上-睡觉 阅读(62) 评论(0) 推荐(0) 编辑
摘要: 下面只写出我的正确运行的集成环境, 1、版本要正确,不然报的错你都不知道为什么 <dependencyManagement> <dependencies> <!-- 导入Spring Cloud的依赖管理 --> <dependency> <groupId>org.springframework.c 阅读全文
posted @ 2021-01-20 13:15 爱上-睡觉 阅读(887) 评论(0) 推荐(0) 编辑
摘要: public static string GetPyChar(string c) { if (string.IsNullOrEmpty(c)) { return ""; } byte[] array = new byte[2]; array = Encoding.Default.GetBytes(c 阅读全文
posted @ 2020-05-18 13:35 爱上-睡觉 阅读(134) 评论(0) 推荐(0) 编辑
摘要: 1、下载Erlang:http://www.erlang.org/downloads/19.2 2、下载Windows版RabbitMq:http://www.rabbitmq.com/releases/rabbitmq-server/v3.6.6/rabbitmq-server-3.6.6.exe 阅读全文
posted @ 2020-04-24 10:47 爱上-睡觉 阅读(83) 评论(0) 推荐(0) 编辑
摘要: #定义LOG输出级别log4j.rootLogger=INFO,Console,File#定义日志输出目的地为控制台log4j.appender.Console=org.apache.log4j.ConsoleAppenderlog4j.appender.Console.Target=System. 阅读全文
posted @ 2020-04-23 14:38 爱上-睡觉 阅读(83) 评论(0) 推荐(0) 编辑