1.@SuppressWarnings注解--作用:用于抑制编译器产生警告信息。
跟它类似的还有三个:???@Transactional、@Component、@Autowired
2.if (null != bean.getFilerecords())这种形式为何不是
if ( bean.getFilerecords()!=null)呢有何求别??
3./**
* 缓存常用的SimpleDateFormat;
*/
private static final HashMap<String, SimpleDateFormat> formatMap = new HashMap<String, SimpleDateFormat>();
为何不是/**
private static final 【Map】<String, SimpleDateFormat> formatMap = new HashMap<String, SimpleDateFormat>();???
4.for里的内容分别指
List<FormBorrowsl> sls = formBorrowslMapper.listAll(view1);
if (sls != null && sls.size() > 0) {
for (FormBorrowsl sl : sls) {