Spring
-
[Spring] Spring 파일업로드 & Postman 파일업로드 테스트Spring/Spring Framework 2022. 10. 4. 15:00
1. 환경 Spring Framework tomcat 8.5 Postman 9.31.0 2. 세팅 1) pom.xml commons-io commons-io 2.2 commons-fileupload commons-fileupload 1.3.1 2) web.xml MultipartFilter org.springframework.web.multipart.support.MultipartFilter MultipartFilter /* 3) bean 등록 나는 dispatcher-servlet.xml 에 추가했다. 환경에 따라 다를 수 있음! 4) context.xml WEB-INF/web.xml ${catalina.base}/conf/web.xml allowCasualMultipartParsing="true" p..
-
[SPRING] Spring + MariaDB + Mybatis 연결하기!Spring/Spring Framework 2020. 5. 22. 10:02
Spring + MariaDB + Mybatis를 연결해보자! 1. 설치 환경 Spring: 3.1.1.release OS: Window10 pro 2. pom.xml 수정 아래는 Spring과 MariaDB & Mybatis 연결을 위해 필요한 라이브러리 목록이다. mybatis mybatis-spring spring-jdbc mariadb-java-client 위 목록을 얻기 위해서 https://mvnrepository.com/ 에서 각각의 라이브러리를 검색해 원하는 버전으로 코드를 복사하자! Maven Repository: Search/Browse/Explore CryptoTool Carina Core Last Release on May 21, 2020 mvnrepository.com 이제 복사한..