我知道响应有点晚了,但也许以后有人会使用它。我已经用罗马 1.0 做到了。
您可以定义自己的转换器和生成器。
我需要一个 RSS 2.0 提要,其中包含项目中的源字段。因此,对于转换器和生成器,我都通过 ROME 扩展了 RSS 2.0 的实现。
首先我们需要一个转换器。这是一个将填补源头的人
/**
* This is a convertor for RSS 2.0 setting source on output items
*/
public class ConverterForRSS20WithSource extends ConverterForRSS20 {
/**
* Default Constructor
*/
public ConverterForRSS20WithSource() {
this("rss_2.0_withSource");
}
/**
* Constructor with type
* @param type
*/
protected ConverterForRSS20WithSource(String type) {
super(type);
}
/**
* @see com.sun.syndication.feed.synd.impl.ConverterForRSS094#createRSSItem(com.sun.syndication.feed.synd.SyndEntry)
*/
@Override
protected Item createRSSItem(SyndEntry sEntry) {
Item item = super.createRSSItem(sEntry);
if(sEntry.getSource() != null
&& StringUtils.isNotBlank(sEntry.getSource().getUri())) {
Source s = new Source();
s.setUrl(sEntry.getSource().getUri());
s.setValue(sEntry.getSource().getTitle());
item.setSource(s);
}
return item;
}
}
然后我们需要一个生成器。它没有什么特别可做的。它必须是
/**
* Rss 2.0 Generator with source field
*/
public class RSS020GeneratorWithSource extends RSS20Generator {
/**
*
*/
public RSS020GeneratorWithSource() {
super("rss_2.0_withSource","2.0");
}
}
我们需要做最后一件事,向 rome 声明我们的类。为此,只需将 rome.properties 放在资源的根目录下即可。不要忘记将都柏林核心添加到您的 rss.items... 在该文件中只需放入
Converter.classes=my.package.ConverterForRSS20WithSource
WireFeedGenerator.classes=my.package.RSS020GeneratorWithSource
# Parsers for RSS 2.0 with source item modules
#
rss_2.0_withSource.item.ModuleParser.classes=com.sun.syndication.io.impl.DCModuleParser
# Generators for RSS_2.0 entry modules
#
rss_2.0_withSource.item.ModuleGenerator.classes=com.sun.syndication.io.impl.DCModuleGenerator
就这样。