썸네일이미지 노출안됨 수정
This commit is contained in:
parent
bae5e7b669
commit
628ed51994
@ -200,11 +200,13 @@ public class CollectionVO extends PagingVO {
|
|||||||
return rprsThumbUrl;
|
return rprsThumbUrl;
|
||||||
}
|
}
|
||||||
public void setRprsThumbUrl(String rprsThumbUrl) {
|
public void setRprsThumbUrl(String rprsThumbUrl) {
|
||||||
this.rprsThumbUrl = NlibProperty.getString("thumbnail.image.url.prefix", "") + rprsThumbUrl;
|
this.rprsThumbUrl = StringUtil.isEmpty(rprsThumbUrl) ? rprsThumbUrl : NlibProperty.getString("thumbnail.image.url.prefix", "") + rprsThumbUrl;
|
||||||
}
|
}
|
||||||
public void setRprsThumbUrl(String rprsThumbUrl, String defaultImgUrl) {
|
public void setRprsThumbUrl(String rprsThumbUrl, String defaultImgUrl) {
|
||||||
if(StringUtil.isEmpty(rprsThumbUrl) || !rprsThumbUrl.startsWith("/")) this.rprsThumbUrl = defaultImgUrl;
|
if(StringUtil.isEmpty(rprsThumbUrl) || !rprsThumbUrl.startsWith("/")) this.rprsThumbUrl = defaultImgUrl;
|
||||||
else this.rprsThumbUrl = NlibProperty.getString("thumbnail.image.url.prefix", "") + rprsThumbUrl;
|
else this.rprsThumbUrl = rprsThumbUrl;
|
||||||
|
|
||||||
|
this.rprsThumbUrl = StringUtil.isEmpty(this.rprsThumbUrl) ? this.rprsThumbUrl : NlibProperty.getString("thumbnail.image.url.prefix", "") + this.rprsThumbUrl;
|
||||||
}
|
}
|
||||||
public String getUseYn() {
|
public String getUseYn() {
|
||||||
return useYn;
|
return useYn;
|
||||||
|
|||||||
@ -232,7 +232,6 @@ public class NlibSearchController extends NlibCommonController {
|
|||||||
CollectionVO vo = new CollectionVO();
|
CollectionVO vo = new CollectionVO();
|
||||||
vo.setMasterId(masterId);
|
vo.setMasterId(masterId);
|
||||||
vo.setMbInfoId(mbInfoId);
|
vo.setMbInfoId(mbInfoId);
|
||||||
System.out.println(NlibProperty.getString("thumbnail.image.url.big"));
|
|
||||||
vo = collectionService.getItemInfo(vo,NlibProperty.getString("thumbnail.image.url.big"));
|
vo = collectionService.getItemInfo(vo,NlibProperty.getString("thumbnail.image.url.big"));
|
||||||
|
|
||||||
//반납예정일 편집
|
//반납예정일 편집
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user