- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我认为错误来自于 RedirectView
参数中引入的 ulr,但我尝试了不同的 URL,但无法使其工作。
这是我的项目结构:
这是 Controller 包中 Spring MVC 的 get 方法
@GetMapping("/planetForm")
@ResponseBody
public RedirectView toPlanetForm(Model model, @RequestParam(value = "idPlanet", required = false) String idPlanet) {
if (idPlanet != null){
Planet planet = planetService.getById(Integer.parseInt(idPlanet));
model.addAttribute("planet", planet);
}
List<Satellite> satellites = satelliteService.findAll();
model.addAttribute("satellites", satellites);
return new RedirectView("./addPlanet");
}
如您所见,我正在尝试对名为 addPlanet.jsp 的 JSP 执行 RedirectView。我也尝试过这个网址(除其他外):“../webapp/WEB-INF/jsp/addPlanet.jsp”
,我确信这是菜鸟废话,但我无法看到错误
我也尝试过创建另一个servlet并通过@ModelAtribute
检索我需要的对象,但是在第一个servlet中添加的对象在此过程中丢失了,这是代码:
@GetMapping("/updatePlanet")
@ResponseBody
String update(Model model, @ModelAttribute("planet") Planet planet){
model.addAttribute("planet",planet);
return "addPlanet";
}
该wat将用户引导至addPlanet.jSTL
,但该方法获取的对象是构造函数刚刚创建的对象,其属性值为null或0
最佳答案
终于找到解决方案了,这里是:
@GetMapping("/planetForm/{idPlanet}")
public String toPlanetForm(Model model, @PathVariable(value = "idPlanet", required = false) String idPlanet) {
if (idPlanet != null){
Planet planet = planetService.getById(Integer.parseInt(idPlanet));
model.addAttribute("planet", planet);
}
List<Satellite> satellites = satelliteService.findAll();
model.addAttribute("satellites", satellites);
return "addPlanet";
}
正如您所看到的,我必须将 @GetMapping
更改为新 URL,现在该函数返回一个字符串,它是不带扩展名的 JSP 名称。除了函数@RequestParam
的参数之外,我还必须将其更改为@PathVariable
,其值与@GetMapping
关于java - Spring MVC 中的 RedirectView 不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60021598/
今天有小伙伴给我留言问到,try{...}catch(){...}是什么意思?它用来干什么? 简单的说 他们是用来捕获异常的 下面我们通过一个例子来详细讲解下
我正在努力提高网站的可访问性,但我不知道如何在页脚中标记社交媒体链接列表。这些链接指向我在 facecook、twitter 等上的帐户。我不想用 role="navigation" 标记这些链接,因
说现在是 6 点,我有一个 Timer 并在 10 点安排了一个 TimerTask。之后,System DateTime 被其他服务(例如 ntp)调整为 9 点钟。我仍然希望我的 TimerTas
就目前而言,这个问题不适合我们的问答形式。我们希望答案得到事实、引用资料或专业知识的支持,但这个问题可能会引发辩论、争论、投票或扩展讨论。如果您觉得这个问题可以改进并可能重新打开,visit the
我就废话不多说了,大家还是直接看代码吧~ ? 1
Maven系列1 1.什么是Maven? Maven是一个项目管理工具,它包含了一个对象模型。一组标准集合,一个依赖管理系统。和用来运行定义在生命周期阶段中插件目标和逻辑。 核心功能 Mav
我是一名优秀的程序员,十分优秀!