본문 바로가기

Spring/Spring 기초61

e7e샘의 시큐리티 설정 Spring Legacy Project생성 Project name설정 후에 Spring MVC Project선택후 넥스트 패키지 네임 설정후 피니쉬 생성된 프로젝트 우클릭 후 Properties클릭 Project Facets 선택해서 java파일 내 버전으로 설정 Dynamic Web Module 버전 설정 톰켓 9는 4.0대를 지원 톰켓 8은 3.0대를 지원 구글치면 나옴 다됬으면 어플라이 클릭 이렇게 설정하고 콘솔에 보면 이렇게 두 개 오류난거 확인 src/test/resources 파일 안에 log4j.xml파일 삭제 이유는 필요없음 삭제하고 나면 오류가 하나밖에 안남음 남은 오류는 log4j.dtd가 없다는 뜻인데 이거는 구글에 검색해서 다운하면 됨 다운로드 받았으면 이 오류나있는 경로에 복사해서.. 2023. 8. 29.
Sweetalert 사용방법(Alert창 꾸미기) https://sweetalert2.github.io/ SweetAlert2 A beautiful, responsive, customizable and accessible (WAI-ARIA) replacement for JavaScript's popup boxes sweetalert2.github.io 주소에 들어감 왼쪽 목록에 Installation 클릭 CDN방식 복사 붙여넣기 Examples 클릭 이중에 하나 선택 해서 복사 사용할 곳에 붙여넣기 확인 2023. 8. 28.
e7e샘의 파일 업로드 및 다운로드!!(유용) //파일 다운로드!! //요 테크닉 잘 저장해주었다가 활용!, 요 방법이 젤 쉽고, 명확! function fDownload(urlPath) { let startIndex = urlPath.lastIndexOf("/")+1; let oFileName = urlPath.substring(startIndex); let aTag = document.createElement("a"); //a 태그 생성 aTag.href = urlPath; aTag.download = oFileName; //클릭시 다운로드가 되도록 downlad속성 추가 aTag.click(); //강제 클릭 발생 } //페이지 시작하자마자 리스트 뿌리깅 function getList(){ $.ajax({ type:"get", url:"/res.. 2023. 8. 28.
e7e샘의 파일 업로드 및 인설틍! servlet-context MtConfig package com.suji.merong.config; import org.springframework.context.annotation.Configuration; import org.springframework.web.servlet.config.annotation.ResourceHandlerRegistry; import org.springframework.web.servlet.config.annotation.WebMvcConfigurer; @Configuration //자바파일을 설정 파일로 변경시켜줌 public class MyConfig implements WebMvcConfigurer{ @Override public void addResourceHan.. 2023. 8. 28.
e7e샘의 sts4 spring boot 두번째(jqueryAJAX 및 sort) static에 index.html을 만들어줌 https://cdnjs.com/ cdnjs - The #1 free and open source CDN built to make life easier for developers Simple. Fast. Reliable. Content delivery at its finest. cdnjs is a free and open-source CDN service trusted by over 12.5% of all websites, serving over 200 billion requests each month, powered by Cloudflare. We make it faster and easier to load library fil cdnjs.com 여기 들어가.. 2023. 8. 25.
e7e샘의 sts4 spring boot 두번째 https://e-7-e.tistory.com/159 New -> Spring Starter Project를 눌러 아래와 같이 세팅한당.(난 jdk1.8이당) Dependency는 아래와 같이 선택하도록 하장(" data-og-host="e-7-e.tistory.com" data-og-source-url="https://e-7-e.tistory.com/159" data-og-url="https://e-7-e.tistory.com/159" data-og-image="https://scrap.kakaocdn.net/dn/qJ6GM/hyTIJb3r3k/l3b53gxB07fO2p43gkboPK/img.jpg?width=800&height=540&face=0_0_800_540,https://scrap.kakaoc.. 2023. 8. 24.