摘要: pyside6-uic hello.ui > ui.py 这里还要个问题要解决,我们使用命令pyside6-uic转换出来的ui.py文件其保存格式不是utf-8,因此我们要用vscode右下角选择编码将其保存为utf-8才可以,否则后面加载该文件会报错: 阅读全文
posted @ 2023-02-13 15:44 超级爱度假 阅读(324) 评论(0) 推荐(0)
摘要: 起步 Springboot框架已经整合了logback依赖,因此不再需要加入依赖。 关于日志系统的配置文件,官方推荐我们使用logback-spring.xml 而不是 logback.xml 因此我们在resources(classpath路径)下创建一个名为logback-spring.xml的 阅读全文
posted @ 2022-03-28 19:38 超级爱度假 阅读(518) 评论(0) 推荐(0)
摘要: 导入失败时,新建一个.d.ts文件,内容可以为空也可以写内容,随便举个例子 declare module 'echarts' { const echarts: any export default echarts } 或者试试另一解决方案如下链接 别人的解决方案 阅读全文
posted @ 2022-02-18 15:16 超级爱度假 阅读(1779) 评论(0) 推荐(0)
摘要: CORS全局配置-实现WebMvcConfigurer 新建跨域配置类:CorsConfig.java: import org.springframework.context.annotation.Bean; import org.springframework.context.annotation 阅读全文
posted @ 2022-02-18 11:39 超级爱度假 阅读(274) 评论(0) 推荐(0)
摘要: vue-router 提供的导航守卫主要用来通过跳转或取消的方式守卫导航。 全局的前置守卫beforeEach是在导航触发时会被回调的:它有两个参数:to:即将进入的路由Route对象;from:即将离开的路由Route对象;它有返回值:false:取消当前导航;不返回或者undefined:进行默 阅读全文
posted @ 2022-02-18 08:52 超级爱度假 阅读(820) 评论(0) 推荐(0)
摘要: 1.在项目的POM.XML文件的build标签中,增加如下内容: <plugin> <groupId>org.mybatis.generator</groupId> <artifactId>mybatis-generator-maven-plugin</artifactId> <version>1. 阅读全文
posted @ 2021-12-20 19:26 超级爱度假 阅读(313) 评论(0) 推荐(0)
摘要: druid配置和常用操作 基于SpringBoot的项目加入druid连接池 <!--阿里连接池druid:1.2.8-2021年--> <dependency> <groupId>com.alibaba</groupId> <artifactId>druid</artifactId> <versi 阅读全文
posted @ 2021-12-17 23:54 超级爱度假 阅读(661) 评论(0) 推荐(0)
摘要: pagehelper/pagehelper-spring-boot: pagehelper-spring-boot (github.com) pagehelper/pagehelper-spring-boot: pagehelper-spring-boot (github.com) 阅读全文
posted @ 2021-12-17 23:41 超级爱度假 阅读(36) 评论(0) 推荐(0)
摘要: Maven 提供了全局配置文件 settings.xml 针对所有项目有效,位置是在maven安装目录下的 conf 目录里。 在 settings.xml 下找到 <mirrors> 节点,并替换成阿里云仓库镜像配置 <mirror> <id>aliyunmaven</id> <mirrorOf> 阅读全文
posted @ 2021-12-17 23:02 超级爱度假 阅读(1715) 评论(0) 推荐(0)
摘要: 一、发现问题建立maven项目后,pom.xml在显示红叉,鼠标放上去,显示Execution default-testResources of goal org.apache.maven.plugins:maven-resources-plugin:3.2.0错误。 二、原因分析缺少maven-r 阅读全文
posted @ 2021-12-17 12:40 超级爱度假 阅读(2863) 评论(0) 推荐(1)