본문 바로가기

IT칼럼/ETC

Practical psql Commands That You Don’t Want To Miss Practical psql Commands That You Don’t Want To Miss Summary: in this tutorial, we give you a list of common psql commands that helps you query data from PostgreSQL database server faster and more effective. Connect to PostgreSQL database The following command connects to a database under a specific user. After pressing Enter PostgreSQL will ask for the password of the user. 1 2 3 C:\Program File.. 더보기
How to install and use PostgreSQL 요약 - 선수조건 - ubuntu 18.04 기본 셋업 - sudo 권한을 가진 root가 아닌 사용자와 기본 방화벽- 설치 - sudo apt-get update - sudo apt-get install postgresql postgresql-contrib- Postgresql Role, DB 관리 - sudo -i -u postgres (사용자 명을 postgres 로 설정) - psql ( postgresql database 접속) - \q (exit 명령어)- 새로운 Role 생성 - createuser --interactive (postgres id로 로그인 시) - sudo -u postgres createuser --interactive (일반 sudo 권한을 갖는 아이디로 로그인 시) - .. 더보기
React + Spring Boot CRUD 만들기 원문글은 okta blog 에서 Matt Raible 이 작성한 내용을 가져와서 따라 할 수 있도록 작성된 문서 입니다. 원본 문서는 하기 링크를 참조하시기 바랍니다. https://developer.okta.com/blog/2018/07/19/simple-crud-react-and-spring-boot 1. Spring Boot 2.0 API App 생성하기 https://start.spring.io 사이트를 통한 App 생성하기 https://developer.okta.com/blog/2018/07/19/simple-crud-react-and-spring-boot#add-a-jpa-domain-model 출처: https://4coops.tistory.com/entry/React-Spring-Boot.. 더보기
Reactjs + Spring Boot 독립 app @Springboot 시작시 Web 하나로 시작 model -> Integer Id, String name, String price 만들기 생성자 추가 MainController.java @Controller public class MainController { private static List items = new ArrayList(); static { items.add(new Items(1, "Apples", "$2")); items.add(new Items(2, "Peaches", "$5")); } @GetMapping(value = "/items", produces = MediaType.APPLICATION_JSON_VALUE) @CrossOrigin(origins = {"http://local.. 더보기
한영 변환 단축키를 Shift + Space 키로 지정하는 방법 한영 변환 단축키를 Shift + Space 키로 지원하는 키보드 드라이버로 변경하면 사용할 수 있습니다.이를 지원하는 키보드 드라이버는 'PC/AT 101키 호환 키보드/USB 키보드(종류 3)'입니다.보통의 경우 키보드 드라이버 지정은 Windows 10 설치 시 첫 옵션으로 지정할 수 있습니다.Windows 10을 설치 이후에도 드라이버 변경은 가능하나,일부 USB 키보드를 사용하여 Windows를 설치한 경우일반적인 방법으로는 키보드 설정/드라이버를 변경할 수 없는 경우가 있습니다.작업 방법 : 키보드 드라이버 변경Windows 시작 버튼을 마우스 오른쪽 클릭 후 '장치 관리자'를 클릭합니다.장치 관리자의 장치 항목 중 '키보드'를 클릭하여 설치된 항목을 확인합니다.설치된 키보드 항목 중 'HID.. 더보기