摘要: 1. 提交代码到远程仓库 (1) 在项目中生成本地的git管理 git init (2) 将文件保存至缓存区 git add . (3) 将代码从缓存区保存至本地仓库 git commit -m "首次提交” (4) 将本地仓库与指定的远程仓库创建联系 git remote add origin h 阅读全文
posted @ 2021-11-13 21:53 叶森白 阅读(20) 评论(0) 推荐(0) 编辑
摘要: 1. 博客皮肤(SimplyMemory) css代码(禁用默认CSS) /* 皮肤 */ *,.Cal{padding:0}::-moz-selection{background:#807dd4;color:#FFF}::selection{background:#807dd4;color:#FF 阅读全文
posted @ 2021-11-13 16:17 叶森白 阅读(36) 评论(0) 推荐(0) 编辑
摘要: 1. python写一个小网站 from flask import Flask app = Flask(__name__) @app.route('/') def hello_world(): return 'Hello World!'。 if __name__=="__main__": app.r 阅读全文
posted @ 2021-11-08 17:33 叶森白 阅读(30) 评论(0) 推荐(0) 编辑
摘要: 1. 连接数据库 mysql -hlocalhost -uroot -p 2. 查看当前时区 show variables like'%time_zone'; 显示 SYSTEM,a56爆大奖在线娱乐当前没有设置时区 3. 设置时区 set global time_zone = '+8:00'; 4. 再次查看时区 阅读全文
posted @ 2021-10-30 11:24 叶森白 阅读(516) 评论(0) 推荐(0) 编辑
摘要: 1. 从 XML 中构建 SqlSessionFactory String resource = "org/mybatis/example/mybatis-config.xml"; InputStream inputStream = Resources.getResourceAsStream(res 阅读全文
posted @ 2021-10-26 14:36 叶森白 阅读(70) 评论(0) 推荐(0) 编辑