oder
Loggen Sie sich ein, um 1-Click® einzuschalten.
oder
Mit kostenloser Probeteilnahme bei Amazon Prime. Melden Sie sich während des Bestellvorgangs an. Erfahren Sie mehr
Alle Angebote
Möchten Sie verkaufen? Hier verkaufen
oder
gegen einen Amazon.de Gutschein über EUR 16,60 eintauschen?
Spring in Action
 
 
Den Verlag informieren!
Ich möchte dieses Buch auf dem Kindle lesen.

Sie haben keinen Kindle? Hier kaufen oder eine gratis Kindle Lese-App herunterladen.

Spring in Action [Englisch] [Taschenbuch]

Craig Walls

Preis: EUR 36,95 kostenlose Lieferung. Siehe Details.
  Alle Preisangaben inkl. MwSt.
o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o
Auf Lager.
Verkauf und Versand durch Amazon.de. Geschenkverpackung verfügbar.
Lieferung bis Freitag, 1. Juni: Wählen Sie an der Kasse Morning-Express. Siehe Details.

Weitere Ausgaben

Amazon-Preis Neu ab Gebraucht ab
Taschenbuch EUR 28,99  
Taschenbuch, 28. August 2011 EUR 36,95  
Gutschein erhalten
Tauschen Sie jetzt Spring in Action gegen einen Amazon-Gutschein in Höhe von EUR 16,60 ein - einlösbar für Tausende von Artikeln bei Amazon.de. Entdecken Sie mehr eintauschbare Bücher im Bücher Trade-In Shop. Bitte beachten Sie die Teilnahmebedingungen.

Jetzt für Amazon Student anmelden und um 20% erhöhten Eintauschwert sichern.

Wird oft zusammen gekauft

Spring in Action + Spring Recipes: A Problem-Solution Approach + Spring 3: Framework für die Java-Entwicklung
Preis für alle drei: EUR 110,80

Verfügbarkeit und Versanddetails anzeigen

Die ausgewählten Artikel zusammen kaufen
  • Auf Lager.
    Verkauf und Versand durch Amazon.de.
    Kostenlose Lieferung. Details

  • Spring Recipes: A Problem-Solution Approach EUR 33,95

    Auf Lager.
    Verkauf und Versand durch Amazon.de.
    Kostenlose Lieferung. Details

  • Spring 3: Framework für die Java-Entwicklung EUR 39,90

    Auf Lager.
    Verkauf und Versand durch Amazon.de.
    Kostenlose Lieferung. Details


Kunden, die diesen Artikel gekauft haben, kauften auch


Produktinformation


Mehr über die Autoren

Entdecken Sie Bücher, lesen Sie über Autoren und mehr

Welche anderen Artikel kaufen Kunden, nachdem sie diesen Artikel angesehen haben?


In diesem Buch (Mehr dazu)
Ausgewählte Seiten ansehen
Buchdeckel | Copyright | Inhaltsverzeichnis | Auszug | Stichwortverzeichnis | Rückseite
Hier reinlesen und suchen:

Tags, die Kunden mit diesem Produkt verbinden

 (Was ist das?)
Klicken Sie zum Suchen verwandter Artikel, Diskussionen oder Personen auf ein Tag.
 
(1)

 

Eine digitale Version dieses Buchs im Kindle-Shop verkaufen

Wenn Sie ein Verleger oder Autor sind und die digitalen Rechte an einem Buch haben, können Sie die digitale Version des Buchs in unserem Kindle-Shop verkaufen. Weitere Informationen

Kundenrezensionen

Es gibt noch keine Kundenrezensionen auf Amazon.de
5 Sterne
4 Sterne
3 Sterne
2 Sterne
1 Sterne
Die hilfreichsten Kundenrezensionen auf Amazon.com (beta)
Amazon.com:  21 Rezensionen
36 von 39 Kunden fanden die folgende Rezension hilfreich
Not up to Manning standards 13. August 2011
Von J. Braun - Veröffentlicht auf Amazon.com
Format:Taschenbuch
This is not a book to learn Spring, this is a book to learn about Spring. It is like trying to learn farming by looking out of a car window as you drive through Iowa while reading a brochure about tractors. Lots of facts but little understanding.

If you are a person who likes a book that builds a project to show how all the parts fit together this is not the book for you. There are only snippets to illustrate the points discussed. It was irritating that the examples were of knights and minstrels playing saxophones rather than a realistic business case. Even when I tried to put the snippets together there were contradictions and errors. The source code is not especially helpful because it is not organized in any way that my installation of Eclipse is aware of. Maybe learning by debugging is a new paradigm.

Lastly, you had better be a mid-level Java programmer if you want to understand all of the references the author makes. There is probably a lot of good information here and I'm thinking it would make a good 2nd book on Spring or a quick reference to a particular feature. However as a book to learn Spring from square one this is sadly lacking and not what I expect from Manning.

One last note if there are any authors reading this. Please adopt the standard practice of putting a path statement above each code example. See the books from The Pragmatic Programmers series for how this is done. It would clarify exactly how these things fit together in a simple and elegant manner.
17 von 19 Kunden fanden die folgende Rezension hilfreich
Another Neat Spring 3 guide book, but it needs more information. 29. Juli 2011
Von J. H. KIM - Veröffentlicht auf Amazon.com
Format:Taschenbuch|Von Amazon bestätigter Kauf
Hello all, I'm a local Spring developer in Oregon, and mostly I develop web modules using Spring 3 MVC technology. I own a few Spring 2.5 and 3 books for myself including this book, and I read those books with Spring 3 reference documentation on SpringSource.org as I needed. For my general review, Spring in Action 3rd edition is filled with fine-grained Spring 3 technologies so far, but for some parts it needs more information.

First three chapters are very well done for building Spring 3 basic skills including Spring 3 bean management and Spring bean XML configuration. Based on Spring 3, we know there are quite a few changes; obviously some changes are bigger than the older versions. This book explains very well for Spring 3 configuration using a few unique annotation-based Spring beans. For example, we can do auto-wired bean injection directly through the java classes using @Autowired or @Inject annotation without re-configuring XML codes. We can also use auto configuration scanning feature using <context:component-scan> without repeatedly writing bean configuration over-and-over again; Craig explains them very well with some easy example codes. I like his example codes with funny names like knight, king, jelly beans, pizza, and so on; those names sometimes make me hungry. Hmm... :)

Chapter 4 (Aspect-oriented Spring) has a few good examples and explains very well for fundamental concept of AOP, but it needs more information. For example, AOP proxy and its interceptor XML configuration are very useful when you inject Spring beans into the other beans between two different scopes (singleton and session). "BeanNameAutoProxyCreator" is also useful class for interrupting other beans based on bean names; for our development, me and my other co-workers love to use this method because some beans are still working on progress, and I don't want other developers to use my beans until I finish my job; so I can put my sign "DO NOT TOUCH!" on my lovely beans. :) Comparing process performance between CGLib and JDK Proxy(default AOP engine on Spring) might be also useful if you're concerning about AOP engine performance. I hope Craig puts more about Spring AOP on those methods in his book. Generally, this chapter has well-balanced AOP information between Spring AOP and AspectJ.

Chapter 5,6 need more work. I was a bit frustrated by lack of information on the Spring JDBC template usage. On the chapter 5, Craig explains very well for Spring JDBC templates, but it needs more information. For example, there is no information about SimpleJdbcInsert, handling CLOB and BLOB (good for handling binary objects and files). Some methods on the example code don't even have explanation at all. Specifically, the sample method on page 129, where is the "queryForIdentity()"?; I went MANNING publisher website and download the example source code, and I finally figured out what this method means and how this method works. There is also better way to do the Jdbc Insertion. Crag needs to write more information about SimpleJdbcInsert method; basically it is using keyholding mechanism for auto-generated insertion ID and return it back when Jdbc inserts data into table. Data insertion using "executeAndReturnKey()" is a lot safer than using general insertion method for data transaction integrity. For Spring transaction, I hope there are both traditional using transactionproxyfactorybean with transaction advice and the Spring 3 annotation based transaction examples.

Chapter 7 Spring MVC needs more work. Crag did good job for Annotation-based bean and its XML configuration part, there are a few important information are missing! These are HandlerInterceptor (mvc: xmlns interceptor), Spring Message Taglib (traditional way of displaying messages than annotation-based form validation), and i18n(Internationalization). Applying Spring AOP for MVC controller and service components are very useful for web server security and the service delivery without modifying existing source code; a few good examples are keyword-filtering, secure loggings, and selecting processors depending on which URL with which queries passed to your MVC controller and service components. This book must explain how to use those handlers (pre and post handlers for MVC controllers). Internationalization using "SessionLocaleResolver" and "ReloadableResourceBundleMessageSource" is also important; you can put all the i18n messages using UTF-8 (DO NOT put BOM!) encording; then Spring "LocaleChangeInterceptor" will trigger the message display depending on your language preference.

Even with a few complains, Spring in Action 3rd is another well-written book for Spring 3. Crag mostly did great job on this book; I cannot believe that he wrote this book by himself! "Craig , you rock!" However, I recommend either FIY(Find It Yourself) on Spring reference documentation and Spring forums if this book is not enough for you. Thank you for reading my review.
5 von 5 Kunden fanden die folgende Rezension hilfreich
Waste Of Time And Money 19. Januar 2012
Von newbie-to-programming - Veröffentlicht auf Amazon.com
Format:Taschenbuch
Unless you are already an experienced enterprise level developer don't buy this book. I am familiar with Java and wanted to build a web app using Spring MVC and Spring Web Flow. This was my first experience with using a Java framework.

I can appreciate that the Spring Framework and the Java landscape itself are both very large. But with regards to this book, the author didn't seem to give any solid overview or philosophy on how to get things done. It seemed as if too much time was spent on fine details and specifics instead of a concise and succinct, general overview.

I didn't even know if some of the examples where meant to illustrate a point or whether it was to be used in the example application that was being made in the book. Most books define the file that the code is referring to, ie go to example.java and add blah after line no blah. But that was not the case with this book.

Also most books make an acknowledgement of all the technologies that can be used but define the preference that they will be working with again this was not the case. Instead just lots of possible implementations of the same scenario.

On a positive note, this would probably be a good book for someone who just needs a reference, but definitly not for someone trying to learn Spring from the ground up.

BookReview verdict = new BookReview("Whack");

Kunden diskutieren

Das Forum zu diesem Produkt
Diskussion Antworten Jüngster Beitrag
Noch keine Diskussionen

Fragen stellen, Meinungen austauschen, Einblicke gewinnen
Neue Diskussion starten
Thema:
Erster Beitrag:
Eingabe des Log-ins
 


Aktive Diskussionen in ähnlichen Foren
Kundendiskussionen durchsuchen
Alle Amazon-Diskussionen durchsuchen
   
Ähnliche Foren


Lieblingslisten


Ähnliche Artikel finden


Anhand des Sachgebietes nach ähnlichen Produkten suchen:


Ihr Kommentar


Datenschutzerklärung von Amazon.de Versandbedingungen von Amazon.de Umtausch- & Rücknahme bei Amazon.de