摘要:
由于工具类中方法一般都是静态的,所以要求该属性也要是静态的(Service)。 但是由于Spring/SpringBoot正常情况下不能支持注入静态属性(会报空指针异常)。 主要原因在于:Spring的依赖注入实际上是依赖于Set方法进行注入值的,Spring是基于对象层面的依赖注入,而静态属性/静 阅读全文
摘要:
阅读全文
摘要:
阅读全文
摘要:
查看oracle表空间数据文件位置 select t1.name,t2.name from v$tablespace t1,v$datafile t2 where t1.ts = t2.ts ; 创建表空间 create tablespace BTS datafile '/home/oradata/ 阅读全文
摘要:
JSP页面token类引入: Form表单添加隐藏token: JAVA代码token校验: Token.java:https://files.cnblogs.com/files/chonghaojie/Token.zip 阅读全文
摘要:
阅读全文
摘要:
window.location.href = "help06042Report.cpt&__showtoolbar__=false&__bypagesize__=false&beginTime="+beginTime4+"&op=export&format=excel&__filename__="+ 阅读全文
摘要:
jdbc.driver=com.mysql.jdbc.Driver jdbc.url=jdbc:mysql://localhost:3306/dev_zxhy_mes?useOldAliasMetadataBehavior=true&useUnicode=true&characterEncoding 阅读全文