上一页 1 ··· 18 19 20 21 22 23 24 25 26 ··· 44 下一页
摘要: @JsonIgnore:排除json序列化,将它标注在属性上不会进行json序列化 @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",locale = "zh"):进行日期格式化 @JsonInclude(JsonInclude.Include.NON_NULL 阅读全文
posted @ 2023-01-15 21:56 Mr_sven 阅读(17) 评论(0) 推荐(0) 编辑
摘要: 引入依赖 <!-- junit5 spring-test--> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test 阅读全文
posted @ 2023-01-03 21:39 Mr_sven 阅读(47) 评论(0) 推荐(0) 编辑
摘要: 引入lombok依赖 <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <version>1.18.24</version> <scope>provided</scope> </depe 阅读全文
posted @ 2023-01-02 21:01 Mr_sven 阅读(32) 评论(0) 推荐(0) 编辑
摘要: 应用程序由以下命令启动时,配置文件加载顺序 优先级从高到低 阅读全文
posted @ 2022-12-28 17:00 Mr_sven 阅读(45) 评论(0) 推荐(0) 编辑
摘要: 创建父工程 pom.xml <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-in 阅读全文
posted @ 2022-12-17 17:03 Mr_sven 阅读(11) 评论(0) 推荐(0) 编辑
摘要: async:表示函数是异步执行, await:表示当前函数先执行,执行完之后,再执行其他函数 await用于等待一个promise对象,它只能在async函数中使用. async函数,会返回一个Promise对象,可以用.then调用async函数中return的结果 async function 阅读全文
posted @ 2022-12-02 22:48 Mr_sven 阅读(55) 评论(0) 推荐(0) 编辑
摘要: 路径配置 当springboot中设置项目访问路径 server.servlet.context-path=/demo vue项目中vue.config.js需配置publicPath module.exports = { transpileDependencies: true, configure 阅读全文
posted @ 2022-11-30 21:49 Mr_sven 阅读(300) 评论(0) 推荐(0) 编辑
摘要: vue.config.js文件中 module.exports = { configureWebpack: { resolve: { alias: { 'assets': '@/assets', 'common': '@/common', 'components': '@/components', 阅读全文
posted @ 2022-11-29 11:28 Mr_sven 阅读(80) 评论(0) 推荐(0) 编辑
摘要: 1、首页:查看本地是否有.ssh文件找到 Git Bash 打开后 运行 cd ~/.ssh 查看是否有该文件如果本地有ssh密钥的话会有id_rsa、id_rsa.pub、known_hosts等文件。如果没有的话运行上步骤命令就会找不到文件的提示2、也可以删除ssh复制并运行 rm -rf ~/ 阅读全文
posted @ 2022-11-28 22:36 Mr_sven 阅读(1658) 评论(0) 推荐(0) 编辑
摘要: 通过vuecli3创建项目 vue create mall 新建远程仓库 终端中执行命令 git remote add origin git@github.com:xxx/mall.git git push -u origin main 阅读全文
posted @ 2022-11-28 22:34 Mr_sven 阅读(27) 评论(0) 推荐(0) 编辑
上一页 1 ··· 18 19 20 21 22 23 24 25 26 ··· 44 下一页