idea模板快速生成公共代码

在平常的开发中,我们经常要写Dao,Service,Controller层,而每层都有些共用的代码,其中Dao中的公共代码如下图所示(这里使用了mybatis generator自动生成代码):

公共代码图

那么我们就可以利用idea的class和interface模板来自动生成这些公共代码,省去了复制粘贴的时间,提升效率,模板的语言是velocity。首先进入idea,按下command+,这个快捷键进入到Preferences中,然后在搜索框输入:file and code templates,如下图所示,我们聚焦到class和interface中,这里解释下这两个东西,当你创建class和interface的时候,所生成的代码就是从这里面来的:

结果图

首先是class,在代码中把下面的代码覆盖当前的代码,:

//${PACKAGE_NAME}代表包名,如:com.java.test
//${NAME}代表你输入的class名或者interface名,如:UserController
#if (${PACKAGE_NAME} && ${PACKAGE_NAME} != "")package ${PACKAGE_NAME};#end
#set($name = ${NAME})
//如果类是xxxController
#if (${NAME} && $name.endsWith("Controller"))
import com.alibaba.fastjson.JSONObject;
import com.miniprogram.common.response.Response;
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation;
import io.swagger.annotations.ApiParam;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RestController;
#end
//如果类名是xxxServiceImpl
#if (${NAME} && $name.endsWith("ServiceImpl"))
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import java.util.List;
#end
//如果类名是xxxDaoImpl
#if (${NAME} && $name.endsWith("DaoImpl"))
import com.google.common.base.Preconditions;
import com.miniprogram.common.utils.ValidationUtil;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import java.util.List;
#end
​
//这里生成作者,日期之类的信息,自己配置,默认空
#parse("File Header.java")
​
//下面是处理不同类的注解
#if (${NAME} && $name.endsWith("Controller"))
@Api(tags = "")
@RestController
@RequestMapping("")
#end
#if (${NAME} && ($name.endsWith("ServiceImpl") || $name.endsWith("DaoImpl")))
@Service("")
#end
//下面处理类的一些公共代码
public class ${NAME} #if (${NAME} && $name.endsWith("ServiceImpl"))implements $name.replace("Impl","")#end {
 //xxxController的公共代码
 #if (${NAME} && $name.endsWith("Controller"))
 @Autowired
 private xxx xxx;

 @ApiOperation(value = "xxx")
 @RequestMapping(value = "/xxx", method = RequestMethod.GET)
 public JSONObject adminLogin(@ApiParam(name = "xxx", value = "xxx") String xxx) {

 return Response.succ();
 }
 #end
 //xxxService的公共代码
 #if (${NAME} && $name.endsWith("ServiceImpl"))
 @Autowired
 private $name.replace("ServiceImpl","")Dao $name.replace("ServiceImpl","").toLowerCase()Dao;
​
 @Override
 public Long insert($name.replace("ServiceImpl","") $name.replace("ServiceImpl","").toLowerCase()) {
 return null;
 }
​
 @Override
 public List<$name.replace("ServiceImpl","")> find($name.replace("ServiceImpl","")Example example) {
 return null;
 }
​
 @Override
 public Integer update($name.replace("ServiceImpl","") $name.replace("ServiceImpl","").toLowerCase(), $name.replace("ServiceImpl","")Example example) {
 return null;
 }
​
 @Override
 public Integer count($name.replace("ServiceImpl","")Example example) {
 return null;
 }
 #end
 //xxxDaoImpl的公共代码
 #if (${NAME} && $name.endsWith("DaoImpl"))
 @Autowired
 private $name.replace("DaoImpl","")Mapper $name.replace("DaoImpl","").toLowerCase()Mapper;
​
 @Override
 public Long insert($name.replace("DaoImpl","") $name.replace("DaoImpl","").toLowerCase()) {
 Preconditions.checkNotNull($name.replace("DaoImpl","").toLowerCase());
 ValidationUtil.validate($name.replace("DaoImpl","").toLowerCase());
 ${name.replace("DaoImpl","").toLowerCase()}.checkBeforeInsert();
 ${name.replace("DaoImpl","").toLowerCase()}Mapper.insertSelective($name.replace("DaoImpl","").toLowerCase());
 return ${name.replace("DaoImpl","").toLowerCase()}.getId();
 }
​
 @Override
 public Integer update($name.replace("DaoImpl","") $name.replace("DaoImpl","").toLowerCase(), $name.replace("DaoImpl","")Example example) {
 ${name.replace("DaoImpl","").toLowerCase()}.checkBeforeUpdate();
 return ${name.replace("DaoImpl","").toLowerCase()}Mapper.updateByExampleSelective($name.replace("DaoImpl","").toLowerCase(), example);
 }
​
 @Override
 public List<$name.replace("DaoImpl","")> find($name.replace("DaoImpl","")Example example) {
 return ${name.replace("DaoImpl","").toLowerCase()}Mapper.selectByExample(example);
 }
​
 @Override
 public Integer count($name.replace("DaoImpl","")Example example) {
 return ${name.replace("DaoImpl","").toLowerCase()}Mapper.countByExample(example);
 }
 #end
}
​</pre>

下面是interface的代码,也是覆盖当前代码:

#if (${PACKAGE_NAME} && ${PACKAGE_NAME} != "")package ${PACKAGE_NAME};#end
#set($name = ${NAME})
//下面是根据是xxxService还是xxxDao来导入包
#if (${NAME} && $name.endsWith("Service"))
import org.springframework.stereotype.Service;
import java.util.List;
#end
#if (${NAME} && $name.endsWith("Dao"))
import java.util.List;
#end
​
#parse("File Header.java")
​
public interface ${NAME} {
 //xxxService的公共代码
 #if (${NAME} && $name.endsWith("Service"))

 List<$beanName> find(${beanName}Example example);
​
 Integer count(${beanName}Example example);
​
 Integer update($beanName $beanName.toLowerCase(), ${beanName}Example example);
​
 $beanName insert($beanName $beanName.toLowerCase());
 #end
 //xxxDao的公共代码
 #if (${NAME} && $name.endsWith("Dao"))
 public Long insert($beanName $beanName.toLowerCase());
​
 public Integer update($beanName $beanName.toLowerCase(), ${beanName}Example example);
​
 public List<$beanName> find(${beanName}Example example);
​
 public Integer count(${beanName}Example example);
 #end
}
​</pre>

这两个文件的功能都写在注释之中了,其中velocity的语法我没有写,有兴趣的可以去学习下,下面我们来看看效果图,毕竟好不容易写好了这些代码:

效果图

可以看到,这里很方便的就生成了一段公共的代码,各位也可以根据自己公司的逻辑自定义这些templates,只要会一点velocity语法就行。

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 202,607评论 5 476
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,047评论 2 379
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 149,496评论 0 335
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,405评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,400评论 5 364
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,479评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,883评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,535评论 0 256
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,743评论 1 295
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,544评论 2 319
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,612评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,309评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,881评论 3 306
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,891评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,136评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 42,783评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,316评论 2 342

推荐阅读更多精彩内容