注: 最終的な目標は、コードに示すように、結果の URL を "/public/academy/register?param=blah" からカスタマイズされた SEO 化された URL に変更することです。POST マッピングで「成功ビュー」JSP を返すのではなく、代わりに post-redirect-get を使用するように変更しようとして間違った道を進んでいる場合 (これはとにかく良い習慣です)、私は提案を受け入れます。
以下に、登録フォームを取得して処理する POST リクエスト マッピングと、成功ページのマッピング メソッドの 2 つのメソッドを示します。最初のメソッドに POST されたフォームを保持するリダイレクトにフラッシュ属性を追加しています。
フォームには のプロパティ階層がありForm -> Schedule -> Course -> Content -> Vendors
、ベンダーが であることを除いて、それぞれが独自のクラス オブジェクトSortedSet<Vendor>
です。成功ページをロードすると、ベンダーを遅延初期化できなかったことを示す Hibernate 例外が発生します。ロードが停止するほどチェーンの下流にあるのはなぜですか、またはもっと基本的には、そもそもなぜこのプロパティ値が失われるのでしょうか? 戻る前にブレークポイントを設定すると、RedirectAttributes オブジェクトには、渡した形式で Vendors が入力されます。何を与える?
@RequestMapping(value = "/public/academy/register", method = RequestMethod.POST)
public String processSubmit(Site site, Section section, User user,
@ModelAttribute @Valid AcademyRegistrationForm form,
BindingResult result, Model model, RedirectAttributes redirectAttributes) {
validator.validate(form, result);
if (site.isUseStates()
&& StringUtils.isBlank(form.getBooker().getState())) {
result.rejectValue("booker.state",
"gui.page.academy.attendee.state");
}
if (result.hasErrors()) {
LOG.debug("Form has errors: {}", result.getAllErrors());
return "common/academy-registration";
}
// Form is valid when no errors are present. Complete the registration.
AcademyRegistration registration = form.toAcademyRegistration();
academyService.performRegistration(registration, site);
redirectAttributes.addFlashAttribute(form);
String redirectUrl = "redirect:/public/academy/register/"
+ registration.getSchedule().getCourse().getContent().getSeoNavTitle()
+ "-completed";
return redirectUrl;
}
@RequestMapping(value="/public/academy/register/**-completed", method=RequestMethod.GET)
public String displayRegistrationSuccess(@ModelAttribute("academyRegistrationForm") final AcademyRegistrationForm form)
{
SortedSet<Vendor> dummy = form.getSchedule().getCourse().getContent().getVendors();
return "common/academy-registration-success";
}
例外は次のとおりです。
Oct 2, 2013 2:11:31 PM org.apache.catalina.core.ApplicationDispatcher invoke
SEVERE: Servlet.service() for servlet jsp threw exception
org.hibernate.LazyInitializationException: failed to lazily initialize a collection of role: com.horn.cms.domain.Content.vendors, could not initialize proxy - no Session