Download
Desenvolver
Conta
Download
Desenvolver
Login
Forgot Account/Password
Criar Conta
Linguagem
Ajuda
Linguagem
Ajuda
×
Login
Nome de acesso
Senha
×
Forgot Account/Password
Estado tradução de Português
Category:
Software
People
PersonalForge
Magazine
Wiki
Pesquisa
OSDN
>
Pesquisar Software
>
System
>
TERASOLUNA Framework
>
Fóruns
>
Open Discussion
>
html:link で送信したパラメータの受け取り方
TERASOLUNA Framework
Descrição
Project Summary
Developer Dashboard
Página da Web
Developers
Image Gallery
List of RSS Feeds
Activity
Statistics
Histórico
Downloads
List of Releases
Stats
Código Fonte
Code Repository list
Subversion
Visualizar Repositório
Tíquete
Ticket List
Milestone List
Type List
Lista de componentes
List of frequently used tickets/RSS
Submit New Ticket
Documents
Wiki
FrontPage
Title index
Recent changes
Doc Mgr
List Docs
Communication
Fóruns
List of Forums
Open Discussion (1277)
Mailing Lists
list of ML
terasoluna-information
News
Fóruns:
Open Discussion
(Thread #20625)
Return to Thread list
RSS
html:link で送信したパラメータの受け取り方 (2008-11-20 09:20 by
Anônimo
#40047)
Responder
Criar tíquete
<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が空になってしまいます。
お手数ですが、お手すきの際にご教示くださいませ。
Responder a #40047
×
Assunto
Body
Reply To Message #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が空になってしまいます。 > > お手数ですが、お手すきの際にご教示くださいませ。
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.)
Login
Nickname
Pré-visualizar
Post
Cancelar
RE: html:link で送信したパラメータの受け取り方 (2008-11-20 11:44 by
kimuraku
#40054)
Responder
Criar tíquete
下記の点をご確認下さい。
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から値が反映されているか
Responder a
#40047
Responder a #40054
×
Assunto
Body
Reply To Message #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から値が反映されているか
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.)
Login
Nickname
Pré-visualizar
Post
Cancelar
RE: html:link で送信したパラメータの受け取り方 (2008-11-20 11:48 by
kimuraku
#40055)
Responder
Criar tíquete
一点修正です。
>jp.terasoluna.fw.service.thin.BLogicMapper#setParames()
正しくは、
jp.terasoluna.fw.service.thin.AbstractBLogicMapper#setParames()
です。
Responder a
#40054
Responder a #40055
×
Assunto
Body
Reply To Message #40055 > 一点修正です。 > > >jp.terasoluna.fw.service.thin.BLogicMapper#setParames() > > 正しくは、 > jp.terasoluna.fw.service.thin.AbstractBLogicMapper#setParames() > です。
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.)
Login
Nickname
Pré-visualizar
Post
Cancelar
RE: html:link で送信したパラメータの受け取り方 (2008-11-20 14:53 by
Anônimo
#40063)
Responder
Criar tíquete
ご回答ありがとうございました。
blogic-io.xmlの設定が間違っておりました。
ご面倒をおかけして申し訳ございませんでした。
大変助かりました。
ありがとうございました。
Responder a
#40054
Responder a #40063
×
Assunto
Body
Reply To Message #40063 > ご回答ありがとうございました。 > > blogic-io.xmlの設定が間違っておりました。 > ご面倒をおかけして申し訳ございませんでした。 > > 大変助かりました。 > ありがとうございました。
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.)
Login
Nickname
Pré-visualizar
Post
Cancelar