diff --git a/VamPa/src/main/webapp/WEB-INF/views/goodsDetail.jsp b/VamPa/src/main/webapp/WEB-INF/views/goodsDetail.jsp
index c56114f..b43f704 100644
--- a/VamPa/src/main/webapp/WEB-INF/views/goodsDetail.jsp
+++ b/VamPa/src/main/webapp/WEB-INF/views/goodsDetail.jsp
@@ -168,7 +168,52 @@
-
+
+
+
+
+
+
+
+
+
+
@@ -254,6 +299,88 @@ $(document).ready(function(){
point = Math.floor(point);
$(".point_span").text(point);
+ /* 리뷰 리스트 출력 */
+
+ const bookId = '${goodsInfo.bookId}';
+
+ $.getJSON("/reply/list", {bookId : bookId}, function(obj){
+
+ if(obj.list.length === 0){
+ $(".reply_not_div").html('리뷰가 없습니다.');
+ $(".reply_content_ul").html('');
+ $(".pageMaker").html('');
+ } else{
+
+ $(".reply_not_div").html('');
+
+ const list = obj.list;
+ const pf = obj.pageInfo;
+ const userId = '${member.memberId}';
+
+ /* list */
+
+ let reply_list = '';
+
+ $(list).each(function(i,obj){
+ reply_list += '';
+ reply_list += '
+ +
+