Seemingly Online
close
프로필 배경
프로필 로고

Seemingly Online

  • 카테고리 (571)
    • Language (250)
      • 알고리즘 (100)
      • Java (144)
      • python (2)
      • Kotlin (4)
    • WEB (141)
      • Spring (24)
      • Spring Security (3)
      • Next.js (3)
      • TypeScript (3)
      • JavaScript (45)
      • jQuery (7)
      • CSS (25)
      • XML (3)
      • Maven (1)
      • Gradle (1)
      • JSP (1)
      • Thymeleaf (10)
      • HTML (11)
      • MyBatis (1)
      • JPA (3)
    • App (45)
      • Flutter (34)
      • Dart (4)
      • Android (2)
      • IOS (3)
      • Firebase (2)
    • Git (6)
      • GitHub (6)
    • AWS (15)
      • SCT (2)
      • Amazon Aurora (1)
      • S3 (2)
      • EventBridge (1)
      • EC2 (7)
      • EFS (1)
    • DataBase (44)
      • MySQL (19)
      • Oracle SQL (19)
      • Postgre-SQL (6)
    • OS (33)
      • Linux (27)
      • Windows (1)
      • Mac (5)
    • Tool (15)
      • DocKer (6)
      • Intellij (7)
      • VScode (2)
    • IT (17)
      • Developer-etc (13)
      • 개발상식 (4)
    • CodePen (2)
      • 캐러셀 (2)
  • 홈
  • 방명록
[Java] 자바  Reflection API를 사용하여 특정 필드 타입 변수 확인하기 ex) boolean

[Java] 자바 Reflection API를 사용하여 특정 필드 타입 변수 확인하기 ex) boolean

2023-10-20 1. 방법 java.lang.reflect Field 를 활용하면 주어진 클래스의 필드 정보를 확인 할 수 있다. public class Person { private String name; private int age; private boolean isStudent; private boolean isEmployed; // Getter and Setter methods go here... public static void main(String[] args) { Person person = new Person(); // Assume you have set values for the fields using setter methods. Class personClass = person.get..

  • format_list_bulleted Language/Java
  • · 2023. 10. 20.
  • textsms
[Intellij] 인텔리제이 커스텀 파일 템플릿 추가하기

[Intellij] 인텔리제이 커스텀 파일 템플릿 추가하기

2023-10-101. 방법 우선적으로 사용할 템플릿 파일을 아무거나 만들어준다. 이후 File  > Save File as Template생성할 Template 명을 확인 한 뒤 OK 를 누르면 된다. 이후 파일 생성시 만들어진 템플릿을 사용하여 생성하면 된다.2. 수정 방법 Setting  > Editor > File and Code Templates 에서 자신의 편집하고 싶은 또는 기존에 template 정보를 수정할 수 있다. 메인 이미지 출처 : 사진: Unsplash의NEOM

  • format_list_bulleted Tool/Intellij
  • · 2023. 10. 10.
  • textsms
[Flutter] Windows 플러터 설치 및 안드로이드 Emulator 연동 하기

[Flutter] Windows 플러터 설치 및 안드로이드 Emulator 연동 하기

2023-10-08 1. 설치 공식 홈페이지에서 설치하는 방법도 있지만 개인적으로는 chocolatey를 활용해 설치하는 게 조금 더 편하고 간편하기 때문에 해당 방법을 추천한다. 우선적으로 windows powershell을 관리자 모드로 실행한다. 이후 아래 링크로 들어 간다. https://chocolatey.org/install Installing Chocolatey Chocolatey is software management automation for Windows that wraps installers, executables, zips, and scripts into compiled packages. Chocolatey integrates w/SCCM, Puppet, Chef, etc. Cho..

  • format_list_bulleted App/Flutter
  • · 2023. 10. 8.
  • textsms
[JavaScript] textArea 자동 크기 조절 방법 (resize)

[JavaScript] textArea 자동 크기 조절 방법 (resize)

2023-09-22 1. 방법 숨겨진 textarea의 auto 설정으로 새롭게 입력받은 input 값에 따라 높이를 계산하고 이후 실제 textare에 적용한다. 실제 textarea에 바로 적용하지 않는 이유는 바로적용 시 auto 속성 값으로 인해 웹창에 스크롤도 같이 이동하기 때문이다.

  • format_list_bulleted WEB/JavaScript
  • · 2023. 9. 22.
  • textsms
[Next.js] Warning: `value` prop on `input` should not be null. Consider using an empty string to clear the component or `undefined` for uncontrolled components. 오류 해결

[Next.js] Warning: `value` prop on `input` should not be null. Consider using an empty string to clear the component or `undefined` for uncontrolled components. 오류 해결

2023-09-18 1. 방법 GetServerSideProps으로 데이터를 가져온 후 input에 데이터를 넣고 있었는데, 해당 데이터가 없을 경우 페이지 상에서는 오류가 나지 않지만 콘솔에서는 아래와 같은 오류가 발생하고 있었다. Warning: `value` prop on `input` should not be null. Consider using an empty string to clear the component or `undefined` for uncontrolled components. 위와 같은 오류가 발생시 데이터가 없을 경우 default로 넣어줄 값을 선언해 주면 해당 오류는 사라지게 된다. 아래와 같은 방법으로 값을 넣어주면 된다. value={userName || ''} 이렇게 데..

  • format_list_bulleted WEB/Next.js
  • · 2023. 9. 18.
  • textsms
[JavaScript] contenteditable 붙여넣기 텍스트만 넣기

[JavaScript] contenteditable 붙여넣기 텍스트만 넣기

2023-09-14 1. 방법 contenteditable 을 이용한 태그에 붙여넣기를 하면 일반 텍스트가 아닌 html 형태로 들어가게 되는데 이를 일반 텍스트가 들어갈 수 있게 변경하는 방법을 알아보자. 위 코드는 해당 요소에 붙여 넣기 이벤트를 감지하고, 붙여 넣은 텍스트를 HTML 태그 없이 해당 요소에 삽입하며, 텍스트를 붙여 넣을 때 HTML 태그 속성을 포함하지 않도록 할 수 있다. 메인 이미지 출처 : 사진: Unsplash의Ori Song

  • format_list_bulleted WEB/JavaScript
  • · 2023. 9. 14.
  • textsms
  • navigate_before
  • 1
  • ···
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • ···
  • 96
  • navigate_next
공지사항
전체 카테고리
  • 카테고리 (571)
    • Language (250)
      • 알고리즘 (100)
      • Java (144)
      • python (2)
      • Kotlin (4)
    • WEB (141)
      • Spring (24)
      • Spring Security (3)
      • Next.js (3)
      • TypeScript (3)
      • JavaScript (45)
      • jQuery (7)
      • CSS (25)
      • XML (3)
      • Maven (1)
      • Gradle (1)
      • JSP (1)
      • Thymeleaf (10)
      • HTML (11)
      • MyBatis (1)
      • JPA (3)
    • App (45)
      • Flutter (34)
      • Dart (4)
      • Android (2)
      • IOS (3)
      • Firebase (2)
    • Git (6)
      • GitHub (6)
    • AWS (15)
      • SCT (2)
      • Amazon Aurora (1)
      • S3 (2)
      • EventBridge (1)
      • EC2 (7)
      • EFS (1)
    • DataBase (44)
      • MySQL (19)
      • Oracle SQL (19)
      • Postgre-SQL (6)
    • OS (33)
      • Linux (27)
      • Windows (1)
      • Mac (5)
    • Tool (15)
      • DocKer (6)
      • Intellij (7)
      • VScode (2)
    • IT (17)
      • Developer-etc (13)
      • 개발상식 (4)
    • CodePen (2)
      • 캐러셀 (2)
최근 글
인기 글
최근 댓글
태그
  • #자바알고리즘
  • #BOJ
  • #Java8
  • #Java
  • #자바공부
  • #백준
  • #자바
  • #자바기초
  • #backjoon
  • #백준알고리즘
전체 방문자
오늘
어제
전체
Copyright © 쭈미로운 생활 All rights reserved.
Designed by JJuum

티스토리툴바