nested exception is org.hibernate.exception.SQLGrammarException: could not extract ResultSet
List<TimeStamp> 타입으로 특정 날짜 리스트를 받아오려고 했음.
Caused by: java.sql.SQLSyntaxErrorException: Unknown column 'selectedDate' in 'where clause'
-> 원인은.. @Query로 쿼리문을 직접 적었는데 parameter 설정을 안해줘서.
@Query(value="SELECT consulting_date FROM reservation WHERE guide_id = :guideId AND DATE(consulting_date) = DATE(:selectedDate); ", nativeQuery = true)
List<Timestamp> getImpossibleTime(@Param("guideId") int guideId, @Param("selectedDate") Timestamp selectedDate);
org.springframework.context.ApplicationContextException: Failed to start bean 'documentationPluginsBootstrapper';
swagger 연동을 할려고 하는데 에러가 발생합니다 - 인프런 | 질문 & 답변
지금 현재 swagger 해보고 있는데 org.springframework.context.ApplicationContextException: Failed to start bean 'documentationPluginsBootstrapper'; nested exc...
www.inflearn.com
swagger.. 결국 보지 못했다
security에서 토큰 확인을 하지 않는 url를 뺐는데 /** < 이게 안 먹히는 것 같음.