gpt4 book ai didi

java - 让我的第一个 Spring webapp 工作

转载 作者:行者123 更新时间:2023-11-30 05:53:50 25 4
gpt4 key购买 nike

我有一个 Controller ,它从 search.jsp 中的表单获取 ID。我希望它重定向到 entitydemo.jsp,它应该能够访问 EntityDemo 并输出其属性。我怎么做?我是否需要使用重定向并以某种方式将 EntityDemo 作为 session 属性?

@Controller
public class SearchEntityController {

@RequestMapping(value = "/search", method = RequestMethod.GET)
public EntityDemo getEntityDemoByID(@ModelAttribute("search") Search search, BindingResult result) {
EntityDemo entityDemo = null;
if (search.getId() != null) {
int id = Integer.parseInt(search.getId());
entityDemo = DBHelper.getEntityDemo(id);
}
return entityDemo;
}
}

最佳答案

假设您有一些名为 EntityDemo 的类其中有 GettersSetters对于所有领域,我认为你应该这样做:

@Controller
public class SearchEntityController {

@RequestMapping(value = "/search", method = RequestMethod.GET)
public ModelAndView getEntityDemoByID(@ModelAttribute("search") Search search, BindingResult result) {
EntityDemo entityDemo = null;
Map<String, Object> model = new HashMap<String, Object>();
if (search.getId() != null) {
int id = Integer.parseInt(search.getId());
entityDemo = DBHelper.getEntityDemo(id);
model.put("entityDemo", entityDemo);
}

return new ModelAndView(new RedirectView(pageIWantToRedirectTo), model);
}
}

然后,在您的 JSP 中,您可以使用 JSTL并做这样的事情:${entityDemo.name} , 其中name是我假设 EntityDemo 的字段类(class)有适当的Getter ,这是 public String getName(){return this.name;} .

据我所知,Controller 方法不会返回整个对象,它们要么返回 String表示 View 名称的值,例如 \foo\bar\myPage.jsp否则,整个 ModelAndView对象(有两种类型的对象,其中一种的全名是 portlet ,另一种是 servlet 。在这种情况下,您必须使用全名是 servlet 的对象。为了清楚起见,当我说全名时,我的意思是包括它所在的包的名称。如果我没记错的话,你要找的那个在 springframework...servlet.ModelAndView 或类似的地方。

编辑:如果你想在提交时重定向,那么,你需要制作 2 个 Controller ,一个将呈现表单,另一个将在提交表单后重定向。

关于您的 JSP 页面,您应该有一个 xml 文件名 dispatcher-servlet.xml .名称可能不同,具体取决于您在 web.xml 中的配置, 但它们都具有 <servletname>-servlet.xml 的结构.应该有一个名为 viewResolver 的属性(虽然情况应该如此,但某些 IDE 不会为您填充太多内容。另一方面,诸如 Netbeans 之类的 IDE 会为您设置大部分初始配置)。这是另一个作用于你的 Controller views .它的作用是自动在 view 之前和之后附加项目。您在 Controller 中指定的名称。通常它会附加一个前缀 pages/jsp/.jsp 的后缀.因此,如果您的页面具有以下路径 pages/jsp/myPage.jsp ,您需要传递给 Controller ​​的所有内容都是 myPage .页面的完整路径将由 View 解析器构建。如果您传入整个 URL,它仍会继续添加内容,因此即使您指定了正确的路径,仍无法找到该页面。

关于java - 让我的第一个 Spring webapp 工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10160588/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com