spring boot 에서 mybatis 설정 시에 'Content is not allowed in prolog. 오류 증상 : spring boot에서 mybatis 설정 시 'Content is not allowed in prolog. 오류 발생 원인 : 'application.properties' 파일에 'mybatis/mappers' 로 경로 설정하여 경로가 맞지 않음. 수정 : 아래와 같이 경로 수정 후 정상 동작 mybatis.mapper-locations=mybatis/mappers/*.xml spring-project 2020.04.30
spring boot 에서 소스 수정 후 자동으로 반영이 안될 경우 spring boot 에서 소스 수정 후 자동으로 반영이 안될 경우 spring-boot-devtools 가 pom.xml에 포함 되어 있는지 확인. spring-project 2020.04.28
bootstrap 4 datetimepicker bootstrap 4 datetimepicker https://bootstrap-datepicker.readthedocs.io/en/latest/index.html - https://github.com/uxsolutions/bootstrap-datepicker https://pro.propeller.in/components/datetimepicker.php https://www.malot.fr/bootstrap-datetimepicker/demo.php 컴퓨터 2020.01.20
Builder Pattern 빌더패턴이란? 빌더패턴 구현 public class Test { private String title; private String code; private int priority; private int grade; public int getTitle() { return title; } public void setTitle(String title) { this.title = title; } public int getCode() { return code; } public int setCode(String code) { this.code = code; } public int getPriority() { return priority; } public int setPriority(String priority) {.. designpattern 2020.01.19
디자인 패턴 디자인 패턴 생성 - Abstract factory Builder Factory method Prototype Singleton 구조 - Adapter Bridge Composite Decorator Facade Flyweight Proxy 행위 - Chain of responsibility Command Interpreter Iterator Mediator Memento Observer State Strategy Template method Visitor designpattern 2020.01.19
form enter submit - input form tag 안에 input 필드가 1개일 경우 enter를 눌렀을 때 자동으로 submit 되는 현상이 있어서 수정. 장애의 원인이 될 수 있으므로 조심해야 할 것 같다. Search onsubmit="return false"을 추가하여 해결. 컴퓨터 2020.01.19
RestTemplate으로 basic auth 를 통한 rest api 사용 Basic auth를 인증으로 사용하고 있는 rest api에 접근 할 때는 아래와 같이 하면 된다. 하지만 BasicAuthenticationInterceptor가 스프링 5.1.1 부터 Deprecated 되었기 때문에 지양하고 org.springframework.http.HttpHeaders#setBasicAuth 를 사용하도록 한다. [AS-IS] RestTemplate restTemplate = new RestTemplate(); String url = "http://domain:port/test"; restTemplate.getInterceptors().add(new BasicAuthorizationInterceptor("id", "pw")); ResponseEntity response = r.. spring-project 2020.01.19
Spring Security Multiple HttpSecurity(Form Login & Http Login) 하나의 프로젝트에서 폼로그인도 되고 Http Login도 되도록 설정을 하려면 다음과 같이 설정을 변경해 주면 된다. Reference 참조 https://docs.spring.io/spring-security/site/docs/current/reference/htmlsingle/#multiple-httpsecurity Spring Security Reference The authenticator is also responsible for retrieving any required user attributes. This is because the permissions on the attributes may depend on the type of authentication being used. For ex.. spring-project 2020.01.19
Facade Pattern Facade Pattern이란? facade를 사전에서 검색하면 '(건물의) 정면[앞면]' 이란 의미가 나온다. 디자인 패턴의 분류(생성, 행위, 구조) 중에서 구조(structure)에 관한 패턴을 말한다. 건물의 정면처럼 외부에서 봤을 때 보여지는 부분에 대한 인터페이스를 제공한다. 다시 말하면, Facade Pattern은 여러 서브 시스템 인터페이스에 대한 통합 인터페이스를 제공하여 서브 시스템을 보다 쉽게 사용할 수 있는 상위레벨 인터페이스를 정의하는 것을 말합니다. Facade Pattern의 장점은 무엇인가? Facade는 클라이언트의 요청을 수행할 수 있는 서브시스템으로 전달합니다. 대부분의 경우 하나의 요청 둘 이상의 서브시스템에 위임됩니다. 이 때, Facade는 클라이언트와 서브시스템.. designpattern 2020.01.18
스프링에서 form submit 으로 가변(멀티) 데이터 받기 form submit으로 정해지지 않은 수의 데이터를 받아야 할 경우가 있다. 간단하게 말하면 화면에서는 같은 name으로 값들을 전달하고 서버에서는 배열로 받는다. 아래와 같은 경우. item1 item2 item3 ...... ...... 화면 체크리스트 항목 체크리스트 항목 체크리스트 항목 서버 @RequestMapping(value = "/checkListRegister", method = RequestMethod.POST) public String checkListRegister(Locale locale, Model mode, CheckList checkList) { log.debug(checkList.toString()); return "/checklist/checkList"; } public.. spring-project 2020.01.10