Boot20220328Application.java
example/boot_20220328/Boot20220328Application.java
package com.example.boot_20220328;
import org.mybatis.spring.annotation.MapperScan;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.EnableAspectJAutoProxy;
@EnableAspectJAutoProxy
@SpringBootApplication
// 컨트롤러, 환경설정, 서비스(구버전용)
@ComponentScan(basePackages = {
"com.example.controller",
"com.example.service",
"com.example.config",
"com.example.aop",
"com.example.interceptor" })
@MapperScan(basePackages = {"com.example.mapper"})
public class Boot20220328Application {
public static void main(String[] args) {
SpringApplication.run(Boot20220328Application.class, args);
}
}
Author And Source
이 문제에 관하여(Boot20220328Application.java), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@gegus1220/Boot20220328Application.java저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)