gpt4 book ai didi

java - 使 Spring 3 MVC Controller 方法成为事务性的

转载 作者:搜寻专家 更新时间:2023-10-31 19:40:21 24 4
gpt4 key购买 nike

我正在使用 Spring 3.1 并编写了我的 DAO 和服务层(事务)。

但是在特殊情况下,为了避免延迟初始化异常,我必须创建一个 spring mvc 请求处理程序方法@transactional。但是它无法将事务附加到该方法。方法名称是 ModelAndView home(HttpServletRequest 请求,HttpServletResponse 响应)。 http://forum.springsource.org/showthread.php?46814-Transaction-in-MVC-Controller从这个链接看来不可能将事务(默认情况下)附加到 mvc 方法。该链接中建议的解决方案似乎适用于 Spring 2.5(覆盖 handleRequest )。任何帮助将不胜感激。谢谢

@Controller
public class AuthenticationController {
@Autowired
CategoryService categoryService;
@Autowired
BrandService brandService;
@Autowired
ItemService itemService;

@RequestMapping(value="/login.html",method=RequestMethod.GET)
ModelAndView login(){
return new ModelAndView("login.jsp");
}
@RequestMapping(value="/home.html",method=RequestMethod.GET)
@Transactional
ModelAndView home(HttpServletRequest request, HttpServletResponse response){
List<Category> categories = categoryService.readAll();
request.setAttribute("categories", categories);
List<Brand> brands = brandService.readAll();
request.setAttribute("brands", brands);
List<Item> items = itemService.readAll();
request.setAttribute("items", items);
Set<Image> images = items.get(0).getImages();
for(Image i : images ) {
System.out.println(i.getUrl());
}
return new ModelAndView("home.jsp");
}

最佳答案

您需要实现一个接口(interface),以便 Spring 可以将其用作代理接口(interface):

@Controller
public interface AuthenticationController {
ModelAndView home(HttpServletRequest request, HttpServletResponse response);
}

@Controller
public class AuthenticationControllerImpl implements AuthenticationController {

@RequestMapping(value="/home.html",method=RequestMethod.GET)
@Transactional
@Override
ModelAndView home(HttpServletRequest request, HttpServletResponse response){
.....
}
}

关于java - 使 Spring 3 MVC Controller 方法成为事务性的,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12971848/

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