我正在使用Project Lombok,一个(spurious)JSR 269实现,提供有用的功能,例如在编译时生成getter和setter 同时保持源代码清洁:
Ext.define('app.view.CompanyStockChart', {
extend: 'Ext.chart.CartesianChart',
alias: 'widget.companystockchart',
config: {
store: 'StockDataStore',
axes: [
{
type: 'time',
fields: [
'date'
]
},
{
type: 'numeric',
fields: [
'open'
],
grid: {
odd: {
fill: '#e8e8e8'
}
},
position: 'left'
}
],
series: [
{
type: 'line',
style: {
smooth: true,
stroke: 'rgb(0,200,0)',
fill: 'rgba(0,200,0,0.3)'
},
xField: 'date',
yField: 'open'
}
],
interactions: [
{
type: 'panzoom'
}
]
}
});
我想使用另一个注释处理器(JSR 269实施,如hibernate-jpamodelgen
)到generate the JPA Canonical Metamodel(JSR 317),但不管我有多努力尝试(Maven,Eclipse等等)似乎没有办法指示它从生成的代码开始读取实体,而不是从源代码开始读取实体(那个,还没有由Lombok解释,甚至不编译)。
有没有办法以所需方式管道两个注释处理器?