论坛: 公开讨论 (Thread #20625)

html:link で送信したパラメータの受け取り方 (2008-11-20 09:20 by 匿名 #40047)

<html:link action="/delPatientBL.do" paramId="patientId" paramName="userBean" paramProperty="patientId">削除</html:link>

で送信したパラメータをアクションクラス(BLクラス)で受け取るにはどうしたらよいですか。


<form-bean name="_delPatientForm"
type="jp.terasoluna.fw.web.struts.form.DynaValidatorActionFormEx" >
<form-property name="patientId" type="java.lang.String"/>
</form-bean>

とフォームを設定しましたが、アクションクラス(BLクラス)で受け取ったinputが空になってしまいます。

お手数ですが、お手すきの際にご教示くださいませ。

回复到 #40047×

You can not use Wiki syntax
You are not logged in. To discriminate your posts from the rest, you need to pick a nickname. (The uniqueness of nickname is not reserved. It is possible that someone else could use the exactly same nickname. If you want assurance of your identity, you are recommended to login before posting.) 登录

RE: html:link で送信したパラメータの受け取り方 (2008-11-20 11:44 by kimuraku #40054)

下記の点をご確認下さい。

1.userBeanオブジェクトはセッションに格納されているか、ActionFormに格納されているか
 →ActionFormに格納されているのであれば、ネスト階層が深くなるので、
 <bean:define>か<logic:iterate>などで、userBeanを直接扱えるように定義が別途必要です。

2./delPatientBL.doの業務(もしくはユースケース)で利用するアクションフォームは、
 _delPatientFormで合っているかどうか

3./delPatientBL.doで利用するblogic-io.xmlの設定に間違いがないか
 →該当業務のblogic-io.xmlに下記のような設定が必要になります。

<action path="/delPatientBL">
 <blogic-params bean-name="業務Inputクラスの完全修飾クラス名">
  <!-- ActionFormから業務Inputクラスへのマッピング定義-->
  <set-property property="patientId" source="form" />
    :

4.そもそもuserBean#patientIdに値は格納されているのか
 →リクエストパラメータが空であれば当然反映されません。


デバッグの方法としては、下記あたりがポイントになります。
・org.apache.struts.action.RequestProcessor#processPopulate()で、
 _delPatientFormのpatientIdに正常にリクエストパラメータが格納されているか
・jp.terasoluna.fw.service.thin.BLogicMapper#setParames()で、
 業務InputクラスのpatientIdに正常にActionFormから値が反映されているか
回复到 #40047

回复到 #40054×

You can not use Wiki syntax
You are not logged in. To discriminate your posts from the rest, you need to pick a nickname. (The uniqueness of nickname is not reserved. It is possible that someone else could use the exactly same nickname. If you want assurance of your identity, you are recommended to login before posting.) 登录

RE: html:link で送信したパラメータの受け取り方 (2008-11-20 11:48 by kimuraku #40055)

一点修正です。

>jp.terasoluna.fw.service.thin.BLogicMapper#setParames()

正しくは、
jp.terasoluna.fw.service.thin.AbstractBLogicMapper#setParames()
です。
回复到 #40054

回复到 #40055×

You can not use Wiki syntax
You are not logged in. To discriminate your posts from the rest, you need to pick a nickname. (The uniqueness of nickname is not reserved. It is possible that someone else could use the exactly same nickname. If you want assurance of your identity, you are recommended to login before posting.) 登录

RE: html:link で送信したパラメータの受け取り方 (2008-11-20 14:53 by 匿名 #40063)

ご回答ありがとうございました。

blogic-io.xmlの設定が間違っておりました。
ご面倒をおかけして申し訳ございませんでした。

大変助かりました。
ありがとうございました。
回复到 #40054

回复到 #40063×

You can not use Wiki syntax
You are not logged in. To discriminate your posts from the rest, you need to pick a nickname. (The uniqueness of nickname is not reserved. It is possible that someone else could use the exactly same nickname. If you want assurance of your identity, you are recommended to login before posting.) 登录