전체 글
-
DB연결 디펜던시, application 설정java/SpringBoot 2022. 8. 4. 02:34
생성 했을때 프로젝트 설정 그대로 기억 해두는게 좋겠다 그래야 디펜던시 찾기 편함 mybatis와 mariadb를 사용 할 거니까 얘들 디펜던시 가져온당 //build.gradle dependencies { implementation 'org.springframework.boot:spring-boot-starter-web' providedRuntime 'org.springframework.boot:spring-boot-starter-tomcat' testImplementation 'org.springframework.boot:spring-boot-starter-test' // https://mvnrepository.com/artifact/org.apache.tomcat.embed/tomcat-embed-..
-
Controller,View 생성java/SpringBoot 2022. 8. 4. 01:25
package 프로젝트패키지경로.controller; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.RequestMapping; @Controller @RequestMapping("/home") public class Home { @GetMapping("") public String doHome(){ return "/WEB-INF/views/home.jsp"; } } //Controller라는 선언을 함 어노테이션 //RequestMaipping /home이라는 http 요청..
-
스프링부트로 프로젝트를 하게 되었다... feat. 노드 하고 싶은데...java/SpringBoot 2022. 8. 3. 21:57
php || react || react-native || java || spring || node || express || nest.js || next.js || expo 난 정녕 무슨 개발자일까 3년 일하면서 완전 잡부가 되었다.. https://start.spring.io/ 이곳에서 스프링 부트를 뚝딱 만들자. grdle에, java11로 선택 할거고 war로 만들어야 겠다 왜냐하면 view단을 jsp로 쓸것이기 때문에 JSP를 사용하기 위하여 Spring 문서에도 나와있지만, WAR를 이용해야한다고 함. Dependiencies는 web만 추가 그런뒤에 GENERATE로 프로젝트 생성 https://www.jetbrains.com/idea/download/#section=windows Downloa..
-
SDK 43 Expo Go에서 더이상 지원 안해줌React-Native/[RN]Expo 2022. 8. 3. 10:04
This project uses SDK 43.0.0, but this version of Expo Go only supports the following SDKs : 44.0.0, 45.0.0, 46.0.0 To load the project, it must be updated to a supported SDK version or an older version of Expo Go must be used https://blog.expo.dev/expo-sdk-45-f4e332954a68 Expo SDK 44 Today we’re announcing the release of Expo SDK 44. SDK 44 includes React Native 0.64.3. Thank you to everyone wh..
-
File specified via "android.googleServicesFile" field in your app.json is not checked in to your repository and won't be uploaded to the builder.Use EAS Secret to pass all values that you don't want to include in your version control. Learn more: https:..React-Native/[RN]Expo 2022. 8. 2. 14:21
google serviceAccountKeyPath 생성 가이드 https://github.com/expo/fyi/blob/main/creating-google-service-account.md GitHub - expo/fyi: Little bits of information that you may find useful when interacting with Expo tools and service. Append the Little bits of information that you may find useful when interacting with Expo tools and service. Append the markdown filename to https://expo.fyi/ to get a quic..
-
om.segment.analytics.android:analytics, 4.9.4 SDK 또는 라이브러리 중 하나가 사용하는 SDK가 포함되어 있습니다.React-Native/[RN]Expo 2022. 8. 2. 11:50
앱에 규정을 준수하지 않는 SDK 버전이 포함되어 있습니다 2022년 6월 10일 02:22 com.bizworks.bizpayrollapp 앱 버전 코드 3에 개인 정보 또는 민감한 정보를 수집하면서도 Advertising ID, Android ID 식별자로 제한되지 않는 com.segment.analytics.android:analytics, 4.9.4 SDK 또는 라이브러리 중 하나가 사용하는 SDK가 포함되어 있습니다. 데이터 사용 정책에 설명된 것과 같이 영구 기기 식별자는 다른 개인 정보 및 민감한 사용자 데이터 또는 재설정 가능한 기기 식별자와 연결될 수 없습니다. 2022년 8월 9일 자정(UTC)부터 사용자 데이터 정책을 준수하지 않는 SDK 버전이 포함된 새로운 앱 출시 버전은 출시에서..