与 java 应用程序集成的博客引擎。哪个博客引擎?
我必须设置一个“必须与 java 应用程序集成”的博客引擎。这是我的要求,我不是开玩笑。 java 应用程序是一个 Web 应用程序,可提供动态变化的内容。
博客和这个应用程序到底要交换什么 - 我不知道,因为我的客户不知道。 (是的,我知道,我的客户是......,但事实就是如此)。
我想我有两个选择:java博客引擎和wordpress。
Wordpress 很流行、稳定、可定制……,但是是用 PHP 编写的。 Java博客并不流行,但在Java中。
在之前的项目中,我使用了一个名为 dasBlog 的 .NET 博客,它并不流行且不易定制。我不想再犯同样的错误。
如果我能够通过 JAX-RPC 或 REST 完全控制 WordPress 博客(发布帖子、编辑侧边栏内容、让 WordPress 询问我侧边栏的内容……),如果这很简单,也许我会选择 Wordpress 。
你怎么认为?
I have to setup a blog engine that "has to be integrated with a java app". These are my requirements, I'm not kidding. The java app is a web app that serves very dynamically changed content.
What exactly the blog and this app are going to exchange - I do not know, because my client doesn't know. (yes, I know, my client is ..., but this is the case).
I think I have two options: a java blog engine and wordpress.
Wordpress is popular, stable, customizable, ..., but in PHP.
Java blogs are not popular, but in Java.
In a previous project I was using a .NET blog, called dasBlog, it was not popular and not easily customizable. I don't want to make that mistake again.
If I can be able to fully control a Wordpress blog (publish posts, edit sidebar contents, make wordpress ask me for content for a sidebar, ...) via JAX-RPC or REST and if that is straightforward, maybe I would choose Wordpress.
What do you think?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
对于 wordpress-java 集成,我发现了这些:
Quercus(运行 PHP):
<一href="http://wordpress.tv/2008/10/27/spreading-the-word-to-java-bring-wordpress-and-java-together-with-quercus-slides/">http://wordpress .tv/2008/10/27/spreading-the-word-to-java-bring-wordpress-and-java-together-with-quercus-slides/
Java API对于 WordPress
http://code.google.com/p/wordpress-java/
(这是我最喜欢的,但不知道它有多强大)
wordpress的java端口:
http://www.theserverside.com/news/thread.tss?thread_id=50890
(我不喜欢这个)
For wordpress-java integration I found these:
Quercus (runs PHP):
http://wordpress.tv/2008/10/27/spreading-the-word-to-java-bring-wordpress-and-java-together-with-quercus-slides/
Java API for wordpress
http://code.google.com/p/wordpress-java/
(This is my favorite, but I don't know how powerful it is)
java port of wordpress:
http://www.theserverside.com/news/thread.tss?thread_id=50890
(I don't like this one)
将 java 应用程序与 wordpress 安装结合起来并不罕见(我自己至少这样做过一次)。只需在前面运行 apache,运行 php 和 wordpress,然后让您的 Java 应用程序在其自己的上下文中“后面”运行。棘手的部分是如果您需要共享会话和登录。
It's not that uncommon to combine a java-app with a wordpress installation (I have done so myself at least once). Just front with an apache, running php and wordpress and have your java app running "behind" on it's own context. Tricky parts are if you need to share sessions and logins.
你也可以尝试apache-roller,它与wordpress的UI不匹配。但它可以完成工作......
you can also try apache-roller, its no match to the UI of wordpress. but it can get the job done...