寻求有用的Eclipse Java代码模板
你可以通过以下方式在Eclipse中创建各种Java代码模板:
窗口>首选项> Java>编辑器>模板
例如
sysout 扩展为:
System.out.println(${word_selection}${});${cursor}
你可以通过输入激活此sysout
之后CTRL+SPACE
你当前使用哪些有用的Java代码模板?包括它的名称和描述,以及它为什么很棒。
我正在寻找模板的原始/新颖用法,而不是内置的现有功能。
- Create Log4J logger
- Get swt color from display
- Syncexec - Eclipse Framework
- Singleton Pattern/Enum Singleton Generation
- Readfile
- Const
- Traceout
- Format String
- Comment Code Review
- String format
- Try Finally Lock
- Message Format i18n and log
- Equalsbuilder
- Hashcodebuilder
- Spring Object Injection
- Create FileOutputStream
回答:
以下代码模板将创建记录器并根据需要创建正确的导入。
SLF4J
${:import(org.slf4j.Logger,org.slf4j.LoggerFactory)}private static final Logger LOG = LoggerFactory.getLogger(${enclosing_type}.class);
Log4J 2
${:import(org.apache.logging.log4j.LogManager,org.apache.logging.log4j.Logger)}
private static final Logger LOG = LogManager.getLogger(${enclosing_type}.class);
Log4J
${:import(org.apache.log4j.Logger)}private static final Logger LOG = Logger.getLogger(${enclosing_type}.class);
JUL
${:import(java.util.logging.Logger)}private static final Logger LOG = Logger.getLogger(${enclosing_type}.class.getName());
以上是 寻求有用的Eclipse Java代码模板 的全部内容, 来源链接: utcz.com/qa/412589.html