本文整理汇总了Java中org.apache.velocity.exception.VelocityException.printStackTrace方法的典型用法代码示例。如果您正苦于以下问题:Java VelocityException.printStackTrace方法的具体用法?Java VelocityException.printStackTrace怎么用?Java VelocityException.printStackTrace使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.apache.velocity.exception.VelocityException
的用法示例。
在下文中一共展示了VelocityException.printStackTrace方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: sendMessage
import org.apache.velocity.exception.VelocityException; //导入方法依赖的package包/类
/**
* Send a simple message based on a Velocity template.
* @param msg the message to populate
* @param templateName the Velocity template to use (relative to classpath)
* @param model a map containing key/value pairs
*/
public void sendMessage(SimpleMailMessage msg, String templateName, Map model) {
String result = null;
try {
result =
VelocityEngineUtils.mergeTemplateIntoString(velocityEngine,
templateName, "UTF-8", model);
} catch (VelocityException e) {
e.printStackTrace();
log.error(e.getMessage());
}
msg.setText(result);
send(msg);
}
示例2: sendMessage
import org.apache.velocity.exception.VelocityException; //导入方法依赖的package包/类
/**
* @param msg
* @param templateName
* @param model
*/
@Override
public void sendMessage( SimpleMailMessage msg, String templateName, Map<String, Object> model ) {
String result = null;
try {
result = VelocityEngineUtils.mergeTemplateIntoString( velocityEngine, templateName,
RuntimeConstants.ENCODING_DEFAULT, model );
} catch ( VelocityException e ) {
e.printStackTrace();
}
msg.setText( result );
send( msg );
}