上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 65 下一页
摘要: 解决方法参考:http://www.jfinal.com/feedback/3350 由于以下代码 调用的dao()方法,此时修改为: 问题解决。 官方文档中有具体的说明:http://www.jfinal.com/doc/5-3 特别注意:User中定义的 public static final 阅读全文
posted @ 2018-07-27 14:27 yshy 阅读(1129) 评论(0) 推荐(0) 编辑
摘要: 1:修改web.xml配置文件增加以下监听配置 2:在部署到Weblogic之后,控制台一直提示 是由于没有指定index页面造成的,可以通过新建一个Index Controller解决 阅读全文
posted @ 2018-07-26 19:45 yshy 阅读(282) 评论(0) 推荐(0) 编辑
摘要: package main import( "net/http" ) func main(){ http.Handle("/", http.FileServer(http.Dir("D:/web/AmazeUI-2.7.2/"))) http.ListenAndServe(":8080", nil) } 阅读全文
posted @ 2018-07-23 20:01 yshy 阅读(162) 评论(0) 推荐(0) 编辑
摘要: 1:安装 go get -u github.com/kardianos/govendor 2:配置环境变量 需要把 $GOPATH/bin/ 加到 PATH 中 D:\my_workspace\go_ws\bin 3:在$GOPATH/src目录下新建测试工程go_test,然后再此目录下新建src 阅读全文
posted @ 2018-07-20 18:20 yshy 阅读(3000) 评论(0) 推荐(0) 编辑
摘要: 注意:count可以通过后台计算组装,前台也可以通过JS计算。 阅读全文
posted @ 2018-07-06 07:36 yshy 阅读(414) 评论(0) 推荐(0) 编辑
摘要: 1:修改tomcat-users.xml配置文件 2:修改webapps/manager/META-INF与webapps/host-manager/META-INF下 的配置文件 把127修改为\d+ 3:重启Tomcat服务器。 阅读全文
posted @ 2018-06-20 10:43 yshy 阅读(248) 评论(0) 推荐(0) 编辑
摘要: 1:data/data.go 2:result/result.go 3:user/user_data.go 4:user/user_web.go 5:main.go 阅读全文
posted @ 2018-06-18 16:34 yshy 阅读(758) 评论(0) 推荐(0) 编辑
摘要: 1、Query、Exec(1)Exec(update、insert、delete等无结果集返回的操作)调用完后会自动释放连接;(2)Query(返回sql.Rows)则不会释放连接,调用完后仍然占有连接,它将连接的所属权转移给了sql.Rows,所以需要手动调用close归还连接。 2、sql.Op 阅读全文
posted @ 2018-06-18 11:18 yshy 阅读(172) 评论(0) 推荐(0) 编辑
摘要: 1:data/data.go 2:post/post.go 3:main.go 阅读全文
posted @ 2018-06-17 11:40 yshy 阅读(481) 评论(0) 推荐(0) 编辑
摘要: 1:首先创建存储过程 2:定义任务 JOB 每天凌晨执行一次。 对应脚本 阅读全文
posted @ 2018-06-12 16:52 yshy 阅读(302) 评论(0) 推荐(0) 编辑
上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 65 下一页