Spring MVC и Hibernate: как распечатать левые объединенные поля? - PullRequest
3 голосов
/ 13 июня 2011

Я новичок в Spring (MVC) и Hibernate ... У меня возникла следующая проблема:

Я разрабатываю приложение RSS, которое вкратце анализирует RSS-канал, сохраняет поля в базе данных и отображает информацию RSS на веб-странице.

Некоторые RSS-каналы получили изображение. У меня нет проблем с анализом и сохранением, но у меня возникла проблема с отображением его вместе с информацией RSS. Информация RSS хранится в одной таблице (поля: id, заголовок, описание, URL, ссылка, язык, дата), а информация об изображении RSS хранится в другой таблице (поля: id, заголовок, описание, URL, высота, ширина, rss_id). Должно быть однозначное отношение.

Мой запрос Hibernate для получения всех RSS выглядит следующим образом и работает:

public List<RSS> getAllRSS() {
    return getHibernateTemplate().find("from RSS as rss left join fetch rss.rssImage as image");
}

Для распечатки информации RSS я использую следующий код:

RSSService rssService = (RSSService) ctx.getBean("rssService");
RSS rss = new RSS();
List list = rssService.listAllRSS();

Iterator i = list.iterator();
while(i.hasNext()){
            rss = (RSS) i.next();
            System.out.println("rss title:" + rss.getTitle());
}

И это работает. Но как я могу получить поля с изображения?

RSS класс:

public class RSS {

private Integer id;
private String title;
private Date dateCreated;
private String description;
private String link;
private String url;
private String language;
private String rating;
private Date dateModified;
private Set rssItems;
private Set rssImage;

/**
 * @return the id
 */
public Integer getId() {
    return id;
}

/**
 * @param id the id to set
 */
public void setId(Integer id) {
    this.id = id;
}

public Date getDateCreated() {
    return dateCreated;
}

public void setDateCreated(Date dateCreated) {
    this.dateCreated = dateCreated;
}

public String getTitle() {
    return title;
}

public void setTitle(String title) {
    this.title = title;
}

public Date getDateModified() {
    return dateModified;
}

public void setDateModified(Date dateModified) {
    this.dateModified = dateModified;
}

public String getDescription() {
    return description;
}

public void setDescription(String description) {
    this.description = description;
}

public String getLanguage() {
    return language;
}

public void setLanguage(String language) {
    this.language = language;
}

public String getLink() {
    return link;
}

public void setLink(String link) {
    this.link = link;
}

public String getRating() {
    return rating;
}

public void setRating(String rating) {
    this.rating = rating;
}

public String getUrl() {
    return url;
}

public void setUrl(String url) {
    this.url = url;
}

/**
 * @return the rssItems
 */
public Set getRssItems() {
    return rssItems;
}

/**
 * @param rssItems the rssItems to set
 */
public void setRssItems(Set rssItems) {
    this.rssItems = rssItems;
}

/**
 * @return the rssImage
 */
public Set getRssImage() {
    return rssImage;
}

/**
 * @param rssImage the rssImage to set
 */
public void setRssImage(Set rssImage) {
    this.rssImage = rssImage;
}
}

RSS-класс изображения:

public class RSSImage {

private Integer id;
private String title;
private String url;
private String description;
private String width;
private String height;
private Date dateCreated;
private Date dateModified;
private RSS rss;

/**
 * @return the id
 */
public Integer getId() {
    return id;
}

/**
 * @param id the id to set
 */
public void setId(Integer id) {
    this.id = id;
}

/**
 * @return the title
 */
public String getTitle() {
    return title;
}

/**
 * @param title the title to set
 */
public void setTitle(String title) {
    this.title = title;
}

/**
 * @return the url
 */
public String getUrl() {
    return url;
}

/**
 * @param url the url to set
 */
public void setUrl(String url) {
    this.url = url;
}

/**
 * @return the description
 */
public String getDescription() {
    return description;
}

/**
 * @param description the description to set
 */
public void setDescription(String description) {
    this.description = description;
}

/**
 * @return the width
 */
public String getWidth() {
    return width;
}

/**
 * @param width the width to set
 */
public void setWidth(String width) {
    this.width = width;
}

/**
 * @return the height
 */
public String getHeight() {
    return height;
}

/**
 * @param height the height to set
 */
public void setHeight(String height) {
    this.height = height;
}

/**
 * @return the dateCreated
 */
public Date getDateCreated() {
    return dateCreated;
}

/**
 * @param dateCreated the dateCreated to set
 */
public void setDateCreated(Date dateCreated) {
    this.dateCreated = dateCreated;
}

/**
 * @return the dateModified
 */
public Date getDateModified() {
    return dateModified;
}

/**
 * @param dateModified the dateModified to set
 */
public void setDateModified(Date dateModified) {
    this.dateModified = dateModified;
}

/**
 * @return the rss
 */
public RSS getRss() {
    return rss;
}

/**
 * @param rss the rss to set
 */
public void setRss(RSS rss) {
    this.rss = rss;
}
}

Спасибо:)

Ответы [ 2 ]

2 голосов
/ 13 июня 2011

Ваш rssImage отображается как коллекция, а не как отношение один к одному. Таким образом, вы должны перебирать свою коллекцию изображений для печати каждого отдельного изображения.

В противном случае обновите сопоставления, чтобы rssImage представлял собой только одно изображение.

1 голос
/ 13 июня 2011

В вашем JSP:

 <table>
 <c:forEach var="rssItem" items="${rss}">
  <tr>
   <td>
     ${rssItem.name}
   </td> 
  </tr>
 </c:forEach>
</table>

тогда в вашем контроллере

@RequestMapping(value = "/something")
public ModelAndView getRSS () {
ModelAndView mv = new ModelAndView("someJSP.jsp");
List<RSS> rss = //get your RSS from Hibernate
mv.addObject("rss",rss);
return mv;   
}
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...