摘要: Here is a list of keywords in the Java programming language. You cannot use any of the following as identifiers in your programs. The keywords const a 阅读全文
posted @ 2019-04-28 11:10 老干妈不太辣 阅读(92) 评论(0) 推荐(0) 编辑
摘要: Spring 事务属性一共有四种:传播行为、隔离级别、只读和事务超时 a) 传播行为定义了被调用方法的事务边界。 传播行为 意义 PROPERGATION_MANDATORY 表示方法必须运行在一个事务中,如果当前事务不存在,就抛出异常 PROPAGATION_NESTED 表示如果当前事务存在,则 阅读全文
posted @ 2019-04-28 11:01 老干妈不太辣 阅读(151) 评论(0) 推荐(0) 编辑
摘要: final关键字 1、 final关键字可以用于成员变量、本地变量、方法以及类。 2、 final成员变量必须在声明的时候初始化或者在构造器中初始化,否则就会报编译错误。 3、 你不能够对final变量再次赋值。 4、 本地变量必须在声明时赋值。 5、 在匿名类中所有变量都必须是final变量。 6 阅读全文
posted @ 2019-04-28 10:38 老干妈不太辣 阅读(132) 评论(0) 推荐(0) 编辑