Router 3.2.0 - Providers instantiated twice
See original GitHub issueI’m submitting a … (check one with “x”)
[x] bug report => search github for a similar issue or PR before submitting
[ ] feature request
[ ] support request => Please do not submit support request here, instead see https://github.com/angular/angular/blob/master/CONTRIBUTING.md#question
Current behavior After upgrading to router 3.2.0, services being provided by component module are being instantiated twice. Once while resolver is being run (last place in router is PreActivation.prototype.getToken) and then again later during activation (last place in router is RouterOutlet.prototype.activate). Upgrading rest of Angular to 2.2.0 and leaving router at 3.1.1 it works as it used to (and looking in debugger I see service is only instantiated from PreActivation.prototype.getToken)
Expected behavior
Providers should only be instantiated once - as they are when using router version 3.1.1
Minimal reproduction of the problem with instructions
Haven’t yet reproduced in a plnkr but my use case has a lazy loaded component that itself has sub components (not lazy loaded). The sub component has a resolver that uses a service, and the sub component itself uses the service. The service is included in the lazy loaded components module providers list and is being instantiated twice. Once apparently while router is working on resolve and once when component is being activated.
What is the motivation / use case for changing the behavior?
Its just wrong, and my service fetches data on initialization so extra instance causes extra fetch. This does not happen with router 3.1.1 (never tried 3.1.2 as deactivate guards don’t work correctly in that version)
Please tell us about your environment:
Windows 10, Visual Studio Code, angular-cli: 1.0.0-beta.19-3 ng serve
- Angular version: 2.0.X
2.2.0
- Browser: [all | Chrome XX | Firefox XX | IE XX | Safari XX | Mobile Chrome XX | Android X.X Web Browser | iOS XX Safari | iOS XX UIWebView | iOS XX WKWebView ]
Only tried in Chrome
-
Language: [all | TypeScript X.X | ES6/7 | ES5] Typescript 2.0.9
-
Node (for AoT issues):
node --version=
Issue Analytics
- State:
- Created 7 years ago
- Reactions:32
- Comments:77 (20 by maintainers)

Top Related StackOverflow Question
Just an FYI, @vicb is working on this issue now. We are cautiously optimistic, about it making into v4.0.0
Update: we had a discussion / design review today on this, and think we have a workable solution to solve it. Just verifying the semantics are right and we’ll land a PR.