💻 MDN Web DOC https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/match String.prototype.match() - JavaScript | MDN The match() method retrieves the result of matching a string against a regular expression. developer.mozilla.org 💻 특정 문자 포함여부 체크 var telValue = $('#tel').val(); if ( telValue.match("-")) { alert('-을 제거해주세요.'); return false; }
| 수서역 깐부급 치킨을 먹게되었다.그래서 방문한 깐부치킨!깐부끼리만 갈 수 있는 줄 알았는데 누구나 갈 수 있는 곳이였다.설레임을 안고 입장깐부치킨이 보인다!메뉴판무슨 치킨이였는지 기억이 안나지만 맛있었다.
| User-Service에 인증권한 추가 (Authentication) RequestLogin.java 사용자 로그인 정보를 저장하기 위한 RequestLogin Model 클래스 import lombok.Data; import javax.validation.constraints.Email; import javax.validation.constraints.NotNull; import javax.validation.constraints.Size; @Data public class RequestLogin { @NotNull(message = "Email cannot be null") @Size(min = 2, message = "Email not be less than two characters") @Em..
| 체크박스에 체크된 obj들 조회하여 value 가져오기 // 체크된 obj들 조회하여 value 가져오기 $("input[name=partChk]:checked").each(function() { console.log($(this).val()); }) | 체크박스 전체 선택/해제 $("input[name=partChk]").prop("checked", false); //전체 해제 $("input[name=partChk]").prop("checked", true); // 전체 선택 | 체크박스 중복값 있는지 체크 var duplicatedList = new Array(); //이미 추가된 모든 checkbox 조회하여 순회 $(opener.document).find("input[name=partChk]..
| Order-service 💻 실습소스 https://github.com/yOneChu/springcloud_HomeToy/tree/master/order-service GitHub - yOneChu/springcloud_HomeToy: SpringCloud, Cloud Bus, RabbitMQ, Kafka SpringCloud, Cloud Bus, RabbitMQ, Kafka. Contribute to yOneChu/springcloud_HomeToy development by creating an account on GitHub. github.com 💻 OrderEntity package com.example.orderservice.jpa; import lombok.Data; import org.h..
| Catalog-service 💻 실습소스 https://github.com/yOneChu/springcloud_HomeToy/tree/master/catalog-service GitHub - yOneChu/springcloud_HomeToy: SpringCloud, Cloud Bus, RabbitMQ, Kafka SpringCloud, Cloud Bus, RabbitMQ, Kafka. Contribute to yOneChu/springcloud_HomeToy development by creating an account on GitHub. github.com 💻 1. API-Gateway에 설정 spring: application: name: apigateway-service cloud: gatewa..
| User-service와 Spring Cloud Gateway 연동 💻 user-service.java > application.yml server: port: 0 spring: application: name: user-service datasource: url: jdbc:postgresql://localhost:5432/basic username: postgres password: 1234 driver-class-name: org.postgresql.Driver jpa: hibernate: ddl-auto: create properties: hibernate: show_sql: true format_sql: true eureka: instance: hostname: localhost instanc..
| Validation 어노테이션이 작동이 안된다면? spring boot 2.3 version 이상부터는 spring-boot-starter-web 의존성 내부에 있던 validation이 사라졌습니다. 때문에 사용하시는 spring boot version이 2.3 이상이라면 validation 의존성을 따로 추가해주셔야 사용할 수 있습니다. Gradle // https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-validation implementation group: 'org.springframework.boot', name: 'spring-boot-starter-validation', version: '2.5..
| 수서역 밀숲배고픈 점심시간경쾌한 걸음으로 달려간 그곳밀숲이 보인다!점심시간에는 사람이 많다맛은 다 평균은 한다!기본반차는 단무지와 김치다!육개장칼국수닭반마리 칼국수나가는길에 다시 한번 찍어본 밀숲그날 칼국수가 땡기다면 그곳 밀숲으로 가라! 닭한마리칼국수 맛있다!!
💡 build.gradle(module) SDK 설정 android { compileSdk 32 defaultConfig { applicationId "com.kyhslam.part2.helloworld" minSdk 21 targetSdk 32 versionCode 1 versionName "1.0" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" } CompileSdk 어떤 안드로이드 SDK 버전으로 앱을 컴파일 할 것인지 지정 앱 개발 당시의 최신 API를 컴파일 SDK로 지정할 것을 권장 minSdk 앱을 사용할 수 있는 최소한의 API레벨 targetSdk 앱이 기기에서 동작할 때 사용하는 API 레벨 (앱이 개발시에 테스..
📝 컴포넌트 통신 뷰의 경우 컴포넌트로 화면을 구성하므로 같은 웹 페이지라도 데이터를 공유할 수 없다. 그 이유는 컴포넌트마다 자체적으로 고유한 유효범위(Scope)를 갖기 때문이다. 각 컴포넌트의 유효범위가 독립적이기 때문에 다른 컴포넌트의 값을 직접적으로 참조할 수 없다. 장점 뷰에서 미리 정의해 놓은 데이터 전달 방식에 따라 일괄된 구조로 애플리케이션을 작성하게 된다. 개발자 개개인의 스타일대로 구성되지 않고, 애플리케이션이 모두 동일한 데이터 흐름을 갖게 된다. 이렇게 되면 다른 사람의 코드를 빠르게 파악할 수 있어 협업하기에 좋다 상-하위 컴포넌트 관계 상위에서 하위로는 props 하위에서 상위로는 기본적으로 이벤트만 전달 가능 props 속성 (상위 -> 하위) 상위 컴포넌트에서 하위 컴포넌트..
버전 확인하는 쿼리 SELECT * FROM v$version;