springの参考書のAOPの章を進めているとexecutionの指定のしかたでエラーが出ました。
※コードは参考書の通りに書きました。
パスの指定にも間違いはありませんでした
STS4を使っています
エラーコードを見る限りgetLogin(..)メソッドの引数の指定に原因があるように思われます。
参考書には引数に「..」を入力するとで任意(0以上)の引数になるとありましたが、
この方法を使うには何か設定が必要なのでしょうか?
考えられるエラーの原因を教えてください。
java
1package com.example.demo.login.aspect; 2 3import org.aspectj.lang.JoinPoint; 4import org.aspectj.lang.annotation.Aspect; 5import org.aspectj.lang.annotation.Before; 6import org.aspectj.lang.annotation.After; 7import org.springframework.stereotype.*; 8import org.springframework.ui.Model; 9 10@Aspect 11@Component 12public class LogAspect { 13 14 //ポイント2:AOPの実装 15 @Before("execution(*com.example.demo.login.controller.LoginController.getLogin(..))") 16 public void startLog(JoinPoint jp) { 17 System.out.println("メソッド開始:"+jp.getSignature()); 18 } 19 20 //ポイント2:AOPの実装 21 @After("execution(*com.example.demo.login.controller.LoginController.getLogin(..))") 22 public void endLog(JoinPoint jp) { 23 System.out.println("メソッド終了:"+jp.getSignature()); 24 } 25} 26
java
1package com.example.demo.login.controller; 2 3import org.springframework.stereotype.Controller; 4import org.springframework.ui.Model; 5import org.springframework.web.bind.annotation.GetMapping; 6import org.springframework.web.bind.annotation.PostMapping; 7 8@Controller 9public class LoginController { 10 11 //ログイン画面のGET用コントローラー 12 @GetMapping("/login") 13 public String getLogin(Model model) { 14 15 //login.htmlに画面遷移 16 return "login/login"; 17 } 18 19 //ログイン画面のPOST用コントローラー 20 @PostMapping("/login") 21 public String postLogin(Model model) { 22 //login.htmlに画面遷移 23 return "login/login"; 24 } 25}
エラーコード Error starting ApplicationContext. To display the conditions report re-run your application with 'debug' enabled. [2m2020-06-16 13:59:15.677[0;39m [31mERROR[0;39m [35m7076[0;39m [2m---[0;39m [2m[ restartedMain][0;39m [36mo.s.boot.SpringApplication [0;39m [2m:[0;39m Application run failed org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'projectingArgumentResolverBeanPostProcessor' defined in class path resource [org/springframework/data/web/config/ProjectingArgumentResolverRegistrar.class]: BeanPostProcessor before instantiation of bean failed; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration': Initialization of bean failed; nested exception is java.lang.IllegalArgumentException: Pointcut is not well-formed: expecting 'name pattern' at character position 70 execution(*com.example.demo.login.controller.LoginController.getLogin(..)) ^
あなたの回答
tips
プレビュー