上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 66 下一页
摘要: 1:build.gradle 添加依赖包 2:测试代码 (1)FwjlVo.java (2)FwjlDao.java (3)FwjlService.java (4)FwjlServiceImpl.java 3:配置文件 (1)application.properties (2)FwjlMapper. 阅读全文
posted @ 2018-08-25 14:36 yshy 阅读(442) 评论(0) 推荐(0)
摘要: 1:安装NFS (1)安装 yum install nfs-utils rpcbind (2)启动rpcbind服务 systemctl restart rpcbind.service 查看服务状态 systemctl status rpcbind.service 查看rpc lsof -i :11 阅读全文
posted @ 2018-08-22 20:29 yshy 阅读(6902) 评论(0) 推荐(0)
摘要: 通过调用sendAndReceive方法,实现发送消息之后可以同步接收返回信息。 在消息处理端,有可能存在处理比较耗时的操作,为了防止客户端长时间没有接收到处理结果信息,可以通过: this.jmsQueueTemplate.setReceiveTimeout(3000); 设置超时时间,如果超过此 阅读全文
posted @ 2018-07-30 16:29 yshy 阅读(3440) 评论(0) 推荐(0)
摘要: 解决方法参考: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 阅读(1161) 评论(0) 推荐(0)
摘要: 1:修改web.xml配置文件增加以下监听配置 2:在部署到Weblogic之后,控制台一直提示 是由于没有指定index页面造成的,可以通过新建一个Index Controller解决 阅读全文
posted @ 2018-07-26 19:45 yshy 阅读(293) 评论(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 阅读(171) 评论(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 阅读(3008) 评论(0) 推荐(0)
摘要: 注意:count可以通过后台计算组装,前台也可以通过JS计算。 阅读全文
posted @ 2018-07-06 07:36 yshy 阅读(431) 评论(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 阅读(259) 评论(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 阅读(769) 评论(0) 推荐(0)
上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 66 下一页