12 2017 档案
摘要:public class CentralizedPUDMatchServicePacTest { PacMatchService pacMatchService; @Before public void setUp(){ pacMatchService = SpringTestHelper.get(
阅读全文
摘要:右键改包 》build path 》Configure bulid path 按 add Folder 搞定。。。。。
阅读全文
摘要:解决方法: 只要把Java compiler building Buil path problems incomplete build path 和 Circular dependencies改成warning就可以了。
阅读全文
摘要:1、action中return returnSuccess() 作用是什么?
阅读全文
摘要:<plugin> <groupId>org.apache.tomcat.maven</groupId> <artifactId>tomcat6-maven-plugin</artifactId> <version>2.0-beta-1</version> <configuration> <uriEn
阅读全文
摘要:需要设置:
阅读全文
摘要:1、eclipse中Maven项目的pom文件报错: 2、解决方法: 直接在pom.xml中加上一个依赖项目: <dependency> <groupId>jdk.tools</groupId> <artifactId>jdk.tools</artifactId> <version>1.7</ver
阅读全文
摘要:1、New一个Environment变量: Name:global.config.path Value:D:\490993\config;
阅读全文
摘要:1、驱动是什么? 简单来说,电脑分3部分,操作系统+驱动+硬件。 显卡驱动就是用来驱动显卡的程序;声卡驱动就是用来驱动声卡的程序。解释的更准确点:驱动程序即添加到操作系统中的一小块代码,其中包含有关硬件设备的信息。 有了此信息,计算机就可以与设备进行通信。驱动程序是硬件厂商根据操作系统编写的配置文件
阅读全文
摘要:1、Mybatis中数据库语句的选择 使用: <choose> <when test="relationType=='L'"> <choose> <when test="pe=='EX"> = c.code </when> <otherwise > =c.ex </otherwise> </choo
阅读全文
摘要:1、下面的数据库语法中1,0代表什么意思? SELECT R.DEPT_CODE AS CODE, 1 AS INSIDE, 0 AS DISTANCE FROM T_MAP_EXP_DEPT_REGION R WHERE R.ACTIVE='Y' AND R.Region_Audit_State=
阅读全文
摘要:语法是这样: ObjectMapper mapper = new ObjectMapper(); Map resultMap=null; resultMap = mapper.readValue(in, Map.class);
阅读全文
摘要:获得系统时间: Timestamp requestTime = new Timestamp(System.currentTimeMillis());
阅读全文
摘要:1、<![cdata[ ]]>介绍 <![cdata[ 内容 ]]>是一种xml语法,在CDATA标记中的信息被解析器原封不动地传给应用程序,并且不解析该段信息中的任何控制标记。 2、<![cdata[ ]]>在mybatis中使用 <where> <if test=" phone != null
阅读全文
摘要:Orcal语法 Merge into 1、语法介绍 MERGE语句是Oracle9i新增的语法,用来合并UPDATE和INSERT语句。通过MERGE语句,根据一张表或子查询的连接条件对另外一张表进行查询,连接条件匹配上的进行UPDATE,无法匹配的执行INSERT。 优点:这个语法仅需要一次全表扫
阅读全文