Java模板使用

原来没用过java模板,现在看到了,保留下代码,感觉很好。具体代码如下:

privateString getMsgNote(Integer actId,Integer sign) {
          String result ="";
          String dir ="SMSTemplate/";
          String vmPath =null;
          try{
              StringproMapingPath = "/SMSTemplate/sms_mapping.properties" ;
              Properties properties =newProperties();
              InputStream in = getClass().getResourceAsStream(proMapingPath);
              properties.load(in);
              String fileName = (String) properties.get(String.valueOf(actId));
              vmPath = dir + fileName;
              VelocityEngine ve =newVelocityEngine();
               ve.setProperty(RuntimeConstants.RESOURCE_LOADER,"classpath");
              ve.setProperty(Velocity.INPUT_ENCODING,"UTF-8");
              ve.setProperty(Velocity.OUTPUT_ENCODING,"UTF-8");
               ve.setProperty("classpath.resource.loader.class",
                        ClasspathResourceLoader.class.getName());
              ve.init();
              VelocityContext context =newVelocityContext();
              context.put("sign", sign);
              Template t = ve.getTemplate(vmPath);
              StringWriter writer =newStringWriter();
              t.merge(context, writer);
              result = writer.toString();
              in.close();
          }catch(Exception e) {
              logger.error(e.getMessage());
          }

          logger.info(result);
          returnresult;
     }
项目中的配置路径如下:


文件内容如下:


总配置文件如下:

虽然别的方式也可以实现,但是感觉用java提供的模板还是很不错的。


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值