刚刚创建了一个新的Ceylon项目('POSTtoFile'),并在其中创建了一个名为'server'的新锡兰模块,我想打开此文件:
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