메모 48

C

[ Spring / axios ] JS -> Controller 데이터 통신 오류 MissingServletRequestParameterException

# 오류 내용 11-Mar-2021 23:26:55.906 WARNING [http-nio-8080-exec-4] org.springframework.web.servlet.handler.AbstractHandlerExceptionResolver.logException Resolved [org.springframework.web.bind.MissingServletRequestParameterException: Required String parameter 'str' is not present] + 400 error axios({ method: 'get', url: "/init", data: '아잉', dataType: 'json' }) .then(function (response){ console.log(..

C

티스토리에서 pdf 뷰어 넣는 HTML 코드

{파일URL}을 파일 주소로 수정하고 HTML 편집기에서 원하는 위치에 붙여넣으면 끝 # 뷰어 사용법 1. 티스토리 글 작성 공간에 pdf 파일을 드래그 한 뒤, 해당 파일의 링크 주소 복사를 눌러 복사된 url을 메모해둔다. 2. pdf 뷰어 코드를 복사해 HTML 모드로 이동 3. HTML 모드에서 pdf 뷰어 코드의 {파일URL}.pdf 부분을 pdf 파일의 링크 주소로 수정한 뒤 기본모드로 돌아온다. 4. 출력되는 pdf 뷰어 확인

메모 2021.03.18

C

스프링 mybatis 연결하며 뜬 오류들

1. pom.xml에 spring-jdbc dependency를 추가하지 않음 org.springframework spring-jdbc 5.2.3.RELEASE 없으면 07-Mar-2021 13:49:33.191 �ɰ� [main] org.apache.catalina.startup.Catalina.stopServer [localhost:8005] (base ��Ʈ [8005] �׸��� offset [0])��(��) ������ �� �������ϴ�. Tomcat�� ���� ������ ���� �� �ֽ��ϴ�. 07-Mar-2021 13:49:33.199 �ɰ� [main] org.apache.catalina.startup.Catalina.stopServer Catalina�� ������Ű��..

C

[Maven ] pom.xml 의 scope란?

pom.xml ( Project Object Model )의 모든 dependency는 scope 범위를 갖고있는데, 이 는 compile, provided, runtime, test, system 등의 값이 있다. 이 범위는 종속성의 전이성을 제한하고 다양한 빌드 작업에 사용되는 클래스 경로에 영향을 주기 위해 사용된다. # compile dependency에 scope을 따로 설정 하지 않았을 경우의 default 범위 Compile 시점에 필요하다. 프로젝트의 모든 Class Path에 추가된다. # runtime 런타임(프로젝트 실행 시점)시 해당 dependency를 사용한다. ex) JDBC 드라이버 Runtime, test시 Class Path에 추가된다. # provided Compile ..

메모 2021.02.24

C

web.xml - <welcome-file-list> 란?

웹사이트의 root("/")경로로 접속할때 불러올 파일을 지정한다. index.html index.htm index.jsp default.html default.htm default.jsp 서버를 실행시키고 "localhost:8080/" 로 접속시 먼저 가장 첫번째 인 index.html을 불러온다. 만약 index.html을 불러오는데 실패하는 경우, 그 아래 입력된 파일들을 순차적으로 찾는다. controller에 @RequestMapping에 경로를 "/"로 잡은 항목이 있으면 해당 항목이 가장 상위 페이지 ( "localhost:8080/" )가 되므로 속성은 설정하지 않는다. 출처 : bluesmile-dev.tistory.com/13 atoz-develop.tistory.com/

메모 2021.02.24