網(wǎng)站上添加RSS訂閱服務(wù)

文章原文:https://www.zjhuiwan.cn/info/20211111/4222222436954291.html
RSS訂閱功能有什么用呢,就是在博客生成一個RSS源,然后讀者就可以在RSS閱讀器上訂閱這個RSS源,當(dāng)我每發(fā)一篇新文章的時候就可以通過RSS源獲取到最新文章了。RSS源是一種描述和同步網(wǎng)站內(nèi)容的格式,是目前使用最廣泛的XML應(yīng)用。RSS應(yīng)用在國外已經(jīng)非常普遍,從個人博客欄目、企業(yè)站點到世界級的門戶都提供基于RSS的服務(wù)。

所以其實就是給博客生成一個RSS規(guī)范的xml文件,然后別人就可以通過這個xml文件訂閱文章內(nèi)容了。

至于RSS的規(guī)范可以參考下這個:RSS簡介

那現(xiàn)在要做的就是每發(fā)一篇文章的時候就生成一個最新的rss.xml文件了,這個就簡單了,直接上代碼。

我用的是dom4j生成的xml,所以先需要引入它的依賴包

<pre class="brush:xml;toolbar:false" style="margin: 0.5em 0px; padding: 0.4em 0.6em; border-radius: 8px; background: rgb(248, 248, 248); color: rgb(0, 0, 0); font-size: 16px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;">
<dependency>
<groupId>dom4j</groupId>
<artifactId>dom4j</artifactId>
<version>1.6.1</version>
</dependency>
<dependency>
<groupId>jaxen</groupId>
<artifactId>jaxen</artifactId>
<version>1.1.1</version>
</dependency>
</pre>

JAVA生成xml格式文件并保存到本地的方法

<pre class="brush:java;toolbar:false" style="margin: 0.5em 0px; padding: 0.4em 0.6em; border-radius: 8px; background: rgb(248, 248, 248); color: rgb(0, 0, 0); font-size: 16px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;">/**

  • 生成RSSxml方法
    */
    public void createXml(HttpServletRequest request){
    try {
    // 1、創(chuàng)建document對象
    Document document = DocumentHelper.createDocument();
    // 2、創(chuàng)建根節(jié)點rss
    Element rss = document.addElement("rss");
    // 3、向rss節(jié)點添加version屬性
    rss.addAttribute("version", "2.0");
    // 4、生成子節(jié)點及子節(jié)點內(nèi)容
    Element channel = rss.addElement("channel");
    Element title = channel.addElement("title");
    Element link = channel.addElement("link");
    Element description = channel.addElement("description");
    title.setText("ZJBLOG");
    link.setText("https://www.zjhuiwan.cn");
    description.setText("長路漫漫、唯劍作伴");
    //查詢博客最新10條博客
    List<Article> articleList = articleService.selectByTime();
    articleList.stream().forEach(e ->{
    //channel下添加item節(jié)點
    Element item = channel.addElement("item");
    //將每條博客文章放入item節(jié)點
    Element itemtitle = item.addElement("title");
    itemtitle.setText(e.getArticleTitle());
    Element itemlink = item.addElement("link");
    itemlink.setText(e.getPageUrl());
    Element itemdescription = item.addElement("description");
    itemdescription.setText(e.getArticleAbstract());
    Element itempubDate = item.addElement("pubDate");
    SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
    itempubDate.setText(sdf.format(e.getCreationtime()));
    Element itemguid = item.addElement("guid");
    itemguid.setText(UUID.randomUUID().toString());
    });
    // 5、設(shè)置生成xml的格式
    OutputFormat format = OutputFormat.createPrettyPrint();
    // 設(shè)置編碼格式
    format.setEncoding("UTF-8");

     // 6、生成xml文件并保存到本地
     String path = request.getSession().getServletContext().getRealPath("/");
     File file = new File(path, "feed.xml");
     XMLWriter writer = new XMLWriter(new FileOutputStream(file), format);
     // 設(shè)置是否轉(zhuǎn)義,默認使用轉(zhuǎn)義字符
     writer.setEscapeText(false);
     writer.write(document);
     writer.close();
     System.out.println("生成rss.xml成功");
    

    } catch (Exception e) {
    e.printStackTrace();
    System.out.println("生成rss.xml失敗");
    }
    }
    </pre>

生成后的文件保存在網(wǎng)站根目錄,訪問地址就是https://www.zjhuiwan.cn/feed.xml

文件內(nèi)容:

image.png

然后就是把這個文件訪問地址發(fā)到一些平臺訂閱了,比如個站商店,效果就是在個站商店就可以看到我的最新文章啦:

image.png

在網(wǎng)站首頁添加個按鈕,顯示RSS訂閱

<pre class="brush:html;toolbar:false" style="margin: 0.5em 0px; padding: 0.4em 0.6em; border-radius: 8px; background: rgb(248, 248, 248); color: rgb(0, 0, 0); font-size: 16px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;"><a target="_blank" class="phonenonetop" title="RSS訂閱"><img width="37px;" height="37px" src="/images/rss.png"></a>
</pre>

image.png

也可以把RSS源發(fā)布到一些其他平臺或者搜索引擎都是可以的,可以擴大一下訪問面,保持經(jīng)常更新博客最重要了。

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
【社區(qū)內(nèi)容提示】社區(qū)部分內(nèi)容疑似由AI輔助生成,瀏覽時請結(jié)合常識與多方信息審慎甄別。
平臺聲明:文章內(nèi)容(如有圖片或視頻亦包括在內(nèi))由作者上傳并發(fā)布,文章內(nèi)容僅代表作者本人觀點,簡書系信息發(fā)布平臺,僅提供信息存儲服務(wù)。

友情鏈接更多精彩內(nèi)容