play war e:/codes/cn.ngmc.frontend -o f:/backup_ngmc/20160614frontend_001Dev; 即:play war 被打包的项目路径 -o 编译后的文件路径
1.打印执行的sql语句
在application.conf里面添加:
hibernate.use_sql_comments=true
hibernate.use_sql_comments=true
db.default.logStatements=true
logger.org.hibernate=DEBUG
2.获取url信息
Request.current.get(). headers
获取请求的参数:request .params
3.jdk不同版本引发的验证错误:
报的错所指的方法其实并没有问题 ,有的jdk不会发生这么的情况,是某一些jdk1.7版本的问题
产生Error的原因
经过查询是因为 Any tool that modifies bytecode in a version 51 classfile must be sure to update the stackmap information to be consistent with the bytecode in order to pass verification. JDK7 引入版本为51的字节码规范,使用了严格的类型检查器,任何工具修改了字节码的,都需要更新stackmap,但是jws修改了字节码,而没有更新 stackmap。