분류 전체보기378 vuex - usage - 구조 //https://vuex.vuejs.org/kr/guide/structure.html - api index.js (vuejs-axios-공통 참고) - store ㄴ index.js ㄴ state.js ㄴ actions.js ㄴ mutations.js ㄴ getters.js - main.js //main.js import Vue from 'vue' import router from './router' import App from './App.vue' import store from './store' new Vue({ el:'#app', router, store, render: h => h(App) }) - index.js //index.js import Vue from 'vue' import .. 2020. 8. 10. vuejs-axios - 공통 처리 방법 api 공통 구현 (api/index.js) import axios from 'axios' //인증이 안되었을 경우 리턴 로그인 url 로 라우팅 하기 위해 import router from '../router' const DOMAIN = 'http://localhost:3000' const UNAUTHORIZED = 401 //인증이 안되었을 경우 로그인 하도록 라우팅 하는 함수 const onUnauthroized = () => { router.push('/login') } //api 호출 라이브러리에 의존적이지 않도록 공통으로 요청하는 부분을 구현 const request = (method, url, data) => { return axios ({ method, url: DOMAIN + url, d.. 2020. 8. 10. Spring boot kafka demo with docker-compose spring boot kafka demo with docker ref kafka with springboot description kafka ref kafka 는 pub-sub 모델을 기반으로 동작한다. 구성요소: zookeeper: producer 와 consumer 를 관리한다. producer: topic 의 메시지 생성후 해당 메시지를 broker 에 전달 consumer: topic 을 subscribe 한다. 메시지를 pull 방식으로 broker 로부터 가져오기 때문에 batch consumer 구현 가능. broker: topic 을 기준으로 메시지 관리 전달받은 메시지를 topic 별로 분류하여 적재 topic: partition 단위로 구성 된다. 클러스터 서버에 분산 저장할 경우 pa.. 2020. 7. 20. Flux and Mono Spring Reactive 를 위해 flux and Mono 에 대해 간단하게 테스트 해보도록 하고 기록으로 남기도록 한다. private final static String[] countries = new String[]{"Korea","China","America","Canada"}; private final static Flux countiesFlux = Flux.just("Korea","China","America","Canada"); /** * create flux */ @Test public void createFluxWithJustAndVerify(){ //subscribe 를 사용하여 구독 및 출력 하도록 한다. countiesFlux.subscribe(s->{ System.out.pri.. 2020. 7. 14. 01. 텐서플로우 와 간단한 신경망 구현 실습 텐서 플로우 - 텐서플로우는 딥러닝 프레임워크이다. - 현재 2020년 06월 기준 최신 버전은 2.0 이다. - 2.0 버전에서는 텐서플로우에 케라스가 포함되어있다. - 케라스는 고수준의 api 를 제공 한다. - 구글 클라우드를 사용하면 GPU/TPU 를 사용 할 수 있는 colab 을 사용하여 텐서플로우 및 sklearn, 등 머신러닝에 필요한 거의 모든패키지가 제공되며, 필요한 패키지 설치 가능하다, 또한 구글 드라이브에 저장된 데이터를 사용 할 수있으며, 외부 데이터를 불러와 사용 할 수 도 있다. 텐서플로우 난수 및 정규분포 생성 - 텐서 플로우 난수 생성 #균일한 분포의 난수를 출력 해준다. #tf.random.uniform(모양, 최소값, 최대값) #모양: 행렬, shape 을 말한다. r.. 2020. 6. 5. how to generate random number or Alphabetic in java apache.commons-lang3 compile group: 'org.apache.commons', name: 'commons-lang3', version: '3.4' tutorial - generate sample code: //[a-zA-Z] -> RandomStringUtils.randomAlphabetic(count) //[0-9] -> RandomStringUtils.randomNumeric(count) //[a-zA-Z0-9] -> RandomStringUtils.randomAlphanumeric(count) String.format("%s-%s-%s", RandomStringUtils.randomAlphabetic(5), RandomStringUtils.randomNumeric(5), R.. 2020. 4. 30. 이전 1 ··· 11 12 13 14 15 16 17 ··· 63 다음