摘要:
1.返回插入IDa.xml insert into KLC_QUESTION (QUESTION_TITLE,QUESTION_DESC,STATUS,MODIFIER,CREATOR,GMT_CREATE,GMT_MODIFY,ANONYMOUS) values (#questionTitle#,#questionDesc#,1,#modifier#,#creator#,now(),now(),#anonymous#) b. java 类操作 public int insert(KlcQuestion klcQuestion) { return (I...
阅读全文
摘要:
1.自定义类实现 UncaughtExceptionHandler ,重写uncaughtException。import java.lang.Thread.UncaughtExceptionHandler;public class myCustomExceptionHandler implements UncaughtExceptionHandler{ private UncaughtExceptionHandler defaultUEH; public myCustomExceptionHandler() { this.defaultUEH = Threa...
阅读全文