본문 바로가기

How to.

(21)
maven settings.xml D:/Dev/eGovFrameDev-3.7.0-64bit/maven_repository_3_7/repository
윈도우 10 시리얼 확인하는 방법 reg query "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\SoftwareProtectionPlatform" /v BackupProductKeyDefault
error An error occured while trying to install CocoaPods, which is required by this template. sudo xcode-select --switch /Applications/Xcode.app sudo gem install activesupport -v 6.1.7.4 sudo gem install cocoapods
TypeError: cli.init is not a function npm uninstall -g react-native-cli npm install -g react-native-cli npm install -g react-native
Error: Command failed: npm install --save --save-exact react-native sudo npm cache clean --force sudo npm install --global yarn
Mac Node 버전 update sudo n latest sudo ln -sf /usr/local/bin/node /usr/local/bin/node sudo npm install -g n ln -sf /usr/local/bin/node /usr/local/bin/node
this is incompatible with sql_mode=only_full_group_by java.sql.SQLSyntaxErrorException: In aggregated query without GROUP BY, expression #1 of SELECT list contains nonaggregated column 'aaaaaa'; this is incompatible with sql_mode=only_full_group_by mysql 버전 5.6 이상 에러 발생 SELECT @@sql_mode; ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION 세션 수정 SET SESSION sql_mode = 'STRICT_TRANS_T..
java vo 내용 출력 Object obj = DataVo; for (Field field : obj.getClass().getDeclaredFields()) { field.setAccessible(true); Object value = field.get(obj); System.out.println("field name : " + field.getName()+"\t value : " + value); }