由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Java版 - 新手学习java spring, hibernate或者struts的问题
相关主题
spring到底有什么好处?现在 Java Web 开发过时了么?
j2ee, j2me, j2se 现在哪个用得多?问问java认证
关于struts和spring的几个疑问spring Annotation based configuration
j2ee without EJBSpring 工作机会好象不多啊!
看Spring真是头大Spring 2.5 vs. EJB3.0
any good j2ee book?谁能给我推荐一个strutsspringhibernate的项目
j2ee现在流行什么?Goodbug能提供一些Spring, Hibernate, Cassandra入门资料吗
java所有工具里面,就数spring最简单了讨论spring这么多,还没有说到点子上的。
相关话题的讨论汇总
话题: spring话题: hibernate话题: struts话题: java话题: ee
进入Java版参与讨论
1 (共1页)
a*****p
发帖数: 1285
1
最近开始看java ee的东西,知道大多数公司希望招有spring, hibernate或者struts
经验的人。
请问有什么教材复习这些么??我下载了java ee的tutorial,里面没有讲这3个
framework的。有没有什么比较好得电子书来学习这些framework。此外,实际中哪个用
的更多呢??从哪个开始学比较容易呢?
m*****k
发帖数: 731
2
http://www.amazon.com/Agile-Development-Spring-Hibernate-Eclips
step by step showing u how to build a simple timesheet app in eclipse with
spring and hibernate.
I borrowed the book from school lib,
can google the src code to try urself.

struts

【在 a*****p 的大作中提到】
: 最近开始看java ee的东西,知道大多数公司希望招有spring, hibernate或者struts
: 经验的人。
: 请问有什么教材复习这些么??我下载了java ee的tutorial,里面没有讲这3个
: framework的。有没有什么比较好得电子书来学习这些framework。此外,实际中哪个用
: 的更多呢??从哪个开始学比较容易呢?

S****h
发帖数: 558
3
JAVA EE is not the same as spring/hibernate/struts. If you know nothing
about it, you are better to start from some books about spring/hibernate/
struts directly instead of java EE, which is usually more complicated to
start.

struts

【在 a*****p 的大作中提到】
: 最近开始看java ee的东西,知道大多数公司希望招有spring, hibernate或者struts
: 经验的人。
: 请问有什么教材复习这些么??我下载了java ee的tutorial,里面没有讲这3个
: framework的。有没有什么比较好得电子书来学习这些framework。此外,实际中哪个用
: 的更多呢??从哪个开始学比较容易呢?

g*****g
发帖数: 34805
4
I would call spring/hibernate/struts etc. part of Java EE.
Java EE is a stack of frameworks to do enterprise application development.
There are official spec in JSR, but more often than not, Open source
community take the lead. And de facto standards like spring/hibernate/struts
came from there. What matters is what's most popular in industry.

【在 S****h 的大作中提到】
: JAVA EE is not the same as spring/hibernate/struts. If you know nothing
: about it, you are better to start from some books about spring/hibernate/
: struts directly instead of java EE, which is usually more complicated to
: start.
:
: struts

a*****p
发帖数: 1285
5
can you give more how to study J2EE or spring/hibernate/struts. I am
thinking to go thru the knowledge quickly and then find some projects to do.
what books/tutorials do u recommend? spring/hibernate/structs first or j2ee
first?

struts

【在 g*****g 的大作中提到】
: I would call spring/hibernate/struts etc. part of Java EE.
: Java EE is a stack of frameworks to do enterprise application development.
: There are official spec in JSR, but more often than not, Open source
: community take the lead. And de facto standards like spring/hibernate/struts
: came from there. What matters is what's most popular in industry.

g*****g
发帖数: 34805
6
I like the in action series, and start with spring.

do.
j2ee

【在 a*****p 的大作中提到】
: can you give more how to study J2EE or spring/hibernate/struts. I am
: thinking to go thru the knowledge quickly and then find some projects to do.
: what books/tutorials do u recommend? spring/hibernate/structs first or j2ee
: first?
:
: struts

S****h
发帖数: 558
7
Second that. For Spring in Action, make sure you get the latest version
with Spring 3.0. Spring's web tier makes a big turn from XML config to
annotation config in 3.0, which is quite significant.
One thing about Spring's own online manual/document. It is good for
reference, not good for reading from scratch. So make sure start from a
book. Spring is huge. For your purpose, just make sure you understand the
core such as IoC. You can skip on Aspect part. Then go directly to
SpringMVC.
On the other hand, Hibernate's own online tutorial is not bad for starter.

【在 g*****g 的大作中提到】
: I like the in action series, and start with spring.
:
: do.
: j2ee

a*****p
发帖数: 1285
8
thank you very much. i was thinking of the Spring reference. and I saw you
guys' posts. yea, i am going for in action now. heeh

the


【在 S****h 的大作中提到】
: Second that. For Spring in Action, make sure you get the latest version
: with Spring 3.0. Spring's web tier makes a big turn from XML config to
: annotation config in 3.0, which is quite significant.
: One thing about Spring's own online manual/document. It is good for
: reference, not good for reading from scratch. So make sure start from a
: book. Spring is huge. For your purpose, just make sure you understand the
: core such as IoC. You can skip on Aspect part. Then go directly to
: SpringMVC.
: On the other hand, Hibernate's own online tutorial is not bad for starter.

s****e
发帖数: 282
9
It seems to me that most of the Internet forums recommend using Hibernate
other than Spring. Why learn J2EE from Spring?

【在 g*****g 的大作中提到】
: I like the in action series, and start with spring.
:
: do.
: j2ee

g*****g
发帖数: 34805
10
Spring is the most popular Java framework to promote IoC and AOP
concepts. It's a glue framework, and EJB3 borrows a lot from it.
You probably can see Spring in more industry projects than not.

【在 s****e 的大作中提到】
: It seems to me that most of the Internet forums recommend using Hibernate
: other than Spring. Why learn J2EE from Spring?

t*******e
发帖数: 684
11
You compared apple with orange.

【在 s****e 的大作中提到】
: It seems to me that most of the Internet forums recommend using Hibernate
: other than Spring. Why learn J2EE from Spring?

S****h
发帖数: 558
12
Hibernate is for ORM, basically, how to deal with persistence/database.
Anything (web or not) can use it.
Spring in general is a framework about IoC and AOP. It can also be used for
any general project. It grew a lot and applied their basic framework to
lots of fields. For example SpringMVC is the one for Web application, (
compared to JavaEE). Spring also has other packages cover lots of other
fields, such as security, message, database, ...

【在 s****e 的大作中提到】
: It seems to me that most of the Internet forums recommend using Hibernate
: other than Spring. Why learn J2EE from Spring?

1 (共1页)
进入Java版参与讨论
相关主题
讨论spring这么多,还没有说到点子上的。看Spring真是头大
大家拍我吧,自己太弱了any good j2ee book?
如何学spring和hibernatej2ee现在流行什么?
做Java web development 一定要 struts + spring + hibernate 吗java所有工具里面,就数spring最简单了
spring到底有什么好处?现在 Java Web 开发过时了么?
j2ee, j2me, j2se 现在哪个用得多?问问java认证
关于struts和spring的几个疑问spring Annotation based configuration
j2ee without EJBSpring 工作机会好象不多啊!
相关话题的讨论汇总
话题: spring话题: hibernate话题: struts话题: java话题: ee