上一页 1 ··· 4 5 6 7 8
摘要: 到ngrok官网下载ngrok安装包 解压获取ngrok可执行文件 双击ngrok.exe打开命令行窗口 打开本地工程,并设置访问端口为8080(端口可以任意设置)。这里打开了一个spring boot工程,并启动。 回到刚才打开的ngrok命令行窗口,输入指令:ngrok http 8080 命令 阅读全文
posted @ 2019-12-19 18:04 求知若渴的蜗牛 阅读(2) 评论(0) 推荐(0)
摘要: 第一步使用idea连上数据库 第二步选择需要创建实体的表 选择这个创建的实体是没有注解的 需要注解的话需要在 创建这样一个文件 文件的内容 import com.intellij.database.model.DasTable import com.intellij.database.model.O 阅读全文
posted @ 2019-12-19 18:04 求知若渴的蜗牛 阅读(394) 评论(0) 推荐(0)
摘要: SELECT * FROM (SELECT T.*, ROWNUM RN FROM (select t.jh, t.depth, t.vdepth, t.rt1, t.rt2, t.rt3, t.gr, t.ac, t.den, t.cnl from LWD t ) T WHERE ROWNUM < 阅读全文
posted @ 2019-12-19 18:04 求知若渴的蜗牛 阅读(306) 评论(0) 推荐(0)
摘要: springboot整合mybatis创建逆向工程,快速的创建pojo实体,dao接口,mapper xml文件 第一步添加依赖 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/ 阅读全文
posted @ 2019-12-19 18:04 求知若渴的蜗牛 阅读(445) 评论(0) 推荐(0)
摘要: <select id="getJhList" resultType="string"> select t.jh from jcsxx t where ceil(sysdate- to_date(substr(t.ssgxsj, 0,19),'yyyy/mm/dd hh24:mi:ss')) <![C 阅读全文
posted @ 2019-12-19 18:04 求知若渴的蜗牛 阅读(247) 评论(0) 推荐(0)
摘要: 解析的xml <?xml version="1.0" encoding="UTF-8"?> <bookstore> <book id="1"> <name>Java</name> <author>Bruce Eckel</author> <year>2014</year> <price>102</p 阅读全文
posted @ 2019-12-19 18:04 求知若渴的蜗牛 阅读(860) 评论(0) 推荐(0)
上一页 1 ··· 4 5 6 7 8