在使用了Spring的项目中做单元测试时,以前的标准写法是这样的: 但是在高版本的Spring框架中(Spring4.2以后),@TransactionConfiguration已经标注为过时的注解,查看官方文档会发现,替代的方式为: 这里需要说明的是: (1).原来的defaultRollback属性现在由专门的注解@Rollback(新增注解)代替,其中只有一个属性就是boolean型的value,作用没变,值为true表示测试时如果涉及了数据库的操作,那么测试完成后,该操作会回滚,也就是不…
版权声明:本文为博主原创文章,未经博主允许不得转载. 前言 Android SDK 升级到 23 之后,getDrawable和getColor方法提示过时. 解决方案 getResources().getColor 替换成 ContextCompat.getColor getResources().getDrawable 替换成 ContextCompat.getDrawable 例子如下: int colorInt = getResources().getColor(R.color.colo…
-- not in 的替代写法select col from table1 where col not in(select col from table2); select col,table2.col temp_colfrom table1 left join table2 on table1.col = table2.colwhere temp_col is null; -- in 的替代写法select col from table1 where col in (select col fr…
HTML中的hover行为通常在样式中定义,利用jquery实现此效果有两种情况. 第一种是常见的针对页面中静态的元素,以改变元素样式中的border-color为例,写法如下: $(function(){ $(".graybox_img_list").hover( function(){ $(this).css("border-color","#d4d3d3");//鼠标移入事件 }, function(){ $(this).css("…
1. 简单变量 declare v_cnt NUMBER(10,0) := 0; BEGIN   SELECT COUNT(1) INTO v_cnt FROM concept.Decoction WHERE DecoctionId = -1;   IF v_cnt = 0 THEN    insert into concept.Decoction( DecoctionId, Code, Name, MnemonicCode, SpellCode, WBCode, ClinicItemId, I…
Android SDK 升級到 23 之後,getResource.getColor(R.color.color_name) 過時 使用新加入的方法 ContextCompat.getColor(context, R.color.color_name) .getDrawable()操作类似…
managedQuery替换为cursorLoader example: uri = data.getData(); String[] proj = {MediaStore.Images.Media.DATA}; Cursor cursor; Cursor cursor = managedQuery(uri, proj, null, null, null); 替换: uri = data.getData(); String[] proj = {MediaStore.Images.Media.DA…
RuntimeWarning: overflow encountered in exp in computing the logistic function 以下是sigmoid函数的标准写法,但是如果x很大或导致函数exp(-x)溢出 def logistic_function(x): # x = np.float64(x) return 1.0 / (1.0 + np.exp(-x)) 安全的替代写法如下: def logistic_function(x): return .5 * (1 +…
1.Android 如何让EditText不自动获取焦点 解决方案:找一个EditText的父级控件把EditText默认的行为截断了!设置 android:focusable="true"android:focusableInTouchMode="true"> 示例: <LinearLayout android:layout_width="match_parent" android:layout_height="match…
Model是用来创建模态窗口的,但是实际上,并没有Model指令,而只有$uibModal服务,创建模态窗口是使用$uibModal.open()方法. 创建模态窗口时,要有一个模态窗口的模板和对应的控制器,然后在open()方法的参数中指定它们.来看一个例子: <!DOCTYPE html> <html ng-app="ui.bootstrap.demo" xmlns="http://www.w3.org/1999/xhtml"> <…