Spring MVCでコントローラー層のクラスに付与する。 Controller は、主に以下の役割を担う。 ・画面遷移の制御 ・ドメイン層の Service の呼出 (主処理を実行する) @Controller @RequestMapping("findProduct") public class FindProductController { @Inject FindProductService findProductService; @RequestMapping(value="list") public String list(Model model) { Collection<Product> products = findProductService.findAll(); model.addAttribute("products", products); return "pro