일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
- 스프링부트기본설정
- spring
- JDBC connection pool
- Git
- javageneric
- embededtype
- 임베디드타입
- 자바제너릭
- jpqlquery
- OSIV
- JPA프록시
- springbootH2
- dockercmd
- 스프링부트
- JPAmapping
- 에이치투데이터베이스
- springboot기본설정
- jpa
- gitinitial
- 제이피큐엘쿼리
- httppie
- JPAproxy
- MySqlType
- 이해와 원리
- sql
- 데이터베이트h2
- JPA값타입
- JPA Hint & Lock
- Open EntityManager
- springbootproxy
- Today
- Total
목록전체 글 (69)
빡코
보호되어 있는 글입니다.

설정 정보는 Application Root에 두는 것이 좋다. 스프링컨테이너 ApplicationContext를 스프링컨테이너라 한다. 기존에는 개발자가 AppConfig를 사용해서 직접객체를 생성하고 DI를 했지만, 이제부터는 스프링컨테이너를 통해서 사용한다. 스프링컨테이너는@Configuration이 붙은 AppConfig를 설정(구성) 정보로 사용한다. 여기서@Bean이라 적힌 메서드를 모두호출해서 반환된 객체를 스프링컨테이너에 등록한다. 이렇게 스프링컨테이너에 등록된 객체를 스프링빈이라 한다. 스프링빈은@Bean이 붙은 메서드의 명을 스프링빈의 이름으로 사용한다. (memberService, orderService) 이전에는 개발자가 필요한 객체를 AppConfig를 사용해서 직접 조회했지만, 이..

Jupyter 환경을 이용해서 편리하게 사용하기 우선 기존 라인에서 Jupyter 설치 및 실행 >conda install jupyter // jupyter설치 >jupyter notebook 입력시 브라우저에 jupyter notebook 오픈 manage.py 파일에서 있는 이 라인의 의미는? def main(): os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'askcompany.settings') >> 장고가 시작될 때 꼭 필요한 라인, 장고 셋팅즈의 위치를 알려주고, 장고 설정에 필요한 세팅을 읽어들이게 됨 Juptyter Code import os os.environ['DJANGO_SETTINGS_MODULE'] = 'askcompany.settings'..

시나리오: 고객 문의가 종료되고, Case의 진행상태가 Close로 변경된다면, Process Builder의 Email alert에 의하여 NPS 이메일이 발송된다. 1. Process Builder설정 2. Add object 3. Add Creteria 4. Add Action 5.Email Alert 생성: New Email Alert 클릭 6. Email Template 생성 SETUP >> EMAIL TEMPLATE >> CLASSIC EMAIL TEMPLATE >> CREATE NEW FORDER 7. NEW TEMPLATE >> TEXT 선택 8. 상담리스트의 진행상황 필드의 값이 CLOSED로 변경이 되었을때 이메일 발송 9. 발송된 이메일
reduce 메서드 배열.reduce((누적값, 현잿값, 인덱스, 요소) => { return 결과 }, 초깃값); //덧셈예시 const oneTwoThree = [1,2,3]; result = oneTwoThree.reduce((acc, cur, i)=> { console.log(acc, cur, i); return acc + cur; }, 0); result; //결과값: 0 1 0 1 2 1 3 3 2 //초깃값을 적어주지 않으면 자동으로 초깃값이 0번째 인덱스의 값이 됩니다. const oneTwoThree = [1,2,3]; result = oneTwoThree.reduce((acc, cur, i)=> { console.log(acc, cur, i); return acc + cur; }); r..

What Is the Lightning Component Framework? It’s a modern framework for building single-page applications with dynamic, responsive user interfaces for Lightning Platform apps. It uses JavaScript on the client side and Apex on the server side. - single-page applications creates a container around a group of information. displays formatted date and time. displays the relative time difference betwee..