Guest User

Untitled

a guest
Oct 19th, 2017
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. public class AppConfiguration {
  2. ...
  3. @Bean
  4. public ClientService clientService3(final ClientDao clientDao) {
  5. ClientServiceImpl clientService = new ClientServiceImpl();
  6. clientService.setName("instancia client service 3");
  7. clientService.setClientDao(clientDao);
  8. return clientService;
  9. }
  10. }
Add Comment
Please, Sign In to add comment