Pridružio se: 18 Jan 2011 Postovi: 3730
Zahvalio se : 0 puta
Pohvaljen : 33 puta
[Koushik Kothagal] Java Brains: Spring Framework (2011) English | h264 yuv420p 1280x720 29.97 fps | aac 44100 Hz stereo | 3.17 GB Genre: Video Training
A series of video tutorials on framework to Hibernate. Content 01 - Understanding Dependency Injection In this tutorial, we'll Understand the Concept of Dependency Injection.
02 - Setting Up In this tutorial, we'll learn How to set up Eclipse Development environment Our to write Spring code.
03 - Understanding Spring Bean Factory In this tutorial, we'll discuss the role of Spring as a bean container. We'll also have a quick discussion on the Factory pattern, and I'll introduce you to the Spring Bean Factory object.
04 - Writing Code Using the Bean Factory In this tutorial, we'll write code to Implement the BeanFactory Concept That We learnt in our previous tutorial. We'll write a Spring XML to configure a Spring bean. Then we'll use the BeanFactory to instantiate our bean in the Spring container.
05 - ApplicationContext and Initialization Property We'll replace the first with the BeanFactory ApplicationContext More Powerful. We'll then make Spring initialize a property of an object by specifying the value in the configuration XML.
06 - Using Constructor Injection We'll now use the Constructors to set member variable values ??for Our Spring beans. We'll also look at some techniques to resolve conflicts in the case of overloaded constructors.
07 - Injecting Objects In this tutorial, we'll use to inject dependency Injection an object dependency to a Spring Bean.
08 - Inner Beans, Aliases and idref In this tutorial, we'll look at some concepts related to bean naming and usage like alias and idref. We'll also understand how to write inner beans.
09 - Initializing Collections In this tutorial, we'll initialize a member variable That's a Collection and Each of the Elements Are references to Other beans.
10 - Bean Autowiring We'll now Look at a configuration feature provided by Spring to wire dependencies automatically: Bean Autowiring. We'll learn about different types of autowiring, and we'll write some code to implement bean autowiring by name.
11 - Understanding Bean Scopes This tutorial Covers the Concepts of Bean Scopes in Spring. We'll understand when beans are created and how to configure different scopes for the beans.
12 - Using ApplicationContextAware We'll Provide Our ??beans with access to the ApplicationContext object by Implementing the ApplicationContextAware interface. We'll also use BeanNameAware interface to get the name of the bean configured in the Spring XML.
13 - Bean Definition Inheritance In this tutorial, we'll learn Bean Definition What is Inheritance, and How to configure a parent Bean Definition and Have Children beans inherit the bean definitions.
14 - Lifecycle Callbacks We'll use two Different Ways to run on Methods of Destruction initialization and beans.
15 - Writing a BeanPostProcessor In this tutorial, we'll Understand What is a BeanPostProcessor. We'll also write a BeanPostProcessor that prints a message upon initializing each and every bean in the Spring XML.
16 - Writing a BeanFactoryPostProcessor In this tutorial, we'll learn about and write Our ??Own BeanFactoryPostProcessor. We'll also try out a handy BeanFactoryPostProcessor that comes with Spring: the PropertyPlaceholderConfigurer.
17 - To Coding Interfaces When using Spring for dependency Injection, IT's a Good practice to use interfaces for referencing dependencies. In this tutorial, we'll learn how to "" code to interfaces "".
18 - Introduction to Annotations and the Required Annota ... Here we'll Have Our ??first Look at Spring annotations. We'll understand and implement the Required annotation, and we'll also learn how it's actually a BeanPostProcessor that's working behind the scenes.
19 - The Autowired Annotation In this tutorial, we'll use the annotation to Autowired wire up dependencies. We'll learn how to add dependencies by type and name. We'll also use Qualifiers to narrow down dependency contenders.
20 - Some JSR-250 Annotations We'll learn and Implement JSR-250 Three annotations that Spring supports: Resource, PostConstruct and PreDestroy.
21 - Component and Stereotype Annotations We'll now use the Component annotation to define Spring beans. We'll also look at some Stereotype annotations.
22 - Using MessageSource To Get From Text Files Property In this tutorial, we'll use the MessageSource interface to Retrieve messages out of Files Property.
23 - Event Handling in Spring We'll now Look at Spring's support for Event Handling. We'll write an event listener in this tutorial. i'll also show you how to write custom events and publish them anywhere in the code.
24 - Introduction to AOP This video Provides a Brief introduction to Aspect Oriented Programming Concepts.
25 - Setting Up AOP Dependencies In this tutorial, we'll Add the Additional dependencies required for Spring AOP and we'll configure Our ??Project's class path dependencies with These. The Links for the dependencies Are:
Kod:
Ukoliko zelite da vidite linkove morate se registrovati ili prijaviti
26 - Writing Our First Aspect Part 1 In this first part of the tutorial, we 'll create a Spring project that forms the basis for our Aspect. This is a good refresher of some of the core Spring concepts, and it also give us an opportunity to introduce a service layer in our code that we'll build on in the subsequent tutorials.
27 - Writing Our First Aspect Part 2 Now that we have a basic Spring application, we'll implement the Logging aspect. We'll learn how to create a new Aspect using annotations and configure an advice to run before a getter method.
28 - pointcuts and Wildcard Expressions We'll now learn What is a Pointcut, Pointcut annotation and the How to apply multiple advice to pointcuts .
29 - A Few More Pointcut Expressions In this tutorial, we'll learn about a few Other Pointcut Expressions That CAN be Used to Different Methods advice.
30 - JoinPoints and Advice Arguments We'll now learn about Join Points, and How We CAN use arguments in the advice methods to get information about join points.
31 - After Advice Types We'll learn about the types After Advice: After (finally), and AfterReturning AfterThrowing.
32 - Around Advice Type This tutorial Covers Around the advice type. We'll learn how to use it, and we'll also look at some of the unique and powerful features that are specific to this advice type.
33 - Naming Conventions and Advice Custom Annotations In this video, I Share Some Thoughts on naming conventions , and how it helps in the case of writing aspects in Spring. We will also understand how to write our own custom annotations to apply advice to methods.
34 - AOP XML configuration We'll learn How to configure Aspects, advice and pointcuts using the traditional way XML.
35 - Understanding AOP Proxies In this video, We go where no Spring AOP tutorial has gone before! We'll understand how Spring AOP works and how it uses proxy classes to apply advice. And we'll do this by implementing our own simple factory service. The way Spring AOP works is much more complicated, but this simple implementation should give us a solid understanding of proxy objects and clarify the core concepts.
36 - Introduction to Spring Data and Setting Up This tutorial Serves as an introduction to Spring Data Support. We'll also install a lightweight database Apache Derby that we'll use in subsequent tutorials. We'll learn how to start Derby in Network server mode, and how to connect and run SQL queries using the ij client tool.
37 - Using JDBC Without Spring We'll now Implement a simple DAO class fetches data from That the Database using JDBC . We'll look at all the boilerplate code we need to write to establish connections, execute queries, close objects and handle exceptions.
38 - Adding Spring and DataSource Configuration We'll now Add to the Spring framework JDBC Our Project. We'll add dependency injection to our Main and DAO class. We'll also learn how to configure DataSource as a Spring bean and supply connection parameters to it in the XML file.
39 - Using JdbcTemplate We'll use the JdbcTemplate class Provided by Spring DAO to Implement a Method. We'll see how using the template class makes the DAO methods simple, and how it takes care of much of the boilerplate code we'd have to write otherwise.
40 - Returning from Other Datatypes JdbcTemplate We Returned an Integer datatype result from Our query in the previous tutorial. In this tutorial, we'll learn how to return other datatypes. We'll implement a method that returns a String query output.
41 - Implementing RowMapper In this tutorial, We Implement a Custom RowMapper class to map Our Domain objects. We then use this class to write fetch methods that return custom model objects.
42 - Performing Write Operations with JdbcTemplate We'll now write Implement Some Database Operations. We'll write a DAO method to update a value in the database, as well as use the execute () method to run a DDL SQL query.
43 - Named Parameter JDBC Template We'll use the class to run NamedParameterJdbcTemplate queries with named placeholders .
44 - Support DAO Classes We'll wrap up Discussion on the Spring JDBC Support by using the DAO Support classes Spring That Provides out of the Box. We'll see how this makes our DAO classes cleaner than ever.
45 - Using Hibernate with Spring In this video, we'll learn How to integrate the Hibernate framework in Our Spring Application. We'll create a SessionFactory as a Spring singleton and use that in our DAO class to
Ne možete postavljati nove teme u ovom forumu Ne možete odgovarati na teme u ovom forumu Ne možete monjati vaše postove u ovom forumu Ne možete brisati vaše postove u ovom forumu