From 29b9df081bc903d3c3f48de61c1d5e6979f690f7 Mon Sep 17 00:00:00 2001 From: oguchi-shiori03 <132339524+oguchi-shiori03@users.noreply.github.com> Date: Wed, 28 Feb 2024 13:32:15 +0900 Subject: [PATCH 1/3] =?UTF-8?q?=E3=83=AA=E3=82=AF=E3=82=A8=E3=82=B9?= =?UTF-8?q?=E3=83=88=E3=83=91=E3=83=A9=E3=83=A1=E3=83=BC=E3=82=BF=E3=81=AE?= =?UTF-8?q?=E5=8F=96=E5=BE=97=E5=85=83=E3=82=92JaxRsHttpRequest=E3=81=AB?= =?UTF-8?q?=E5=A4=89=E6=9B=B4=20(#60)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * feat: HttpRequest#getParamの使用箇所をユーティリティに変更 * feat: ユーティリティのクラス名変更 * feat: HttpRequest#getParamMapの使用箇所をJaxRsHttpRequest#getParamMapに変更 --- src/main/java/com/nablarch/example/action/ProjectAction.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/com/nablarch/example/action/ProjectAction.java b/src/main/java/com/nablarch/example/action/ProjectAction.java index 73475c4..72cb18e 100644 --- a/src/main/java/com/nablarch/example/action/ProjectAction.java +++ b/src/main/java/com/nablarch/example/action/ProjectAction.java @@ -11,7 +11,7 @@ import nablarch.common.dao.UniversalDao; import nablarch.core.beans.BeanUtil; import nablarch.core.validation.ee.ValidatorUtil; -import nablarch.fw.web.HttpRequest; +import nablarch.fw.jaxrs.JaxRsHttpRequest; import nablarch.fw.web.HttpResponse; import javax.validation.Valid; @@ -42,7 +42,7 @@ public class ProjectAction { */ @GET @Produces(MediaType.APPLICATION_JSON) - public List find(HttpRequest req) { + public List find(JaxRsHttpRequest req) { // リクエストパラメータをBeanに変換 ProjectSearchForm form = BeanUtil.createAndCopy(ProjectSearchForm.class, req.getParamMap()); From 00f1caecd02319f443e373202cef6acd40867a6e Mon Sep 17 00:00:00 2001 From: hijiri <157558988+tishijiri@users.noreply.github.com> Date: Tue, 12 Mar 2024 13:30:50 +0900 Subject: [PATCH 2/3] =?UTF-8?q?6u1=E3=83=AA=E3=83=AA=E3=83=BC=E3=82=B9?= =?UTF-8?q?=E7=94=A8=E3=81=AE=E3=83=90=E3=83=BC=E3=82=B8=E3=83=A7=E3=83=B3?= =?UTF-8?q?=E3=81=AB=E5=A4=89=E6=9B=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pom.xml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pom.xml b/pom.xml index 8bb6248..3d2a748 100644 --- a/pom.xml +++ b/pom.xml @@ -5,7 +5,7 @@ com.nablarch.example nablarch-example-rest - 6-NEXT-SNAPSHOT + 6u1 war @@ -39,7 +39,7 @@ com.nablarch.profile nablarch-bom - 6-NEXT-SNAPSHOT + 6u1 pom import @@ -226,7 +226,7 @@ jp.co.tis.gsp gsp-dba-maven-plugin - 5.0.0-SNAPSHOT + 5.0.0 src/main/resources/entity/data-model.edm From 3eb2c0d57ff209e94ecd5d91e82911d814ed277c Mon Sep 17 00:00:00 2001 From: hijiri <157558988+tishijiri@users.noreply.github.com> Date: Thu, 14 Mar 2024 15:24:55 +0900 Subject: [PATCH 3/3] =?UTF-8?q?slf4j-api=E3=81=AE=E3=83=90=E3=83=BC?= =?UTF-8?q?=E3=82=B8=E3=83=A7=E3=83=B3=E3=81=8Cslf4j-nablarch-adaptor?= =?UTF-8?q?=E3=81=A8=E5=90=88=E3=81=A3=E3=81=A6=E3=81=84=E3=81=AA=E3=81=8B?= =?UTF-8?q?=E3=81=A3=E3=81=9F=E3=81=9F=E3=82=81=E5=AF=BE=E5=BF=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pom.xml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pom.xml b/pom.xml index 3d2a748..0180c23 100644 --- a/pom.xml +++ b/pom.xml @@ -64,6 +64,11 @@ pom import + + org.slf4j + slf4j-api + 2.0.11 +