전체 글136 Spring Actuator와 Swagger가 서로 충돌할때 정확한 원인은 Spring Boot 2.X와 Springfox 3.0.0이 서로 충돌하여 발생하는 문제입니다. 방법 1 (Bean 등록) @Bean public static BeanPostProcessor springfoxHandlerProviderBeanPostProcessor() { return new BeanPostProcessor() { @Override public Object postProcessAfterInitialization(Object bean, String beanName) throws BeansException { if (bean instanceof WebMvcRequestHandlerProvider || bean instanceof WebFluxRequestHandlerProvid.. 2023. 9. 19. [jQuery] map vs each var items = [1,2,3,4]; $.each(items, function() { alert('this is ' + this); }); var newItems = $.map(items, function(i) { return i + 1; }); // newItems is [2,3,4,5] each : 기존 배열 반환 map : 새 배열 반환 (요소를 추가하거나 제거 가능) ref : https://stackoverflow.com/questions/749084/jquery-map-vs-each 2023. 9. 16. [jQuery] 부트스트랩에서 Select2 타이핑이 안될 때 ... ... ... ... 부트스트랩 모달이 포커스를 뺏어가서 발생한다고 한다. dropdownParent를 통해 모달을 지정해주면 된다. ref : https://select2.org/troubleshooting/common-problems#select2-does-not-function-properly-when-i-use-it-inside-a-bootst 2023. 9. 15. [SQL] IN 연산자 SELECT * FROM Customers WHERE Country IN ('Germany', 'France', 'UK'); WHERE 에서 조건 여러개를 한번에 걸때 사용한다. ref : https://www.w3schools.com/mysql/mysql_in.asp 2023. 9. 14. 이전 1 2 3 4 ··· 34 다음