분류 전체보기 51

Warning: Failed prop type: The prop `justify` of `ForwardRef(Grid)` is deprecated. Use `justifyContent` instead, the prop was renamed.

리액트를 연습해하다보면 @material-ui 를 자주 쓰게 되는데 justify는 더이상 지원하지 않는다고 한다. justify 에서 justifyContent로 바꿔 쓰면 된다. 변경전 이미 계정이 있습니까? 로그인 하세요. 변경후 이미 계정이 있습니까? 로그인 하세요. -- 출처 https://githubhot.com/repo/jungsoft/materialui-daterange-picker/issues/24

ERROR/react 2022.03.15

'Switch' is not exported from 'react-router-dom' 에러

공식문서에서 확인해보니 swich 에서 routes로 바꾸란다. ㅡㅡ 한참을 해맸네.. -기존 -변경 Upgrade all elements to React Router v6 introduces a Routes component that is kind of like Switch, but a lot more powerful. The main advantages of Routes over Switch are: All s and s inside a are relative. This leads to leaner and more predictable code in and Routes are chosen based on the best match instead of being traversed in order. Th..

ERROR/react 2022.03.13

Mybatis resultType

resultType에는 검색 결과를 Java의 어떤 형태로 변환할 것인지를 설정한다. 일반적으로 java.util.Map과 같이 변환 되는 클래스의 FQCN(Fully Qualified Class Name)를 지정한다. 그러나, 일부 자주 이용하는 형태에 대해서는 미리 별칭(alias)이 정의되어 짧은 이름으로 지정할 수 있다. 이하는, org.apache.ibatis.type.TypeAliasRegistry에서 추출하였다. 별칭(alias)데이터 형태(data type) string String date Date map Map hashmap HashMap list List arraylist ArrayList decimal BigDecimal bigdecimal BigDecimal biginteger B..

TIPS 2022.03.13