上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 21 下一页
摘要: 1. pox文件 2.application.yml 3.config配置 zCoasNetConfig zForm6Config 和1.5.7 区别: 1. yml 要规范命名,不能有大写字符 2.不通数据源下的实体类,必须单独分开来放, 不然是读取不到第二个数据源的表的, 我被坑了半天。 3. 阅读全文
posted @ 2019-05-15 16:08 qukaige 阅读(836) 评论(0) 推荐(0)
摘要: jpa: database-platform: org.hibernate.dialect.SQLServerDialect hibernate: naming: physical-strategy: org.hibernate.boot.model.naming.PhysicalNamingStrategyStandardImpl 阅读全文
posted @ 2019-05-15 10:44 qukaige 阅读(1193) 评论(0) 推荐(0)
摘要: 最近使用Flask开发web后台,修改页面后总是需要重启,最终找到这个方法 阅读全文
posted @ 2019-05-10 10:13 qukaige 阅读(4562) 评论(2) 推荐(0)
摘要: 1.下载JavaServer Wrapper 2.在本地创建一个目录并创建文件夹 3.复制wraper 中src/bin目录下的App.bat.in,UninstallApp-NT.bat.in,InstallApp-NT.bat.in,复制wraper/bin 下的wrapper.exe 》 都放 阅读全文
posted @ 2019-04-04 16:05 qukaige 阅读(1387) 评论(0) 推荐(0)
摘要: from sqlalchemy import create_engine, MetaData from sqlalchemy.ext.automap import automap_base from sqlalchemy.orm import Session class SqlAlchemyDB(object): def __init__(self, _dbname, _tables... 阅读全文
posted @ 2019-03-25 09:08 qukaige 阅读(235) 评论(0) 推荐(0)
摘要: import sched import time, arrow def timedTask(): scheduler = sched.scheduler(time.time, time.sleep) scheduler.enter(10, 1, task) scheduler.run() # 每10秒执行一次 def task(): print(arrow.... 阅读全文
posted @ 2019-03-13 10:23 qukaige 阅读(159) 评论(0) 推荐(0)
摘要: 1.jar包依赖 2.application.yml 3.config配置类 4.util工具类 5.RedisUtil.java 6.测试controller 阅读全文
posted @ 2019-03-05 14:59 qukaige 阅读(349) 评论(0) 推荐(0)
摘要: 第一种: 第二种: 阅读全文
posted @ 2019-03-04 12:27 qukaige 阅读(1469) 评论(0) 推荐(0)
摘要: springboot 项目使用 1. 在resources 目录创建 logback.xml 2.复制 阅读全文
posted @ 2019-03-03 12:43 qukaige 阅读(203) 评论(0) 推荐(0)
摘要: 导入导出 导出镜像 docker save -o <保存路径> <镜像名称:标签> docker save -o ./python37.tar base-python:v1 导入镜像 docker load -i ./python37.tar 导出容器 docker export <容器名ID> > 阅读全文
posted @ 2019-02-18 08:55 qukaige 阅读(131) 评论(0) 推荐(0)
上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 21 下一页