データベースからツイートのリストを取得し、Primefaces を使用してデータリストとして表示するこの JSF 2 Web アプリケーションがあります。
(私の言いたいことを理解するために試してみることをお勧めします。www.tweetreference.orgにアクセスし、[ツイート参照を読む] をクリックしてから、「@seinecle」と入力します)
このリストをブックマーク可能にして、ページに直接戻れるようにするにはどうすればよいですか? それは可能ですか?[JSF2 での GET リクエストと URL のブックマークについて読みましたが、成功しませんでした...]
ページのソース コード:
<?xml version='1.0' encoding='UTF-8' ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:p="http://primefaces.org/ui">
<h:head>
<title>TweetReference</title>
<h:outputStylesheet library="css" name="index.css" />
</h:head>
<h:body>
<h:link value="back to the home page" outcome="index.xhtml" />
<div id="box">
<div id="text">
<div id="title">Tweet references for #{controllerBean.searchTerm}:</div>
<div class="datalist-noborder">
<p:dataList value="#{searchResultsBean.references}" var="ref" itemType="none">
<br></br>
<br></br>
<br></br>
<span style="float: left;"><img src="#{ref.author.pic_url}" width="85"></img></span>
<span style="font-size: 12px;padding-left: 10px;">
<b>#{ref.author.realName} (@#{ref.author.screenName})</b></span>
<br></br>
<span style="font-size: 12px;padding-left: 10px;">#{ref.author.description}</span>
<br></br>
<span style="font-size: 12px;padding-left: 10px;"><b>#{ref.author.location}</b></span>
<br></br>
<span style="font-size: 12px;padding-left: 10px;">[#{ref.author.followersCount} followers on Twitter].</span>
<br></br>
<br></br>
said in #{ref.monthYear}:
<span style="font-size: 40px;">“</span>#{ref.text}<span style="font-size: 40px;">”</span>
</p:dataList>
</div>
</div>
</div>
</h:body>
</html>
ありがとう!