분류 전체보기(34)
-
intellij plugin 단축키
2. toggle case 변경 file > Setting > keymap > Editor Actions > Toggle Case Ctrl + Shift + Caps 3. Request Mapper Shift + Ctrl + \ : mvc url 기반으로 검색 가능 4. iBATIS/MyBatis plugin Ctrl + T : xml mapper 이동 Ctal + q : mapper java로 이동 참조 goddaehee.tistory.com/198 [IntelliJ] Intellij 기본 설정2(플러그인 설정) [IntelliJ] Intellij 기본 설정2(Plugin 설정) 안녕하세요. 갓대희 입니다. 이번 포스팅은 [ IntelliJ 기본 플러그인 설치 ] 입니다. : ) 첫번째로는 인텔리J 설..
2020.10.27 -
[linux] ip 확인 명령어
ip 확인 명령어 ifconfig | egrep "(^\\w|inet )" ifconfig | grep "inet " /ifconfig -a | grep "inet " | grep "Bcast:" | awk '{print $2}' | awk -F: '{print $2}' ip addr | grep "inet " | grep brd | awk '{print $2}' | awk -F/ '{print $1}' ip route | awk '{print $NF;exit}'
2017.03.16 -
[error] CreateProcess error=206, 파일 이름이나 확장명이 너무 깁니다
CreateProcess error=206, 파일 이름이나 확장명이 너무 깁니다 task pathingJar(type: Jar) { dependsOn configurations.runtime appendix = 'pathing' doFirst { manifest { attributes "Class-Path": configurations.runtime.files.collect {it.toURL().toString().replaceFirst("file:/", '/')}.join(" ") } }} bootRun { addResources = false systemProperty 'spring.profiles.active', 'local' dependsOn pathingJar doFirst { classpath..
2017.03.06 -
[intelliJ] Export Jar
Export Jar 출처 : http://gyrfalcon.tistory.com/entry/IntelliJ-Export-Jar Project Structrure에서 Jar용 Artifact를 추가하면 된다. 추가 후 Build > Build Artifact 로 설정한 Jar를 선택하면 된다.
2017.02.15 -
[PostgreSQL] 외부접속 허용설정
PostgreSQL 외부접속 허용설정 1. pgadmin을 실행 2. file > open 하고 pg_hba.conf 선택 3. 체크박스 부근에 공배긍로 이루어진 부분을 더블 클릭 4. 아래 화면 처럼 설정 [참고] 1. PostgreSQL 외부접속 허용설정
2017.02.15 -
[SOAP] JAX-WS Annotation
JAX-WS Annotation 출처 : JAX-WS 어노테이션 어노테이션 클래스 : javax.jws.WebService어노테이션 : @WebService 어노테이션은 웹 서비스를 구현할 때에 Java클래스를 표시하고 웹 서비스 인터페이스를 구현 할 때에는 SEI(Service Endpoint Interface)를 표시합니다 중요 : 웹 서비스를 구현하는 Java 클래스가 @WebService 또는 @WebServiceProvider 어노테이션을 지정해야 합니다. 어노테이션이 둘 다 있을 수는 없습니다.이 어노테이션은 클라이언트 또는 서버 SEI 또는 서버 엔드포인드 구현 클래스에서 적용 가능합니다.또한 어노테이션이 endpointInterface 속성을 통해 SEI를 참조한는 경우, SEI에 @Web..
2017.02.09