developer

고정 헤더 영역

글 제목

메뉴 레이어

developer

메뉴 리스트

  • 홈
  • 태그
  • 방명록
  • 분류 전체보기 (251)
    • 한양대공학대학원컴퓨터공학과 (1)
    • 통신프로토콜 (2)
    • eclipse (4)
    • spring (37)
      • spring 게시판 만들기 (6)
      • spring 로그인 처리 (2)
      • spring boot (9)
      • spring cloud config (0)
      • spring cloud eureka (0)
    • Git (19)
    • 체당금신청 (5)
    • Mybatis (8)
    • 전세금돌려받기 (2)
    • 아이폰 개발 ( i-os ) (5)
    • 주식 (5)
      • 일일매매동향 (5)
    • Vue.js (12)
      • Vue.js 동영상강좌 (4)
    • 자바강좌 (67)
      • 리팩토링 (13)
    • 취미 (21)
      • 관심기사 (8)
      • 영화 (2)
      • 여행 (9)
      • 마케팅 (2)
    • Database (25)
      • Oracle (10)
    • C언어강좌 (1)
    • 자바스크립트 (18)
      • 자바스크립트 디자인패턴 (2)
      • jquery (9)
    • 파이썬 (5)
    • 정보관리기술사 (4)

검색 레이어

developer

검색 영역

컨텐츠 검색

분류 전체보기

  • 파이썬 모듈의 개념

    2023.04.14 by somiyuralove

  • 파이썬 상속 개념

    2023.04.14 by somiyuralove

  • 파이썬 클래스

    2023.04.13 by somiyuralove

  • 자바 리터럴의 개념

    2023.04.13 by somiyuralove

  • format

    2023.04.12 by somiyuralove

  • mybatis ORA-01745: 호스트/바인드 변수명이 부적합합니다

    2023.04.06 by somiyuralove

  • [MyBatis] [Error] Cause: java.lang.IndexOutOfBoundsException

    2023.04.06 by somiyuralove

  • spring integration tcp 정리

    2023.03.02 by somiyuralove

파이썬 모듈의 개념

What is a Module? Consider a module to be the same as a code library. A file containing a set of functions you want to include in your application. Create a Module To create a module just save the code you want in a file with the file extension .py: Use a Module Now we can use the module we just created, by using the import statement: Note: When using a function from a module, use the syntax: mo..

파이썬 2023. 4. 14. 20:39

파이썬 상속 개념

Python Inheritance Inheritance allows us to define a class that inherits all the methods and properties from another class. Parent class is the class being inherited from, also called base class. Child class is the class that inherits from another class, also called derived class. Create a Parent Class Any class can be a parent class, so the syntax is the same as creating any other class: Create..

파이썬 2023. 4. 14. 20:02

파이썬 클래스

자바만 쭉해오다가 요즘들어 그냥 가볍게 파이썬을 공부하고 있습니다. 객체지향 개념이 있으신 분이면 금방 익히실 수 있을듯합니다. w3schools 좋네요. Super thanks.

취미/여행 2023. 4. 13. 19:49

자바 리터럴의 개념

자바에서 리터럴(Literal)은 소스 코드에서 고정된 값을 표현하는 용어입니다. 리터럴은 변수나 상수에 할당될 수 있습니다. 예를 들어, 정수형 변수에 5라는 값을 할당하려면 다음과 같이 작성할 수 있습니다. java code int num = 5; 여기서 5는 리터럴입니다. 이외에도 다음과 같은 리터럴이 있습니다. 정수형 리터럴: 10, -20, 0b1010 (2진수), 0777 (8진수), 0xCAFE (16진수) 등 실수형 리터럴: 3.14, 2.0f (float형), 6.02e23 (지수 표기법) 문자형 리터럴: 'A', '\n', '\u0041' (유니코드) 문자열 리터럴: "Hello, World!", "" 자바에서는 리터럴을 사용하여 소스 코드를 간결하고 가독성 높게 작성할 수 있습니다. ..

자바강좌 2023. 4. 13. 08:55

format

format(value, format_spec='')¶ Convert a value to a “formatted” representation, as controlled by format_spec. The interpretation of format_spec will depend on the type of the value argument; however, there is a standard formatting syntax that is used by most built-in types: Format Specification Mini-Language. The default format_spec is an empty string which usually gives the same effect as calli..

파이썬 2023. 4. 12. 21:44

mybatis ORA-01745: 호스트/바인드 변수명이 부적합합니다

ORA-01745 오류는 SQL 쿼리에서 사용된 호스트/바인드 변수명이 올바르지 않은 경우 발생합니다. MyBatis에서 이 오류가 발생하는 경우에는 매핑 파일에 정의된 변수 이름이 SQL 문에 사용된 변수 이름과 일치하지 않는 경우가 일반적입니다. 이 문제를 해결하기 위해 먼저 매핑 파일과 SQL 문을 다시 확인하여 변수 이름이 일치하는지 확인해야 합니다. 예를 들어, #{userId}라는 변수 이름을 매핑 파일에서 사용하고 있지만, SQL 문에서는 :userId라는 변수 이름을 사용하고 있다면 이 문제가 발생할 수 있습니다. 이 경우에는 매핑 파일과 SQL 문에서 동일한 변수 이름을 사용하도록 수정해야 합니다. 또한 호스트/바인드 변수의 유효성을 확인하기 위해 쿼리를 실행하기 전에 MyBatis가 생..

Mybatis 2023. 4. 6. 17:16

[MyBatis] [Error] Cause: java.lang.IndexOutOfBoundsException

[문제상황] Mybatis를 사용하여 데이터베이스에서 데이터를 가져오는 과정에서 에러가 발생했다. Cause: java.lang.IndexOutOfBoundsException: Index 4 out of bounds for length 4 문제 상황을 보면 배열을 사용할 때 나타나는 오류와 비슷한데... 동적으로 크기 계산을 하고 있기 때문에 에러를 어디서 체크해야할지 고민했다. [해결 방법] 결과적으로 원인은 모델 객체였다. 내 모델은 @Builder를 사용하고 있는데, Mybatis에서 객체를 매핑할때 resultMap로 리턴하는데 Mybatis에서 미리 인스턴스를 생성한다. 그런데 모델 클래스에 모든 인자가 필요한 생성자밖에 없어서 문제가 생기는 것이다. 그래서 필요한 인자가 없다면 객체 수에 따라..

Mybatis 2023. 4. 6. 10:17

spring integration tcp 정리

나이가 들수록 기억력이 감퇴하여 이글을 쓰는 목적은 spring integration tcp를 정리하기 위함이다. 시간날때마다 프로젝트에서 경험했던 문제점들과 오류들 및 삽질들을 시간날때마다 하나씩 채워나가보겠다. 그래서 오타도 있을테고 잘 못 설명한 부분도 있을테니 궁금한점이 있으면 언제든 댓글 환영한다. 우선적으로 아래의 스프링 공식 문서 reference를 참고하기 바란다. https://docs.spring.io/spring-integration/reference/html/ip.html TCP and UDP Support Spring Integration provides channel adapters for receiving and sending messages over internet proto..

spring/spring boot 2023. 3. 2. 18:05

추가 정보

인기글

최신글

페이징

이전
1 2 3 4 5 ··· 32
다음
TISTORY
developer © Magazine Lab
페이스북 트위터 인스타그램 유투브 메일

티스토리툴바