지원되는 Java 런타임으로 모든 Java 호환 라이브러리를 사용하여 Java에서 Cloud Run Functions를 작성할 수 있습니다. Maven 또는 Gradle을 사용하여 Java Cloud Run Functions에 대해 종속 항목을 관리할 수 있습니다.
종속 항목 선언 및 관리
Maven 또는 Gradle을 사용하여 종속 항목을 선언 및 관리할 수 있습니다.
Maven을 사용하여 종속 항목을 관리하려면 다음 안내를 따르세요.
프로젝트의 pom.xml 파일 내에서 <dependencies> 섹션에 종속 항목을 지정합니다.
Maven 자체에서 프로젝트 종속 항목을 관리하려면 Maven 래퍼를 사용할 수 있습니다. Maven 래퍼를 사용하지 않는 경우 Cloud Run Functions에는 gcloud functions deploy를 실행할 때 기본적으로 Maven의 최신 버전이 사용됩니다.
Gradle을 사용하여 종속 항목을 관리하려면 프로젝트의 build.gradle 파일에 종속 항목을 지정합니다.
함수 프레임워크는 모든 함수에 필요한 종속 항목입니다. Cloud Run Functions는 함수 생성 시 이를 자동으로 설치하지만 명확히 하자면 명시적 종속 항목으로 포함하는 것이 좋습니다.
함수에서 비공개 종속 항목을 사용하는 경우 functions-framework를 비공개 레지스트리에 미러링하는 것이 좋습니다. 공개 인터넷에서 패키지를 설치하지 않으려면 미러링된 functions-framework를 함수에 대한 종속 항목으로 포함합니다.
이 build.gradle 파일에는 함수를 로컬로 실행하는 데 도움이 되는 커스텀 작업이 포함되어 있습니다. 로컬 테스트에 대한 자세한 내용은 첫 번째 함수: 자바를 참조하세요.
applyplugin:'java'repositories{jcenter()mavenCentral()}configurations{invoker}dependencies{// Every function needs this dependency to get the Functions Framework API.compileOnly'com.google.cloud.functions:functions-framework-api:1.1.0'// To run function locally using Functions Framework's local invokerinvoker'com.google.cloud.functions.invoker:java-function-invoker:1.3.1'// These dependencies are only used by the tests.testImplementation'com.google.cloud.functions:functions-framework-api:1.1.0'testImplementation'junit:junit:4.13.2'testImplementation'com.google.truth:truth:1.4.0'testImplementation'org.mockito:mockito-core:5.10.0'}// Register a "runFunction" task to run the function locallytasks.register("runFunction",JavaExec){main='com.google.cloud.functions.invoker.runner.Invoker'classpath(configurations.invoker)inputs.files(configurations.runtimeClasspath,sourceSets.main.output)args('--target',project.findProperty('run.functionTarget')?:'','--port',project.findProperty('run.port')?:8080)doFirst{args('--classpath',files(configurations.runtimeClasspath,sourceSets.main.output).asPath)}}
[[["이해하기 쉬움","easyToUnderstand","thumb-up"],["문제가 해결됨","solvedMyProblem","thumb-up"],["기타","otherUp","thumb-up"]],[["이해하기 어려움","hardToUnderstand","thumb-down"],["잘못된 정보 또는 샘플 코드","incorrectInformationOrSampleCode","thumb-down"],["필요한 정보/샘플이 없음","missingTheInformationSamplesINeed","thumb-down"],["번역 문제","translationIssue","thumb-down"],["기타","otherDown","thumb-down"]],["최종 업데이트: 2025-03-25(UTC)"],[[["Java dependencies for Cloud Run functions can be managed using either Maven or Gradle."],["Maven dependencies are declared within the `\u003cdependencies\u003e` section of the `pom.xml` file, while Gradle dependencies are specified in the `build.gradle` file."],["The Functions Framework is a required dependency for all Cloud Run functions and is recommended to be explicitly included in your project dependencies."],["Google Cloud Client Libraries for Java can be used by declaring them as dependencies in either Maven or Gradle, allowing you to access Google Cloud services."],["Mirroring the function framework to a private registry is recommended if your function relies on private dependencies."]]],[]]