由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Java版 - web application请教
相关主题
请问哪个J2EE MVC Framework最有前途wicket in action到手了
JSF和MVC model 2的问题web application一定要掌握javascript和ajax吗
spring/hibernate/struts .....Web framework comparison
JSF有前途吗Any body uses wicket framework for web development?
j2ee现在流行什么?display field validation message with the field
入门问题:以Spring+JPA开发back end,那么表现层只能用jsp吗?一个关于GWT的问题
已经学完jsp and servlet了,下一步是不是该学struts了.Net developer doing Java
谁能给我推荐一个strutsspringhibernate的项目Spring MVC question.
相关话题的讨论汇总
话题: spring话题: mvc话题: struts话题: jsp
进入Java版参与讨论
1 (共1页)
d*g
发帖数: 66
1
我们一直在做client, server application.现在有个project要转成web application,
如果front end不是非常复杂的话,我应该选择哪个web framework?
struts 2, jsf, or spring mvc. or others?
多谢指教
I*******o
发帖数: 53
2
raw jsp... no need any framework

application,

【在 d*g 的大作中提到】
: 我们一直在做client, server application.现在有个project要转成web application,
: 如果front end不是非常复杂的话,我应该选择哪个web framework?
: struts 2, jsf, or spring mvc. or others?
: 多谢指教

h**j
发帖数: 2033
3
spring mvc

application,

【在 d*g 的大作中提到】
: 我们一直在做client, server application.现在有个project要转成web application,
: 如果front end不是非常复杂的话,我应该选择哪个web framework?
: struts 2, jsf, or spring mvc. or others?
: 多谢指教

h**k
发帖数: 662
4
raw jsp is taking too long
g*****g
发帖数: 34805
5
Depends on the requirement. Like how ajaxish and how scalable
do you need.

application,

【在 d*g 的大作中提到】
: 我们一直在做client, server application.现在有个project要转成web application,
: 如果front end不是非常复杂的话,我应该选择哪个web framework?
: struts 2, jsf, or spring mvc. or others?
: 多谢指教

s******e
发帖数: 493
6
Struts is overskilled for you.
jsf can be develioped very fast. and it supports portlet well. The wole idea
for jsf is RAD (rapid Application Development).
Spring MVC might be good for you if you have to use jsp.
It is simple enough, try this one. Frontman, a simple command pattern based
framework.
Or if you want to explore web 2, ajax(ZK), flex, maybe javafx. might be very
good for a rich client front development.
q*********a
发帖数: 340
7
struts 2, jsf, or spring mvc. or others?
MVC:
M:hibernate, ibatis,toplink, and so on....
V: Struts, JSF
C:Spring
d*g
发帖数: 66
8
ajax is not needed. I guess right now the application will have like 10-20
pages. back-end has lots of calculation and complicated algorithm.
我对spring, hibernate,java没问题, jsp也用过。但想选择一个合适的web framework
,省得以后方向上有问题。

【在 g*****g 的大作中提到】
: Depends on the requirement. Like how ajaxish and how scalable
: do you need.
:
: application,

d*g
发帖数: 66
9
I have no problem with hibernate, spring, only struggling what V part I
should choose to use.
V: Struts, JSF

【在 q*********a 的大作中提到】
: struts 2, jsf, or spring mvc. or others?
: MVC:
: M:hibernate, ibatis,toplink, and so on....
: V: Struts, JSF
: C:Spring

d*g
发帖数: 66
10
our application will not have huge number of users.

【在 g*****g 的大作中提到】
: Depends on the requirement. Like how ajaxish and how scalable
: do you need.
:
: application,

相关主题
入门问题:以Spring+JPA开发back end,那么表现层只能用jsp吗?wicket in action到手了
已经学完jsp and servlet了,下一步是不是该学struts了web application一定要掌握javascript和ajax吗
谁能给我推荐一个strutsspringhibernate的项目Web framework comparison
进入Java版参与讨论
q*********a
发帖数: 340
11
Why do not you try Clustering Technology
g*****g
发帖数: 34805
12
In that case, I'd recommend Spring MVC.

【在 d*g 的大作中提到】
: our application will not have huge number of users.
k***r
发帖数: 4260
13
你用过这个吗?

【在 s******e 的大作中提到】
: Struts is overskilled for you.
: jsf can be develioped very fast. and it supports portlet well. The wole idea
: for jsf is RAD (rapid Application Development).
: Spring MVC might be good for you if you have to use jsp.
: It is simple enough, try this one. Frontman, a simple command pattern based
: framework.
: Or if you want to explore web 2, ajax(ZK), flex, maybe javafx. might be very
: good for a rich client front development.

d*g
发帖数: 66
14
谢谢goodbug
I may need to report why I choose SPring MVC, so would you please give me
some good strong reasons....
and if Spring MVC to handle the request, anything good to fit into Gui side,
like build a table or tree structure... do you recommend just pure jsp +
html or anything else lke GWT?
Thanks a lot

【在 g*****g 的大作中提到】
: In that case, I'd recommend Spring MVC.
g*****g
发帖数: 34805
15
It's a traditional front controller MVC framework, people
with JSP/Struts background may see it familiar. It's flexibile
and popular so if you get a problem, you probably can find an
answer by google. For table and tree components, if plain jsp
can do it for you, it'd be most simple. For a little bit of ajax
components, I'd recommend Dojo, GWT is more difficult to integrate.
If you want to go full fledge ajax, spring mvc won't be the right
choice. Personally I'd recommend wicket for that kind of

【在 d*g 的大作中提到】
: 谢谢goodbug
: I may need to report why I choose SPring MVC, so would you please give me
: some good strong reasons....
: and if Spring MVC to handle the request, anything good to fit into Gui side,
: like build a table or tree structure... do you recommend just pure jsp +
: html or anything else lke GWT?
: Thanks a lot

h**k
发帖数: 662
16
is spring mvc's learning curve easier than others?
g*****g
发帖数: 34805
17
compare to? It's related to your background I'd say.
People from struts or other MVC frameworks background
should get it quickly. People with swing background
may see component frameworks easier.

【在 h**k 的大作中提到】
: is spring mvc's learning curve easier than others?
b******y
发帖数: 9224
18
we use spring framework, not bad.
You can also look at the Spring framework source code, good to learn that stuff in case something went wrong.
d*g
发帖数: 66
19
thanks, all
I did some research and talked with some experienced developers
it seems Spring MVC + Dojo at front end are good choice for a small-mid
size web application. Specially when I used other parts of Spring before.
Thanks

stuff in case something went wrong.

【在 b******y 的大作中提到】
: we use spring framework, not bad.
: You can also look at the Spring framework source code, good to learn that stuff in case something went wrong.

F****n
发帖数: 3271
20
If it's a simple, straightfoward app, use JSP + a persistent API. No need to
use Spring MVC. If you are not familiar with Spring it's a waste of time.
If you are already familiar with MVC you can build your application based on
it but it won't improve your application.

【在 d*g 的大作中提到】
: thanks, all
: I did some research and talked with some experienced developers
: it seems Spring MVC + Dojo at front end are good choice for a small-mid
: size web application. Specially when I used other parts of Spring before.
: Thanks
:
: stuff in case something went wrong.

1 (共1页)
进入Java版参与讨论
相关主题
Spring MVC question.j2ee现在流行什么?
struts vs Spring MVC ??入门问题:以Spring+JPA开发back end,那么表现层只能用jsp吗?
spring MVC 下的rich web application已经学完jsp and servlet了,下一步是不是该学struts了
怎么快速掌握Struts?谁能给我推荐一个strutsspringhibernate的项目
请问哪个J2EE MVC Framework最有前途wicket in action到手了
JSF和MVC model 2的问题web application一定要掌握javascript和ajax吗
spring/hibernate/struts .....Web framework comparison
JSF有前途吗Any body uses wicket framework for web development?
相关话题的讨论汇总
话题: spring话题: mvc话题: struts话题: jsp