전체 글
-
Spring 라이브러리JAVA/Spring 2021. 2. 21. 17:11
*스프링 부트 라이브러리* spinrg-boot-starter-web spring-boot-start-tomcat: 톰캣(웹서버) spring-webmvc: 스프링 웹 MVC spring-boot-starter-thymeleaf:타임리프 템플릿 엔진(View) spring-boot-starter(공통): 스프링부트 + 스프링 코어 + 로킹 spring-boot - spring-core spring-boot-starter-logging - logback, slf4j *테스트 라이브러리* spring-boot-starter-test junit : 테스트 프레임워크 mockito: 목 라이브러리 assertj: 테스트 코드를 좀더 편하게 작성하게 도와주는 라이브러리 spring-test : 스프링 통합 테스트..
-
Css카테고리 없음 2021. 1. 14. 16:30
내가 자주 쓰는 css 정리 스타일 컴포넌트에 css 속성으로 재활용이 수월해진다. Ex) display justify-content position padding white-space : 공백처리 outline: none; border: none; transition : 애니메이션 효과 &:hover { transform: translateY(-2px); : y축으로(위로) 2만큼 이동 } @media screen and (max-width: 768px) { display: none; }
-
-
React notistacktReact,JS,TS 2020. 12. 27. 23:34
www.npmjs.com/package/notistack notistack Highly customizable notification snackbars (toasts) that can be stacked on top of each other www.npmjs.com $ npm install @material-ui/core $ npm install notistack 로 App.js를 감싸줘야함 maxSnack={3} 최대알람 anchorOrigin={{ vertical="top", horizontal="center", }} //알람위치의 속성 ex) 회원가입이 된 경우 variant:"success" 알람 else "error" 에러
-