English 中文(简体)
Java Backend/Server设计组
原标题:Java Backend/Server design setup

这是一个非常开始的问题。 我试图寻求咨询意见,但信息量太大,希望一些人帮助思考如何设计服务器或寻找什么东西!

我想设立的是辅助服务器,提供搜索能力和商业逻辑,并对一些相当基本的数据进行验证。 它赢得了太多的胜利。

然后,我希望能够把插在网站上,作为前端,或移动台或面对面台或甚至桌面台。

我的问题是,前线究竟是哪一种最佳办法? 我想有各种用户账户,允许量很大,因此授权很重要。

一般来说,我只是这样说的缩略语,而从技术上讲,在客户服务器关系的确切语义不为我所知之前,我已经建立了一个基于春季的网站。 现在,我想把背书分开,这样就不了解数据是如何展示或完全输入的,并且可以单独运行。

Thanks, Rob

最佳回答

There is a ton on options. I had good expirience with apache CXF rest services (logic encapsulated in java beans, spring configuration) and pico web remoting ( more exotic, but also rest service and plain java objects providing business logic)

如果你已经使用春天,我会建议坚持CXF——它精炼海藻(并且春天被混编)

问题回答

暂无回答




相关问题
Spring Properties File

Hi have this j2ee web application developed using spring framework. I have a problem with rendering mnessages in nihongo characters from the properties file. I tried converting the file to ascii using ...

Logging a global ID in multiple components

I have a system which contains multiple applications connected together using JMS and Spring Integration. Messages get sent along a chain of applications. [App A] -> [App B] -> [App C] We set a ...

Java Library Size

If I m given two Java Libraries in Jar format, 1 having no bells and whistles, and the other having lots of them that will mostly go unused.... my question is: How will the larger, mostly unused ...

How to get the Array Class for a given Class in Java?

I have a Class variable that holds a certain type and I need to get a variable that holds the corresponding array class. The best I could come up with is this: Class arrayOfFooClass = java.lang....

SQLite , Derby vs file system

I m working on a Java desktop application that reads and writes from/to different files. I think a better solution would be to replace the file system by a SQLite database. How hard is it to migrate ...

热门标签