Redian新闻
>
spring/hibernate/ajax/web 2.0/bpel books
avatar
spring/hibernate/ajax/web 2.0/bpel books# Java - 爪哇娇娃
f*e
1
I am in the transition of c++ to java, and my boss has been encouraging me
to buy books. I have some basic java books like "Thinking in Java", and the
head First series. Now I am ready to look deeper into the java world.
Please recommend some books on the following subjects:
- Ajax
- Web2.0
- Spring
- Hibernate
- Web Services with jee technology
- BPEL
Thanks in advance.
avatar
g*g
2
For spring and hibernate, the "in action" series is pretty good.
Also the "pro" series.
For web service, Axis and XFire are hot, check their websites to
see if you can get any books.
For ajax, there are different approaches, client package (e.g. YUI),
server side framework (DWR), and some full fledged one (GWT). It all
depends on what kind of application you are working on.
Can't comment on BPEL.
JEE is too big a topic, it's probably get dirty first and read what you need,
rather than read a ton

【在 f*****e 的大作中提到】
: I am in the transition of c++ to java, and my boss has been encouraging me
: to buy books. I have some basic java books like "Thinking in Java", and the
: head First series. Now I am ready to look deeper into the java world.
: Please recommend some books on the following subjects:
: - Ajax
: - Web2.0
: - Spring
: - Hibernate
: - Web Services with jee technology
: - BPEL

avatar
f*e
3
Thanks for such detailed response. I guess I am going to get those "in
action" books first.

need,

【在 g*****g 的大作中提到】
: For spring and hibernate, the "in action" series is pretty good.
: Also the "pro" series.
: For web service, Axis and XFire are hot, check their websites to
: see if you can get any books.
: For ajax, there are different approaches, client package (e.g. YUI),
: server side framework (DWR), and some full fledged one (GWT). It all
: depends on what kind of application you are working on.
: Can't comment on BPEL.
: JEE is too big a topic, it's probably get dirty first and read what you need,
: rather than read a ton

avatar
c*m
4

In addition to goodbug's list, a few other books I found very good:
General JEE
Expert one on one J2EE Design and Development
J2EE development without EJB's
two classic books
Pojos:
Pojos in Action -- Spring, ORM, and designs. A very good book worth reading
many times
Patterns:
Patterns of Enterprise Architecture -- great book if you are interested in
lower level patterns and developing frameworks
Web Service:
SOA using Java Web Services -- with many many details and source code, a bit
hard to

【在 f*****e 的大作中提到】
: Thanks for such detailed response. I guess I am going to get those "in
: action" books first.
:
: need,

avatar
g*g
5
I realize nowadays not many java developers can do swing, even fewer can
write swing in the MVC way.

reading
bit
C
to
does

【在 c*m 的大作中提到】
:
: In addition to goodbug's list, a few other books I found very good:
: General JEE
: Expert one on one J2EE Design and Development
: J2EE development without EJB's
: two classic books
: Pojos:
: Pojos in Action -- Spring, ORM, and designs. A very good book worth reading
: many times
: Patterns:

avatar
j*o
6
This is so damn true. Probably most java apps are web
j2ee based. Desktop client is still dominated by native
code. Even fewer people write Java2D, which to me is
the single best thing that I've not seen in other GUI
framework/toolkit.
There are a lot of good things in Swing, but things like
JTable are not well designed. Simplicity is simply not there.

【在 g*****g 的大作中提到】
: I realize nowadays not many java developers can do swing, even fewer can
: write swing in the MVC way.
:
: reading
: bit
: C
: to
: does

avatar
c*t
7
What do you mean by simplicity? JTable is pretty well designed
and is quite powerful and easy to use.

【在 j******o 的大作中提到】
: This is so damn true. Probably most java apps are web
: j2ee based. Desktop client is still dominated by native
: code. Even fewer people write Java2D, which to me is
: the single best thing that I've not seen in other GUI
: framework/toolkit.
: There are a lot of good things in Swing, but things like
: JTable are not well designed. Simplicity is simply not there.

avatar
g*g
8
After doing both swing and web development for years, I feel something
is short in swing approach. It's like you are given servlet and jsp,
but that's not enough, you need a framework. While everybody uses one
in web development, very few use it in swing development. And these god
classses with thousands line of code fly everywhere.
I am maintaining some swt code developed by some C guy, it's a nightmare.

【在 c*****t 的大作中提到】
: What do you mean by simplicity? JTable is pretty well designed
: and is quite powerful and easy to use.

avatar
c*t
9
SWT is very raw, and it really doesn't have a good separation of data
model from display as in Swing. JFace is somewhat nicer, but I find it
a half-baked solution.
Swing is very nice because you can create infinite of them and as
long as they are not showing, no actual "peers" are created. It
also has good MVC construct, i.e. renderer/editors, models, selection
models, and views (table, list, tree) themselves. It can also be skinned
(though it can be ugly in certain cases), support drag-n-dro

【在 g*****g 的大作中提到】
: After doing both swing and web development for years, I feel something
: is short in swing approach. It's like you are given servlet and jsp,
: but that's not enough, you need a framework. While everybody uses one
: in web development, very few use it in swing development. And these god
: classses with thousands line of code fly everywhere.
: I am maintaining some swt code developed by some C guy, it's a nightmare.

avatar
g*g
10
what I am saying is unlike web development, junior developers are limited
in naturally separate pages and can't do big damage. swing development
is often more coupled and complicated. It needs good hands to handle.

【在 c*****t 的大作中提到】
: SWT is very raw, and it really doesn't have a good separation of data
: model from display as in Swing. JFace is somewhat nicer, but I find it
: a half-baked solution.
: Swing is very nice because you can create infinite of them and as
: long as they are not showing, no actual "peers" are created. It
: also has good MVC construct, i.e. renderer/editors, models, selection
: models, and views (table, list, tree) themselves. It can also be skinned
: (though it can be ugly in certain cases), support drag-n-dro

avatar
c*t
11
Not really. In GUI dev, you still divide tasks into dialogs, view
components for certain models, etc. As long as you have good separation
of logic / views (which it should be), it is fairly easy.

【在 g*****g 的大作中提到】
: what I am saying is unlike web development, junior developers are limited
: in naturally separate pages and can't do big damage. swing development
: is often more coupled and complicated. It needs good hands to handle.

avatar
g*g
12
Since you are not forced to do that (MVC), you have the flexiblity to
screw up. In a team, you will be. I experienced the pain when I had
to maintain a project written by 8 guys, all of them laid off around
2002.

【在 c*****t 的大作中提到】
: Not really. In GUI dev, you still divide tasks into dialogs, view
: components for certain models, etc. As long as you have good separation
: of logic / views (which it should be), it is fairly easy.

avatar
t*e
13
Probably need 3 years to catch up the speed.
相关阅读
logo
联系我们隐私协议©2024 redian.news
Redian新闻
Redian.news刊载任何文章,不代表同意其说法或描述,仅为提供更多信息,也不构成任何建议。文章信息的合法性及真实性由其作者负责,与Redian.news及其运营公司无关。欢迎投稿,如发现稿件侵权,或作者不愿在本网发表文章,请版权拥有者通知本网处理。