Posts by "JBT"

Linux alias command tutorial with example

What is Alias Alias is a command(User Chosen e.g. JBT) which is used to launch any system specific(e.g. ls) command or group of command inclusive of any options,arguments or redirection. In simple word it is(Alias command) providing you option to use simple string for any complex command(Shortcut of a complex command).

Spring autowiring by name example

In Previous article we have learned about autowiring byType. In this article we will learn about the Autowiring by Name. Autowiring byName means whenever spring finds any property to be autowired, it will search for exactly one bean of given property name in container. If Spring find one(unique bean) it will autowire it. If it doesn’t find any, no auto… Continue reading

Spring autowiring by type

In Previous article we have learned that Spring support different type of autowiring. One of them is byType. Autowiring byType means whenever spring finds any property to be autowired, it will search for exactly one bean of given property type in container. If Spring find one(unique bean) it will autowire it. If it doesn’t find… Continue reading