File tree 3 files changed +17
-15
lines changed
flow-server/src/main/java/com/vaadin/flow/di
vaadin-spring/src/main/java/com/vaadin/flow/spring
3 files changed +17
-15
lines changed Original file line number Diff line number Diff line change 15
15
*/
16
16
package com .vaadin .flow .di ;
17
17
18
+ import java .util .ServiceLoader ;
19
+ import java .util .concurrent .atomic .AtomicReference ;
20
+ import java .util .stream .Stream ;
21
+ import java .util .stream .StreamSupport ;
22
+
18
23
import com .vaadin .flow .component .Component ;
19
24
import com .vaadin .flow .function .DeploymentConfiguration ;
20
25
import com .vaadin .flow .i18n .I18NProvider ;
24
29
import com .vaadin .flow .server .VaadinService ;
25
30
import com .vaadin .flow .server .VaadinServiceInitListener ;
26
31
27
- import java .util .ServiceLoader ;
28
- import java .util .concurrent .atomic .AtomicReference ;
29
- import java .util .stream .Stream ;
30
- import java .util .stream .StreamSupport ;
31
-
32
32
/**
33
33
* Default instantiator that is used if no other instantiator has been
34
34
* registered. This implementation uses vanilla Java mechanisms such as
Original file line number Diff line number Diff line change 15
15
*/
16
16
package com .vaadin .flow .di ;
17
17
18
+ import java .io .Serializable ;
19
+ import java .util .ServiceLoader ;
20
+ import java .util .stream .Stream ;
21
+
18
22
import com .vaadin .flow .component .Component ;
19
23
import com .vaadin .flow .component .HasElement ;
20
24
import com .vaadin .flow .component .UI ;
27
31
import com .vaadin .flow .server .communication .IndexHtmlRequestListener ;
28
32
import com .vaadin .flow .server .communication .UidlWriter ;
29
33
30
- import java .io .Serializable ;
31
- import java .util .ServiceLoader ;
32
- import java .util .stream .Stream ;
33
-
34
34
/**
35
35
* Delegate for discovering, creating and managing instances of various types
36
36
* used by Flow. Dependency injection frameworks can provide an implementation
Original file line number Diff line number Diff line change 15
15
*/
16
16
package com .vaadin .flow .spring ;
17
17
18
- import com .vaadin .flow .server .Constants ;
19
- import com .vaadin .flow .server .VaadinServlet ;
20
- import com .vaadin .flow .spring .springnative .VaadinBeanFactoryInitializationAotProcessor ;
21
- import jakarta .servlet .MultipartConfigElement ;
18
+ import java .util .HashMap ;
19
+ import java .util .Map ;
20
+
22
21
import org .atmosphere .cpr .ApplicationConfig ;
23
22
import org .springframework .beans .factory .ObjectProvider ;
24
23
import org .springframework .beans .factory .annotation .Autowired ;
35
34
import org .springframework .web .context .WebApplicationContext ;
36
35
import org .springframework .web .socket .server .standard .ServerEndpointExporter ;
37
36
38
- import java .util .HashMap ;
39
- import java .util .Map ;
37
+ import com .vaadin .flow .server .Constants ;
38
+ import com .vaadin .flow .server .VaadinServlet ;
39
+ import com .vaadin .flow .spring .springnative .VaadinBeanFactoryInitializationAotProcessor ;
40
+
41
+ import jakarta .servlet .MultipartConfigElement ;
40
42
41
43
/**
42
44
* Spring boot auto-configuration class for Flow.
You can’t perform that action at this time.
0 commit comments