IT개발56 [Android(Flutter)]Firebase authentication을 사용한 이메일/비번 서비스 구현 Firebase Authentication을 사용하여 이메일과 비밀번호로 로그인하는 기능을 Flutter 앱에 구현하는 방법. Firebase Authentication은 Google에서 제공하는 서비스로, 다양한 인증 방법을 쉽게 구현할 수 있는 기능을 제공합니다. Flutter와 Firebase를 연동하여 이메일/비밀번호 인증 기능을 구현준비 먼저 프로젝트에서 Firebase를 사용할 수 있도록 몇 가지 준비가 필요Flutter 환경이 설치되어 있어야 합니다.(저는 android studio에서 진행)Firebase 프로젝트를 생성하고, Firebase Authentication을 활성화https://firebase.google.com/ Firebase | Google's Mobile and Web .. 2024. 12. 29. [트러블 슈팅]JAVA 버전 변경이 안 될 때 해결 방법(Path경로만 수정이 안될 경우) 자바 17을 사용하기 위해 환경 변수를 수정했음에도 불구하고 (Path)버전 변경이 되지 않는 현상.해결 과정1. JDK 설치우선, 원하는 자바 버전(JDK)을 다운로드하여 설치해야 합니다. JDK는 오라클 공식 웹사이트에서 다운로드할 수 있습니다.https://www.oracle.com/kr/java/technologies/downloads/ Download the Latest Java LTS FreeSubscribe to Java SE and get the most comprehensive Java support available, with 24/7 global access to the experts.www.oracle.com 2. 환경 변수 추가 (JAVA_HOME 설정)시스템 환경 변수에서 JAV.. 2024. 12. 6. [Spring Boot] 개발 환경 설정부터 H2 데이터베이스 웹 연결 목차개발 환경 설정Spring Boot 프로젝트 생성H2 데이터베이스 설정엔터티(Entity)H2 웹 테스트1. 개발 환경 설정필수 소프트웨어JDK 17 이상 : Spring Boot 3.x는 최소 JDK 17을 요구함.IDE : Eclipse 추천Maven: 프로젝트 빌드 도구JDK 설치 가이드, 환경설정 필수 Download the Latest Java LTS FreeSubscribe to Java SE and get the most comprehensive Java support available, with 24/7 global access to the experts.www.oracle.com2. Spring Boot 프로젝트 생성Spring Initializr를 사용하여 간단히 프로젝트를 생성할 .. 2024. 11. 28. [Spring5]@RestController, @JsonIgnore, @RequestBody 정의 및 예시 1. @RestController정의@RestController는 Spring Framework에서 컨트롤러 클래스를 정의할 때 사용하는 어노테이션입니다.HTTP 요청(GET, POST 등)에 대한 응답을 처리하고, 그 결과를 JSON 형식으로 반환합니다.특징@Controller + @ResponseBody의 결합된 역할을 합니다.@Controller: 요청 처리 메서드를 정의.@ResponseBody: 메서드의 반환값을 JSON 또는 XML과 같은 HTTP 응답 본문으로 변환.사용 예제import org.springframework.web.bind.annotation.GetMapping;import org.springframework.web.bind.annotation.RestController;@Re.. 2024. 11. 25. 이전 1 2 3 4 ··· 14 다음