1年1月1日
Play!中如何用module组织多个相关项目 FunctionTest测试中如何取得Session值 Xml域名空间(WS.(url).get().getXml()无法取得带命名空间Document对象)识别问题 在Play!中如何实现类似过滤器的功能 如何同时使用http和https……
阅读全文
1年1月1日
Scala 课堂 Scala Tutorial: Getting Started with Scala Play2开发的CMS系统……
阅读全文
1年1月1日
Assert failed: c customEval figwheel-bridge.js:75 <unknown> figwheel-bridge.js:88 <unknown> JSTimers.js:47 引入的控件不可用? Uncaugh [object object] 可能是db.cljs里的检查项不合格。 Spec check failed: {:cljs.spec/problems {[] {:pred map?, :val nil, :via [:xumu-app.db/app-db], :in []}}} 传入参数为nil,不符合db.cljs中spec的检查项。 undefined is not an object (evaluating 'nextState.routes.forEach') NavigationScenesReducer NavigationScenesReducer.js:116 NavigationTransitioner NavigationTransitioner.js:92 可能是sub.cljs加载错误,修改reg-sub为reg-sub-raw即可。 console.error: "Error rendering component (in env.android.main.reloader >……
阅读全文
1年1月1日
今天工作时需要设计一下程序的架构,即建模工作,这件事用纯文本似乎较难完成(本人是纯文本的 funs)。用手绘软件(Gimp, SketchBookExpress)也不太方便,失量图软件(Inkscape,LibreOfficeDraw)也要从画方框开始也不方便,毕竟是模块化的图形,还……
阅读全文
1年1月1日
以下是初入门时的姿势,现在完全不用这么麻烦,直接用dot-vimrc即可。 在 Mac OS X 上使用 Vim 真的是很享受,所以决定要用好这个工具,以下记录下本人的最佳实践: 首先面临一个选择,是用 MacVim 还是 终端(Terminate)?我的选择是终端,不过我进一步选择了 iTerm2,功能强大些,界面漂亮些……
阅读全文
1年1月1日
相关文档见:官方ticket任务#823 Yes, this is correct. In the .getXML function the namespace ness is not set. 是的,有这个问题。在.getXML方法中允许命名空间(namespace)没有设置。 This line should be changed from: 这一行应该从这样: :::java DocumentBuilder builder = DocumentBuilderFactory.newInstance().newDocumentBuilder(); to: 变成: :::java DocumentBuilderFactory xmlFact = DocumentBuilderFactory.newInstance(); xmlFact.setNamespace(true); DocumentBuilder builder = xmlFact.newDocumentBuilder(); The same problem exists in the XML lib in the getDocument function: 同样的问题在XML的包里的getDo……
阅读全文
1年1月1日
相关文档见:官方ticket任务#823 Yes, this is correct. In the .getXML function the namespace ness is not set. 是的,有这个问题。在.getXML方法中允许命名空间(namespace)没有设置。 This line should be changed from: 这一行应该从这样: :::java DocumentBuilder builder = DocumentBuilderFactory.newInstance().newDocumentBuilder(); to: 变成: :::java DocumentBuilderFactory xmlFact = DocumentBuilderFactory.newInstance(); xmlFact.setNamespace(true); DocumentBuilder builder = xmlFact.newDocumentBuilder(); The same problem exists in the XML lib in the getDocument function: 同样的问题在XML的包里的getDo……
阅读全文
1年1月1日
Created 星期六 25 二月 2012 先看一段Playframework热情交流群(QQG:168013302)里的聊天记录: 木马@学生 09:59:13 实现个功能..要调用service接口的方法, 方法又在他的impl里面实现, impl里面又是调用dao层接口, dao层接口又是在dao的impl里面实现, dao的i……
阅读全文
1年1月1日
今天看了陈皓的《从Code Review 谈如何做技术》一文,笔记一些有启发的重点如下: 首先要清晰思考 很多时候,人思考问题不清楚,很大一部分原因是因为把很多问题混为一谈。 Code Review 的好处: 主要是让代码可以更好地组织起来,更易读,有更高的维护性,同时可以达到知识共享,找到bug只是其中的副产品。 代码的……
阅读全文
1年1月1日
如果是单个Controller要实现过滤,只需写一个public static 的方法,加上@Before注解即可达到执行所有action前先执行这个方法的目的。 如果想实现全局即整个站点的action都被过滤,就需要写个BaseController(名字随便起,如SuperController……
阅读全文