ユーザーロケールに基づいてペイパルのログインページを表示したい。どうやってやるの?localeCode 属性を追加しましたが、機能しません。私のコードを調べて、間違っている場合は修正してください
<form:form commandName="paymentForm" id="paymentForm" action="https://www.sandbox.paypal.com/cgi-bin/webscr" method="post" name="paypal">
<form:input path="cmd" id="cmd" name="cmd" type="hidden" />
<form:input path="business" id="business" name="business" type="hidden" />
<form:input path="password" id="password" name="password" type="hidden" />
<form:input path="custom" id="custom" name="custom" type="hidden" />
<form:input path="item_name" id="item_name" name="item_name" type="hidden" />
<form:input path="amount" id="amount" name="amount" type="hidden" />
<form:input path="currency_code" id="currency_code" type="hidden"/>
<form:input path="rm" id="rm" name="rm" type="hidden" />
<%-- <form:input path="returnUrl" id="return" name="return" type="hidden" /> --%>
<input type="hidden" name="return" value="${paymentForm.returnUrl}" />
<form:input type="hidden" name="paymentaction" path="paymentaction"/>
<form:input type="hidden" name="cancel_return" path="cancel_return" />
<form:input type="hidden" name="cert_id" path="certId" />
<input type="hidden" name="LOCALECODE" value="en_US" />
</form:form>