- Java Model -> Map JavaModel javaModel = new JavaModel(); Map param = new ObjectMapper().convertValue(javaModel, new TypeReference(){}); - Map -> Java Model Map tmpMap = new HashMap() JavaModel javaModel = new ObjectMapper().convertValue(tmpMap, JavaModel.class);
- 저장시 사용하지 않는 import 자동 삭제 - 설정 방법 1. 단축키 ctrl + shift + p 입력 2. Preference: Configure Language Specific Settings 선택.. 3. 설정 적용할 언어 선택(예 java, typescript, c..) -> settings.json파일 실행됨 4. settings.json파일에 아래와 같이 등록 "[java]": { "editor.codeActionsOnSave": { "source.organizeImports": true, "source.fixAll": true } } "[typescript]": { "editor.codeActionsOnSave": { "source.organizeImports": true, "sour..
----------------------------------------------------------------------------------------------------------------------------------- - Java 소스 import com.jcraft.jsch.Channel; import com.jcraft.jsch.ChannelSftp; import com.jcraft.jsch.JSch; import com.jcraft.jsch.Session; ... ... private Session session = null; private Channel channel = null; private ChannelSftp channelSftp = null; ... ... // SFTP..
----------------------------------------------------------------------------------------------------------------------------------- - Java 소스 import java.io.File; import java.io.FileInputStream; import java.io.InputStream; import java.io.PrintWriter; import org.apache.commons.net.PrintCommandListener; import org.apache.commons.net.ftp.FTP; import org.apache.commons.net.ftp.FTPClient; import org...
----------------------------------------------------------------------------------------------------------------------------------- - bcrypt는 패스워드 저장을 목적으로 설계된 암호화 Open Source이다. (단방향 암호화) - Niels Provos와 David Mazières가 1999년 발표했고, 현재까지 사용되는 가장 강력한 해시 메커니즘 중 하나이다. - bcrypt는 OpenBSD에서 기본 암호 인증 메커니즘으로 사용되고 있다. - 미래에 PBKDF2보다 더 경쟁력이 있다고 여겨진다. - bcrypt에서 “work factor” 인자는 하나의 해시 다이제스트를 생성하는 데 얼마만큼의..
Usage: $ ionic [] [--help] [--verbose] [--quiet] [--no-interactive] [--confirm] [options] Global Commands: config ...... Manage CLI and project config values (subcommands: get, set) docs ..................... Open the Ionic documentation website info ..................... Print system/environment info login .................... Login with your Ionic ID signup ................... Create an Ionic ..
ng build Builds your app and places it into the output path (dist/ by default). aliases: b --target (String) (Default: development) Defines the build target. aliases: -t , -dev (--target=development), -prod (--target=production), --target --environment (String) Defines the build environment. aliases: -e , --environment --output-path (Path) Path where output will be placed. aliases: -op , --outpu..