목록전체 글 (139)
HEROJOON 블로그(히로블)
에러명 Error Code: 1175. You are using safe update mode and you tried to update a table without a WHERE that uses a KEY column To disable safe mode, toggle the option in Preferences -> SQL Editor and reconnect. -> Mysql Workbench에서 Update나 Delete를 사용하려고 할 때 발생하는 에러이다. 모두 발생하는 것은 아니고, 테스트를 해보니 Update나 Delete를 사용하려 할 때 키값으로 Where절을 주지 않았을 경우 발생한다. 예를들어 Update herojoon_table set name = "herojoon2" whe..
- Froala Editor Docs : https://froala.com/wysiwyg-editor/docs/ app.value('froalaConfig', { toolbarInline: false, placeholderText: "Enter Text Here", toolbarButtons : ["bold", "italic", "underline", "fontSize", "textColor"], height: 500, // froala editor 세로길이 width: 800, // froala editor 가로길이 key: 'froala editor license key정보 입력' });
AngularJS에서 동적으로 id, ng-model의 name을 할당할때 예시입니다.
checkbox 초기값 셋팅 및 선택한 값 가져오기 흰우유 초코우유 딸기우유 오디우유 선택한 checkbox value 가져오기 radio button 초기값 셋팅 및 선택한 값 가져오기 흰우유 초코우유 딸기우유 오디우유 선택한 radio value 가져오기
// route에 param 설정 app.config(['$routeProvider', function($routeProvider) { $routeProvider .when('/', { templateUrl: 'main.html', controller: 'MainController' }) .when('/samplepage/:sampleId', { templateUrl: 'samplepage.html', controller: 'SampleController' }) .otherwise({ redirectTo: '/' }); }]); // SampleController.js에서 넘겨진 Param 가져오기 $scope.sampleId = $routeParams['sampleId'];
목표 여러 Push가 전송될 때 Android 앱에서 메시지 받을 수 있도록 코드를 수정하는 것입니다. FCM에서 발송된 여러 Push메시지를 받을 때 Android에서 첫번째 Push는 잘 받지만 나머지 Push에서는 처리가 오래 걸린다는 메시지와 함께 메시지를 띄우지 못한 이슈가 있었습니다. Service took too long to process intent: com.google.android.c2dm.intent.RECEIVE App may get closed. 이 부분은 이전에 만들었던 예제에서 발생하므로 발생하는 예제인 2020/02/28 - [Backend] - Android 앱 프로젝트에 FCM설정 및 코드작성 코드를 수정하겠습니다. (참고 Docs : https://firebase.go..
#kubectl pod 목록 조회 kubectl get pods #kubectl pod 상세 정보 확인 kubectl describe pod -n {namespace} {pod id} #kubectl namespace의 pod 조회 kubectl get pod -n {namespace} #kubectl service 목록 조회 kubectl get service -n {namespace} #kubectl logs 확인 kubectl logs -f -n {namespace} {pod name} #kubectl node의 리소스 확인 kubectl describe nodes {node nmae} #kubectl node 확인 kubectl top nodes #kubectl 모든 namespace의 pod 자..
last update: 2022-04-14 아래 예제 코드: https://github.com/herojoon/vuejs-app환경Spring Framework: Spring Boot 2.6.6Build: Gradle 6.9.2Java: JDK 11Front: Vue 2 / Node.js 14.17.6 / NPM 6.14.15목표Spring Boot + Vue를 하나의 프로젝트로 관리하고자 할때 One Build가 가능하도록 프로젝트를 구성할 수 있습니다.결론적으로 gradle build 명령어를 통해 Spring Boot + Vue 프로젝트의 빌드를 한번에 할 수 있도록 프로젝트를 구성할 것입니다. Backend API와 Front 코드를 여러 프로젝트로 관리하기 번거로울 경우 하나의 프로젝트로 깔끔하..