刚刚创建了一个新的 Ceylon 项目('POSTtoFile'),并在其中创建了一个名为“server”的新 ceylon 模块,我想打开这个文件:
POSTtoFile / source / server / server / module.ceylon
为了指定server模块的依赖关系。
module.ceylon但是,在左窗格 ( ) 中双击时Ceylong Explorer,没有任何反应。没有显示空文件。正如我之前打开的那样run.ceylon, 的内容run.ceylon仍然是显示的内容:
这就是我想写的module.ceylon:
"PosttoFile can receive a http POST request and download
the received content to a file. Then it will terminate."
native ("jvm")
module server "1.0.0" {
import ceylon.http.server "1.3.3";
import ceylon.json "1.3.3";
import ceylon.io "1.3.3";
}
// ceylon.http.common, ceylon.http.client, ceylon.http.server, and ceylon.uri
