12 2022 档案
发表于 2022-12-28 08:21阅读次数:39评论次数:0
摘要:1.内网穿透 星空 https://frp.starryfrp.com/auth/login/?r_u=http%3A%2F%2Ffrp.starryfrp.com%2Fconsole%3F 樱花 https://www.natfrp.com/#intro
阅读全文 »
发表于 2022-12-26 14:58阅读次数:70评论次数:0
摘要:# 应用名称 spring: servlet: multipart: max-request-size: 500MB #用来控制文件上传大小的限制 max-file-size: 500MB #用来指定服务端最大文件大小 profiles: active: local #用来执行不同环境yml文件,如
阅读全文 »
发表于 2022-12-20 08:03阅读次数:41评论次数:0
摘要:#1.回顾spring整合mybatis 1.引入依赖 spring相关 mysql相关 mysql驱动 druid数据源 mybatis相关的 mybatis核心jar mybatis和spring框架整合 2.书写配置 a.开启注解扫描 @SpringBootApplication @Compo
阅读全文 »
发表于 2022-12-19 15:49阅读次数:14评论次数:0
摘要:echo "# test" >> README.md git init git add README.md git commit -m "first commit" git branch -M main git remote add origin https://github.com/blanset
阅读全文 »
发表于 2022-12-10 21:34阅读次数:547评论次数:0
摘要:##@configuration: 这个注解用来代替spring容器的xml配置文件。具体就是配置文件中的标签。被@configuration标注的类,他里边所有的被@bean标注的方法都会被执行,这些方法返回的对象会注入到容器中,对象的id(bean id)就是方法名。 另外注意,被@config
阅读全文 »