01 2017 档案

摘要:一:List<UserVo> list(@Param("nickName") String nickName); <select id="list" resultMap="ResultMap" parameterType="java.lang.String"> select <include ref 阅读全文
posted @ 2017-01-20 15:13 esther-qing 阅读(2178) 评论(0) 推荐(0)
摘要:一:pom.xml <!-- java邮件 --> <dependency> <groupId>javax.mail</groupId> <artifactId>mail</artifactId> <version>1.4.7</version> </dependency> 二:mail.prope 阅读全文
posted @ 2017-01-16 09:35 esther-qing 阅读(2099) 评论(0) 推荐(0)
摘要:update t1 set age=t2.age,name=t2.name from t2 where t1.id=t2.id; update t_company_infoset score = b.score, tech_score = b.tech_score, project_score = 阅读全文
posted @ 2017-01-11 14:31 esther-qing 阅读(370) 评论(0) 推荐(0)
摘要:默认 IntelliJ IDEA 是没有开启自动 import 包的功能。 勾选标注 1 选项,IntelliJ IDEA 将在我们书写代码的时候自动帮我们优化导入的包,比如自动去掉一些没有用到的包。 勾选标注 2 选项,IntelliJ IDEA 将在我们书写代码的时候自动帮我们导入需要用到的包。 阅读全文
posted @ 2017-01-09 10:14 esther-qing 阅读(783) 评论(0) 推荐(0)