摘要: java视频:https://www.bilibili.com/video/BV1Kb411W75N?p=577SpringBoot、SpringMVC、分布式锁(数据库锁、Redis锁、ZK、JVM)1、编译命令:javac hello.java 运行命令:java hello 文档化命令:jav 阅读全文
posted @ 2021-03-15 14:14 邢帅杰 阅读(96) 评论(0) 推荐(0) 编辑
 
摘要: 干净卸载mysql:https://blog.csdn.net/cxy_summer/article/details/70142322mysql 解压缩版安装说明:https://jingyan.baidu.com/article/f3ad7d0ffc061a09c3345bf0.html 1.ms 阅读全文
posted @ 2017-03-13 16:10 邢帅杰 阅读(202) 评论(0) 推荐(0) 编辑
  2024年4月25日
摘要: 1.执行完insert语句,返回自增列最新的值。两种方式 <insert id="create" parameterType="com.xcg.webapp.model.entity.Production" useGeneratedKeys="true" keyProperty="productio 阅读全文
posted @ 2024-04-25 16:07 邢帅杰 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 如果实体类的属性名称和数据库中的字段名称不一致,比如属性productName,数据库字段product_name。这时候mybatis查询返回的结果需要跟实体类自动映射 就需要配置一下映射关系。如果列名和属性名一样,那就不用配置映射关系了,直接使用resultType指定类就行。如果不想输入全类名 阅读全文
posted @ 2024-04-25 11:18 邢帅杰 阅读(1) 评论(0) 推荐(0) 编辑
  2024年4月24日
摘要: nextTick(),是将回调函数延迟在下一次dom更新数据后调用,简单的理解是:当数据更新了,在dom中渲染后,自动执行该函数。 that.$nextTick(function(){ console.log(that.$refs.txtEmail.innerText); //输出:修改后的值 }) 阅读全文
posted @ 2024-04-24 18:17 邢帅杰 阅读(1) 评论(0) 推荐(0) 编辑
  2024年4月23日
摘要: 来源:https://www.jb51.net/program/287517rew.htmMyBatis处理MySQL字段类型date与datetime1) DATETIME显示格式:yyyy-MM-dd HH:mm:ss时间范围:[ '1000-01-01 00:00:00'到'9999-12-3 阅读全文
posted @ 2024-04-23 17:36 邢帅杰 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 参考:https://blog.csdn.net/AIJXB/article/details/128602818pom.xml <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-start 阅读全文
posted @ 2024-04-23 11:08 邢帅杰 阅读(2) 评论(0) 推荐(0) 编辑
  2024年4月11日
摘要: 新版本的jdk没有jre目录,需要在jdk的安装目录执行命令bin\jlink.exe --module-path jmods --add-modules java.desktop --output jre文件夹需要放开编辑权限才行。 阅读全文
posted @ 2024-04-11 15:09 邢帅杰 阅读(1) 评论(0) 推荐(0) 编辑
  2024年4月10日
摘要: 来源:https://www.saoniuhuo.com/question/detail-2593977.html方式1 MainPage.xaml对应的cs文件中 namespace XCGMauiApp { public partial class MainPage : ContentPage 阅读全文
posted @ 2024-04-10 18:01 邢帅杰 阅读(11) 评论(0) 推荐(0) 编辑
摘要: 看吧:https://cn.vuejs.org/guide/typescript/composition-api.html为组件的 props 标注类型 <script setup lang="ts"> const props = defineProps({ foo: { type: String, 阅读全文
posted @ 2024-04-10 17:33 邢帅杰 阅读(1) 评论(0) 推荐(0) 编辑
  2024年4月9日
摘要: html <input type="file" id="fileUploadEle" ref="fileUploadEle" style="display:none;" accept=".png, .jpg" @change="selectFile" /> <label for="fileUploa 阅读全文
posted @ 2024-04-09 17:12 邢帅杰 阅读(4) 评论(0) 推荐(0) 编辑
摘要: .net maui blazor路由和导航,传参,刷新参考:https://learn.microsoft.com/zh-cn/aspnet/core/blazor/fundamentals/routing?view=aspnetcore-8.0页面:TestPage1.razor:@page "/ 阅读全文
posted @ 2024-04-09 10:48 邢帅杰 阅读(17) 评论(0) 推荐(0) 编辑