2022年4月25日

mysql 合并查询,把两张或多张没有关系的表合起来查询并且排序

摘要: select * from (select 排序字段 as time ,其他字段 from 表一 union select 排序字段 as time ,其他字段 from 表二) as c order by time desc; 阅读全文

posted @ 2022-04-25 16:36 迷途行者 阅读(765) 评论(0) 推荐(0) 编辑

2022年2月4日

Cannot read properties of undefined (reading 'originalPositionFor')

摘要: 报错信息:Cannot read properties of undefined (reading 'originalPositionFor') 查询了一波没有找到答案,最后误打误撞解决了问题。 解决方法: 在你添加的那个页面中,查看有无添加,下面的那一段话,home是你路由调用的名字。 <scri 阅读全文

posted @ 2022-02-04 23:12 迷途行者 阅读(430) 评论(0) 推荐(0) 编辑

2022年2月3日

SpringFox3 Failed to start bean 'documentationPluginsBootstrapper'

摘要: 问题: Failed to start bean 'documentationPluginsBootstrapper'; nested exception is java.lang.NullPointerException: Cannot invoke "org.springframework.we 阅读全文

posted @ 2022-02-03 00:00 迷途行者 阅读(520) 评论(0) 推荐(0) 编辑

2022年2月2日

Error:(3, 32) java: 无法访问org.springframework.boot.SpringApplication

摘要: 报错信息: Error:(3, 32) java: 无法访问org.springframework.boot.SpringApplication 错误的类文件: /D:/Program/maven-repository/org/springframework/boot/spring-boot/3.0 阅读全文

posted @ 2022-02-02 16:41 迷途行者 阅读(13136) 评论(1) 推荐(1) 编辑

Error:java: 无效的源发行版: 12

摘要: 出现这个问题有多种,按照下面的方法一个个检查 1: 2. 3: 阅读全文

posted @ 2022-02-02 16:35 迷途行者 阅读(713) 评论(0) 推荐(0) 编辑

2022年1月3日

iOS pickerView

摘要: #import "ViewController.h" @interface ViewController ()<UIPickerViewDataSource,UIPickerViewDelegate> @property (nonatomic,strong)NSArray *foods; //显示水 阅读全文

posted @ 2022-01-03 10:34 迷途行者 阅读(442) 评论(0) 推荐(0) 编辑

2022年1月2日

购物车栏

摘要: <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="horizontal" andro 阅读全文

posted @ 2022-01-02 14:54 迷途行者 阅读(17) 评论(0) 推荐(0) 编辑

2021年12月11日

Android tools命名空间 总结

摘要: tools命名空间是用于在开发阶段,在IDE中预览xml界面用的,真实运行的时候,不会展示tools中设置的属性,在布局资源加载到内存时,不会被解析处理,节约资源,便于开发。 常用的属性均可使用tools命名空间。 常用布局属性 //列表预览item布局 tools:listitem="@layou 阅读全文

posted @ 2021-12-11 19:44 迷途行者 阅读(80) 评论(0) 推荐(0) 编辑

2021年11月9日

Android Studio错误:Failed to resolve: com.github.zhpanvip:BannerViewPager:latestVersion

摘要: 报错原因是找不到这个依赖 解决方法 1、添加仓库,我加粗的那两句话。 buildscript { repositories { // 以下四行添加阿里云的仓库地址,方便国内开发者下载相关插件 maven { url 'https://maven.aliyun.com/repository/jcent 阅读全文

posted @ 2021-11-09 09:12 迷途行者 阅读(1119) 评论(0) 推荐(0) 编辑

2021年11月3日

Swagger配置错误 Unable to infer base url. This is common when using dynamic servlet registra

摘要: 报错信息,因为我是已经解决了的问题,所以从网上盗了一张图 解决方法:最快捷的方法 在启动类上加上注解@EnableSwagger2 阅读全文

posted @ 2021-11-03 10:58 迷途行者 阅读(5674) 评论(0) 推荐(0) 编辑

导航