eclipse中创建新类时创建日志实例
我有两个 impl 包(包含 service/dao 方法的实现) 我希望在这个包中创建任何新类时,
默认情况下将以下行添加到类中(日志实例化):
Log log = LogFactory.getLog(getClass());
另一件事是,我希望在 dao 的 impl 包 中添加未实现的方法时添加 spring 注释关于
@Transactionl
如何在 eclipse 中完成这些事情的任何想法(我正在使用 Eclipse Helios 3.6)。
i have two impl packages (contains implementation for service/dao methods)
and i want when creating any new class in this package
the following line gets added to class by default (log instantiation):
Log log = LogFactory.getLog(getClass());
another thing is that i want when adding unimplemented method in the impl package for dao is to add the spring annotation
@Transactionl
any ideas how to accomplish those things in eclipse (i am using Eclipse Helios 3.6).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为不可能为给定的包提供特定的模板。
但有一些注意事项:
getClass()
调用初始化日志,因此将使用实际的子类名称。I don't think it's possible to have a specific template for a given package.
Some notes, though :
getClass()
, the actual subclass name would be used.