# aliyun-fc-java **Repository Path**: mtain/aliyun-fc-java ## Basic Information - **Project Name**: aliyun-fc-java - **Description**: 阿里云函数计算(Serverless无服务架构)Java代码示例 - **Primary Language**: Java - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2019-04-17 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 阿里云函数计算(Serverless无服务架构)Java代码示例 ## 函数计算简介 事件驱动`全托管`(无需关注任何运维)计算服务,只需开发上传代码,触发即可. ## 函数计算特点 1. 无需关注任何运维(网络,服务器,部署环境,负载均衡,弹性伸缩等均无需关注) 2. 将计算服务细化到函数级别 3. 按执行次数付费,不调用不付费(以阿里云为例) ## 函数计算应用场景 1. 图片转格式,缩略图,打水印,视频转码,日志提取,压缩等(以阿里云为例:对象存储OSS->触发函数) 2. API接口服务:短信,天气,位置或需要后端大量计算的服务(HTTP->触发函数) 3. 图片爬虫,直接将爬取图片存储到OSS 实用性... ## 阿里云函数计算使用说明 ### 创建过程 **阿里云文档:**[https://help.aliyun.com/document_detail/51783.html](https://help.aliyun.com/document_detail/51783.html) ### 命令行工具fcli ``` # 更新函数代码 upf 函数名 -t java8 -h top.mtain.FC2Handler::handleRequest -f ~/aliyunfc/target/aliyun-fc.jar ```