Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[포털 사이트][배너관리] 롬복 생성자 기반 종속성 주입 #32

Open
wants to merge 2 commits into
base: contribution
Choose a base branch
from

Conversation

danheean
Copy link

수정 사유 Reason for modification

소스를 수정한 사유가 무엇인지 체크해 주세요. Please check the reason you modified the source. ([X] X는 대문자여야 합니다.)

  • 버그수정 Bug fixes
  • 기능개선 Enhancements
  • 기능추가 Adding features
  • 기타 Others

수정된 소스 내용 Modified source

검토자를 위해 수정된 소스 내용을 설명해 주세요. Please describe the modified source for reviewers.

[포털 사이트][배너관리] 롬복 생성자 기반 종속성 주입

  • Source > Format
  • @Repository("bannerDAO")@Repository 로 수정
  • @Service("egovBannerService")@Service 로 수정
  • @RequiredArgsConstructor 추가

크롬 링크 주소 복사

검색 키워드

/uss/ion/bnr/

브랜치 이름

2024/di/bnr

@Repository DAO - BannerDAO

@Repository
public class BannerDAO extends EgovAbstractMapper {

@Service ServiceImpl - EgovBannerServiceImpl

@Service
@RequiredArgsConstructor
public class EgovBannerServiceImpl extends EgovAbstractServiceImpl implements EgovBannerService {

	private final BannerDAO bannerDAO;

@Controller Controller - EgovBannerController

@Controller
@RequiredArgsConstructor
public class EgovBannerController {

	@Resource(name = "egovMessageSource")
	EgovMessageSource egovMessageSource;

	@Resource(name = "EgovFileMngService")
	private EgovFileMngService fileMngService;

	@Resource(name = "EgovFileMngUtil")
	private EgovFileMngUtil fileUtil;

	private final EgovBannerService egovBannerService;

	/** Message ID Generation */
	private final EgovIdGnrService egovBannerIdGnrService;

	@Autowired
	private DefaultBeanValidator beanValidator;

JUnit 테스트 JUnit tests

테스트를 완료하셨으면 다음 항목에 [대문자X]로 표시해 주세요. When you're done testing, check the following items.

  • JUnit 테스트 JUnit tests
  • 수동 테스트 Manual testing

테스트 브라우저 Test Browser

테스트를 진행한 브라우저를 선택해 주세요. Please select the browser(s) you ran the test on. (다중 선택 가능 you can select multiple) [X] X는 대문자여야 합니다.

  • Chrome
  • Firefox
  • Edge
  • Safari
  • Opera
  • Internet Explorer
  • 기타 Others

테스트 스크린샷 또는 캡처 영상 Test screenshots or captured video

테스트 전과 후의 스크린샷 또는 캡처 영상을 이곳에 첨부해 주세요. Please attach screenshots or video captures of your before and - after tests here.

  • 포털서비스관리 > 서비스관리 > 배너관리 화면
    image

  • EgovBannerController.java
    image

  • EgovBannerServiceImpl.java
    image

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant