TemplateInputException

Spring/오류 해결

[Spring 오류] TemplateInputException, SpelEvaluationException: EL1008E Property or field 'profileImgRedirectUrl' cannot be found on object of type 'org.springframework.security.core.userdetails.User' - maybe not public or not valid?

1. 문제 상황 - 가짜 user1 객체로 로그인 설정을 했을 때 오류가 발생했다. @Test @DisplayName("user1로 로그인 후 프로필페이지에 접속하면 user1의 이메일이 보여야 한다.") void t3() throws Exception { // WHEN // GET / ResultActions resultActions = mvc .perform( get("/member/profile") .with(user("user1").password("1234").roles("user")) ) .andDo(print()); // THEN // 안녕 resultActions .andExpect(status().is2xxSuccessful()) .andExpect(handler().handlerType..

HSY_mumu
'TemplateInputException' 태그의 글 목록