File tree 10 files changed +23
-23
lines changed
springboot-example/src/main/java/com/codingapi/springboot/example/insfrastructure/query
springboot-starter-data-fast/src/main
java/com/codingapi/springboot/fast
10 files changed +23
-23
lines changed Original file line number Diff line number Diff line change 1
1
package com .codingapi .springboot .example .insfrastructure .query ;
2
2
3
3
import com .codingapi .springboot .example .insfrastructure .entity .DemoEntity ;
4
- import com .codingapi .springboot .fastshow .annotation .FastController ;
5
- import com .codingapi .springboot .fastshow .annotation .FastMapping ;
4
+ import com .codingapi .springboot .fast .annotation .FastController ;
5
+ import com .codingapi .springboot .fast .annotation .FastMapping ;
6
6
import org .springframework .web .bind .annotation .RequestMethod ;
7
7
import org .springframework .web .bind .annotation .RequestParam ;
8
8
Original file line number Diff line number Diff line change 1
- package com .codingapi .springboot .fastshow ;
1
+ package com .codingapi .springboot .fast ;
2
2
3
- import com .codingapi .springboot .fastshow .executor .JpaExecutor ;
4
- import com .codingapi .springboot .fastshow .mapping .MvcEndpointMapping ;
5
- import com .codingapi .springboot .fastshow .registrar .MvcMappingRegistrar ;
3
+ import com .codingapi .springboot .fast .executor .JpaExecutor ;
4
+ import com .codingapi .springboot .fast .mapping .MvcEndpointMapping ;
5
+ import com .codingapi .springboot .fast .registrar .MvcMappingRegistrar ;
6
6
import org .springframework .boot .autoconfigure .condition .ConditionalOnClass ;
7
7
import org .springframework .boot .autoconfigure .condition .ConditionalOnMissingBean ;
8
8
import org .springframework .context .annotation .Bean ;
14
14
15
15
@ Configuration
16
16
@ ConditionalOnClass (WebMvcConfigurer .class )
17
- public class FastShowConfiguration {
17
+ public class DataFastConfiguration {
18
18
19
19
20
20
@ Bean
Original file line number Diff line number Diff line change 1
- package com .codingapi .springboot .fastshow .annotation ;
1
+ package com .codingapi .springboot .fast .annotation ;
2
2
3
3
import java .lang .annotation .*;
4
4
Original file line number Diff line number Diff line change 1
- package com .codingapi .springboot .fastshow .annotation ;
1
+ package com .codingapi .springboot .fast .annotation ;
2
2
3
3
4
4
import org .springframework .web .bind .annotation .RequestMethod ;
Original file line number Diff line number Diff line change 1
- package com .codingapi .springboot .fastshow .executor ;
1
+ package com .codingapi .springboot .fast .executor ;
2
2
3
3
import lombok .AllArgsConstructor ;
4
4
Original file line number Diff line number Diff line change 1
- package com .codingapi .springboot .fastshow .executor ;
1
+ package com .codingapi .springboot .fast .executor ;
2
2
3
- import com .codingapi .springboot .fastshow .annotation .FastMapping ;
3
+ import com .codingapi .springboot .fast .annotation .FastMapping ;
4
4
import lombok .AllArgsConstructor ;
5
5
6
6
import java .lang .reflect .InvocationHandler ;
Original file line number Diff line number Diff line change 1
- package com .codingapi .springboot .fastshow .mapping ;
1
+ package com .codingapi .springboot .fast .mapping ;
2
2
3
3
import lombok .AllArgsConstructor ;
4
4
import org .springframework .http .MediaType ;
Original file line number Diff line number Diff line change 1
- package com .codingapi .springboot .fastshow .registrar ;
1
+ package com .codingapi .springboot .fast .registrar ;
2
2
3
- import com .codingapi .springboot .fastshow .annotation .FastController ;
3
+ import com .codingapi .springboot .fast .annotation .FastController ;
4
4
import com .codingapi .springboot .framework .registrar .RegisterBeanDefinition ;
5
5
import lombok .SneakyThrows ;
6
6
import lombok .extern .slf4j .Slf4j ;
13
13
14
14
@ Slf4j
15
15
@ Configuration
16
- public class FastShowBeanDefinitionRegistrar implements ImportBeanDefinitionRegistrar {
16
+ public class DataFastBeanDefinitionRegistrar implements ImportBeanDefinitionRegistrar {
17
17
18
18
19
19
@ SneakyThrows
Original file line number Diff line number Diff line change 1
- package com .codingapi .springboot .fastshow .registrar ;
1
+ package com .codingapi .springboot .fast .registrar ;
2
2
3
- import com .codingapi .springboot .fastshow .annotation .FastMapping ;
4
- import com .codingapi .springboot .fastshow .executor .JpaExecutor ;
5
- import com .codingapi .springboot .fastshow .executor .MvcMethodProxy ;
6
- import com .codingapi .springboot .fastshow .mapping .MvcEndpointMapping ;
3
+ import com .codingapi .springboot .fast .annotation .FastMapping ;
4
+ import com .codingapi .springboot .fast .executor .JpaExecutor ;
5
+ import com .codingapi .springboot .fast .executor .MvcMethodProxy ;
6
+ import com .codingapi .springboot .fast .mapping .MvcEndpointMapping ;
7
7
import lombok .AllArgsConstructor ;
8
8
import lombok .SneakyThrows ;
9
9
import lombok .extern .slf4j .Slf4j ;
Original file line number Diff line number Diff line change 1
1
org.springframework.boot.autoconfigure.EnableAutoConfiguration=\
2
- com.codingapi.springboot.fastshow.FastShowConfiguration ,\
3
- com.codingapi.springboot.fastshow .registrar.FastShowBeanDefinitionRegistrar
2
+ com.codingapi.springboot.fast.DataFastConfiguration ,\
3
+ com.codingapi.springboot.fast .registrar.DataFastBeanDefinitionRegistrar
You can’t perform that action at this time.
0 commit comments