public interface MyAnno extends java.lang.annotation.Annotation {} 自定义注解 // 空注解 public @interface Mobai...使用自定义注解格式: @注解名(属性名=属性值, 属性名=属性值) 需要注意的是:注解的属性可以有默认值,当使用注解时不赋值就使用默认值,赋值就按照赋的值 定义注解 public @interface MoBai...{ String value(); } 使用注解 @MoBai("abc") public class Demo11 { @MoBai(value = "abc") public...{ } 使用注解 @MoBai public class Demo12 { @MoBai private String a; @MoBai public Demo12...() { } @MoBai public static void main(String[] args) { @MoBai int x = 10
测试sql -- 创建数据库 CREATE DATABASE mobai; -- 查看所有数据库 SHOW DATABASES; -- 指定使用的数据库 USE mobai; -- 删除数据库 DROP...DATABASE mobai; -- 查看保留策略 SHOW retention policies ON mobai; -- 创建保留策略rp-one-year CREATE retention policy..."rp-one-year" ON "mobai" duration 365d replication 1 -- 更改保留策略rp-one-year为mobai的默认策略 ALTER retention...创建表 -- 在数据库mobai中,插入数据时,自动创建了表devops-idc-sz。...use mobai; ===================================================== > use mobai; Using database mobai >
} 测试运行 唯一地址:http://localhost:8080/swagger-ui.html 配置Swagger信息 修改SwaagerConfig package com.mobai.swagger.config...annotations.EnableSwagger2; import java.util.ArrayList; /** * Software:IntelliJ IDEA 2020.1 x64 * Author: MoBai.../ 配置扫描接口 .select() .apis(RequestHandlerSelectors.basePackage("com.mobai.swagger.controller.../ 配置扫描接口 .select() .apis(RequestHandlerSelectors.basePackage("com.mobai.swagger.controller...org.springframework.web.bind.annotation.RestController; /** * Software:IntelliJ IDEA 2020.1 x64 * Author: MoBai
groupId> commons-io 2.6 package com.mobai...; /** * Software:IntelliJ IDEA 2018.2.4 x64 * Author: MoBai·杰 * Date: 2020/6/15 11:34 * ClassName...; /** * Software:IntelliJ IDEA 2018.2.4 x64 * Author: MoBai·杰 * Date: 2020/6/15 11:51 * ClassName...package com.mobai.state; /** * Software:IntelliJ IDEA 2018.2.4 x64 * Author: MoBai·杰 * Date: 2020...线程三大不安全案例 买票案例 package com.mobai.syn; /** * Software:IntelliJ IDEA 2018.2.4 x64 * Author: MoBai·杰
; import com.mobai.annotation.Tag; import lombok.Data; import org.influxdb.annotation.Measurement;.../** * @Author: MoBai·杰 * Software:IntelliJ IDEA 2020.2.3 x64 * Date: 2021-01-20 上午 9:31 * ClassName...; import com.mobai.annotation.Tag; import com.mobai.dao.InfluxDao; import com.mobai.model.property.InfluxProperty...; import com.mobai.utils.ReflectUtils; import lombok.extern.slf4j.Slf4j; import org.influxdb.InfluxDB...; import com.mobai.dao.InfluxDao; import com.mobai.model.pojo.Location; import lombok.extern.slf4j.Slf4j
单例模式的几种实现 第一种 /** * Software:IntelliJ IDEA 2018.2.4 x64 * Author: MoBai·杰 * Date: 2020/5/12 9:28...System.out.println(m1.equals(m2)); } } 第二种: /** * Software:IntelliJ IDEA 2018.2.4 x64 * Author: MoBai...} } 这种其实和第一种实现方式是一样的,区别在于使用了静态代码块初始化 第三种: /** * Software:IntelliJ IDEA 2018.2.4 x64 * Author: MoBai...).start(); } } } 第四种: /** * Software:IntelliJ IDEA 2018.2.4 x64 * Author: MoBai...).start(); } } } 第五种: /** * Software:IntelliJ IDEA 2018.2.4 x64 * Author: MoBai
首页信息 配置Swagger信息 修改SwaagerConfig package com.mobai.swagger.config; import org.springframework.context.annotation.Bean...annotations.EnableSwagger2; import java.util.ArrayList; /** * Software:IntelliJ IDEA 2020.1 x64 * Author: MoBai...// 配置扫描接口 .select() .apis(RequestHandlerSelectors.basePackage("com.mobai.swagger.controller...; import com.mobai.swagger.pojo.User; import io.swagger.annotations.ApiOperation; import io.swagger.annotations.ApiParam...org.springframework.web.bind.annotation.RestController; /** * Software:IntelliJ IDEA 2020.1 x64 * Author: MoBai
上传你的代码到码云 在git定位到你的文件夹内,初始化你的文件夹, 如下操作 # 1.定位到你的文件夹 Auser·杰@Auser▒▒▒▒ MINGW64 /f $ cd mobai_images.gitee.io.../ # 2.初始化你的仓库,取消你的隐藏文件夹属性,你会发现你的文件夹内多了一个.GIT文件夹,以后有空在和大家聊一聊git Auser·杰@Auser▒▒▒▒ MINGW64 /f/mobai_images.gitee.io...(master) $ git add . # 3.填写本次提交注释,建议填写,养成良好的习惯 Auser·杰@Auser▒▒▒▒ MINGW64 /f/mobai_images.gitee.io (master...这是我的图床地址,感兴趣的小伙伴可以去看一下,因为是给大家做教程,所以就没有优化代码,访问速度可能会比较慢,大家谅解一下 https://wang_lianjie.gitee.io/mobai_images.gitee.io
java.text.SimpleDateFormat; import java.util.Date; /** * Software:IntelliJ IDEA 2018.2.4 x64 * Author: MoBai...import java.util.Date; import java.util.Scanner; /** * Software:IntelliJ IDEA 2018.2.4 x64 * Author: MoBai...k++; } } } 计算你出生了多少天 /** * Software:IntelliJ IDEA 2018.2.4 x64 * Author: MoBai...} } 计算指定年份2月有多少天 import java.util.Calendar; /** * Software:IntelliJ IDEA 2018.2.4 x64 * Author: MoBai...使用SimpleDateFormat类把2020-05-05转换为2020年05月05日 /** * Software:IntelliJ IDEA 2018.2.4 x64 * Author: MoBai
测试运行 唯一地址:http://localhost:8080/swagger-ui.html image.png 配置Swagger信息 修改SwaagerConfig package com.mobai.swagger.config...annotations.EnableSwagger2; import java.util.ArrayList; /** * Software:IntelliJ IDEA 2020.1 x64 * Author: MoBai...; import com.mobai.swagger.pojo.User; import io.swagger.annotations.ApiOperation; import io.swagger.annotations.ApiParam...org.springframework.web.bind.annotation.RestController; /** * Software:IntelliJ IDEA 2020.1 x64 * Author: MoBai...http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 com.mobai
*/ private String price; /** * 商品图片 */ private String pic; } 服务层接口 import com.mobai.pojo.GoodsDo...goods.setPrice("3.5"); goodsList.add(goods); return goodsList; } } 控制器接口 import com.mobai.pojo.GoodsDo...; import com.mobai.service.GoodsService; import org.springframework.beans.factory.annotation.Autowired...全局配置类 配置实例如下: package com.mobai.config; import org.springframework.context.annotation.Bean; import org.springframework.web.servlet.config.annotation.CorsRegistry
插入视频 复制一段视频链接,博客插入以下代码 <iframe height=498 width=100% src="https://mobaijun.gitee.io/<em>mobai</em>_blog.gitee.io
Windows 参数释义: C:\Users\mobai>telnet /?...服务器无法访问可以使用 telnet [root@mobai ~]# telnet json.im Trying 150.109.147.28... telnet: connect to address...150.109.147.28: Connection refused 这种就是端口没有打开或者telnet服务没有安装,需要在防火墙里面开启23端口访问或者安装telnet [root@mobai ~
今天开放多个端口的时候就想起来,脚本就是为了解决那些重复性的工作 脚本内容如下: [root@mobai mobai]# cat tcp.sh # 端口列表 firewall-cmd --zone=public
Integer age; private String email; } 创建dao接口 /** * Software:IntelliJ IDEA 2020.1 x64 * Author: MoBai...Integer version; 新建config包,创建MyBatisPlusConfig配置类 /** * Software:IntelliJ IDEA 2020.1 x64 * Author: MoBai...wrapper2() { QueryWrapper wrapper = new QueryWrapper(); wrapper.eq("name", "MoBai...生成的代码输出路径 gc.setOutputDir(projectPath + "/src/main/java"); // 生成作者信息 gc.setAuthor("MoBai...PackageConfig(); // 项目名称 pc.setModuleName("cxdz"); // 项目路径 pc.setParent("com.mobai
[GitHub.com](F:\IdeaProject\blog_mobai\source_posts\ https:\mobaijun.gitee.io\mobai_images.gitee.io\img...[github.global.ssl.fastly.net](F:\IdeaProject\blog_mobai\source_posts\ https:\mobaijun.gitee.io\mobai_images.gitee.io
可以使用空格和缩进增强语句的可读性 MySQL数据库的SQL语句不区分大小写,关键字建议大写 三种注释 单行注释(– 注释内容) 多行注释(/* 注释内容 */) 注释内容(# 注释内容/MySQL特有) -- 查询mobai...表 SELECT * FROM mobai; DDL操作数据库 创建数据库 CREATE DATABASE IF NOT EXISTS '数据库名'; 判断是否存在相同数据库并创建
操作系统:CentOS Linux 7 (Core) Docker : version 20.10.9 git : version 2.30.1[出现问题的版本是1.8.3] 异常信息: [root@mobai
包括MOBAI、OFO、小蓝车等企业,从目前的角度来看,MOBAI的运营数据更有价值,其他运营存在较大问题。
public static void main(String[] args) { Collection coll = new ArrayList(); coll.add("mobai...main(String[] args) { Collection list = new ArrayList(); list.add("mobai
领取专属 10元无门槛券
手把手带您无忧上云