将CSS编译为SWF服务器端Java,最佳实践是什么?
我的项目允许用户为我们的 Flex 应用程序创建自定义 CSS。
关于在服务器端将 CSS 编译为 SWF:
我应该使用 mxmlc-3.5.0.12683.jar 中的 flex2.compiler.css.Compiler 类吗?
或者
我应该从 Runtime.getRuntime().exec() 调用 mxmlc 吗?
css.Compiler 类没有很好的文档记录。有人有使用这个的例子吗?
对于运行时 exec 方法,将 mxmlc 打包到 Maven 构建中以便在运行时可供服务器使用的最佳方法是什么?
My project allows users to create custom css for our flex app.
In regards to compiling the CSS into SWFs on the server side:
Should I use the flex2.compiler.css.Compiler class in mxmlc-3.5.0.12683.jar?
Or
Should I invoke mxmlc from Runtime.getRuntime().exec()?
The css.Compiler class is not very well documented. Does anyone have any examples that use this?
For the Runtime exec method, what is the best way to package mxmlc into the maven build so its available to the server at runtime?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为人们很少尝试在服务器上动态编译 Flex 应用程序,因此可能没有最佳实践。我的直觉是,如果您的服务器端代码是 Java,那么使用 jar 文件更有意义。
但是,如果文档是一个问题,Flex 命令行编译器参数有详细的文档记录,可以为您节省大量时间。
I think it is so rare that people try to compile Flex Apps on the fly at the server, that there probably isn't a best practice. My intuition is that using the jar file makes more sense if your server side code is Java.
But, if documentation is a problem the Flex command line compiler arguments are well documented and may save you a lot of time.