디시인사이드 갤러리

갤러리 이슈박스, 최근방문 갤러리

갤러리 본문 영역

이거 뭐가 문제임요라...앱에서 작성

ㅇㅇ갤로그로 이동합니다. 2025.04.03 12:27:48
조회 40 추천 0 댓글 2

package ch04_p01.ems;



import org.springframework.context.support.GenericXmlApplicationContext;



import ch04_p01.ems.member.Student;

import ch04_p01.ems.member.dao.StudentDao;

import ch04_p01.ems.member.service.EMSInformationService;

import ch04_p01.ems.member.service.PrintStudentInformationService;

import ch04_p01.ems.member.service.StudentDeleteService;

import ch04_p01.ems.member.service.StudentModifyService;

import ch04_p01.ems.member.service.StudentRe1gisterService;

import ch04_p01.ems.member.service.StudentSelectService;

import ch04_p01.ems.utils.InitSampleData;



public class MainClass {



    public static void main(String[] args) {

        /*

         * IoC 컨테이너 생성

         */

        GenericXmlApplicationContext ctx = new GenericXmlApplicationContext("classpath:applicationContext.xml");



        // 샘플 데이터

        InitSampleData initSampleData = ctx.getBean("initSampleData", InitSampleData.class);

        String[] sNums = initSampleData.getsNums();

        String[] sIds = initSampleData.getsIds();

        String[] sPws = initSampleData.getsPws();

        String[] sNames = initSampleData.getsNames();

        int[] sAges = initSampleData.getsAges();

        String[] sGenders = initSampleData.getsGenders();

        String[] sMajors = initSampleData.getsMajors();



        // 데이터베이스에 샘플 데이터 저장

        StudentRe1gisterService re1gisterService = ctx.getBean("studentRe1gisterService", StudentRe1gisterService.class);

        for (int i = 0; i < sNums.length; i++) {

            re1gisterService.re1gister(new Student(sNums[i], sIds[i], sPws[i], sNames[i], sAges[i], sGenders[i], sMajors[i]));

        }



        // 학생 리스트

        PrintStudentInformationService printStudentInformationService = ctx.getBean("printStudentInformationService", PrintStudentInformationService.class);

        printStudentInformationService.printStudentsInfo();



        re1gisterService = ctx.getBean("studentRe1gisterService", StudentRe1gisterService.class);

        re1gisterService.re1gister(new Student("hbs006", "deer", "p0006", "melissa", 26, "W", "Music"));

        StudentDao studentDao = ctx.getBean("studentDao", StudentDao.class);

        System.out.println("re1gister() 후 studentDB: " + studentDao.getStudentDB().keySet());



        printStudentInformationService.printStudentsInfo();



        StudentSelectService selectService = ctx.getBean("studentSelectService", StudentSelectService.class);

        System.out.println("select() 전 studentDB: " + studentDao.getStudentDB().keySet());

        Student selectedStudent = selectService.select("hbs006");



        System.out.println("STUDENT START ---------------------");

        System.out.print("sNum:" + selectedStudent.getsNum() + "\t");

        System.out.print("sId:" + selectedStudent.getsId() + "\t");

        System.out.print("sPw:" + selectedStudent.getsPw() + "\t");

        System.out.print("sName:" + selectedStudent.getsName() + "\t");

        System.out.print("sAge:" + selectedStudent.getsAge() + "\t");

        System.out.print("sGender:" + selectedStudent.getsGender() + "\t");

        System.out.println("sMajor:" + selectedStudent.getsMajor());

        System.out.println("END ---------------------");



        StudentModifyService modifyService = ctx.getBean("studentModifyService", StudentModifyService.class);

        modifyService.modify(new Student("hbs006", "pig", "p0066", "melissa", 27, "W", "Computer"));



        printStudentInformationService.printStudentsInfo();



        StudentDeleteService deleteService = ctx.getBean("studentDeleteService", StudentDeleteService.class);

        deleteService.delete("hbs005");



        printStudentInformationService.printStudentsInfo();



        EMSInformationService emsInformationService = ctx.getBean("emsInformationService", EMSInformationService.class);

        emsInformationService.printEMSInformation();



        ctx.close();

    }

}



ㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡ



package ch04_p01.ems.member.service;



import ch04_p01.ems.member.Student;

import ch04_p01.ems.member.dao.StudentDao;



public class StudentSelectService {

private StudentDao studentDao;


public StudentSelectService(StudentDao studentDao) {

this.studentDao = studentDao;

}


public Student select (String sNum) {

if (verify(sNum)) {

return studentDao.select(sNum);

} else {

System.out.println("Student information is unavailable");

}

return null;

}


public boolean verify(String sNum) {

Student student = studentDao.select(sNum);

return student == null ? true : false;

}

}



ㅡㅡㅡㅡㅡㅡㅡㅡㅡㅡ



<?xml version="1.0" encoding="UTF-8"?>



       xsi:schemaLocation="http://www.springframework.org/schema/beans

                           http://www.springframework.org/schema/beans/spring-beans.xsd">



    <!-- InitSampleData 빈 -->

    <bean id="initSampleData"

          class="ch04_p01.ems.utils.InitSampleData">

        <property name="sNums">

            <array>

                <value>hbs001</value>

                <value>hbs002</value>

                <value>hbs003</value>

                <value>hbs004</value>

                <value>hbs005</value>

            </array>

        </property>

        <property name="sIds">

            <array>

                <value>rabbit</value>

                <value>hippo</value>

                <value>raccoon</value>

                <value>elephant</value>

                <value>lion</value>

            </array>

        </property>

        <property name="sPws">

            <array>

                <value>p0001</value>

                <value>p0002</value>

                <value>p0003</value>

                <value>p0004</value>

                <value>p0005</value>

            </array>

        </property>

        <property name="sNames">

            <array>

                <value>agatha</value>

                <value>barbara</value>

                <value>chris</value>

                <value>doris</value>

                <value>elva</value>

            </array>

        </property>

        <property name="sAges">

            <array>

                <value>19</value>

                <value>22</value>

                <value>20</value>

                <value>27</value>

                <value>19</value>

            </array>

        </property>

        <property name="sGenders">

            <array>

                <value>M</value>

                <value>W</value>

                <value>W</value>

                <value>M</value>

                <value>M</value>

            </array>

        </property>

        <property name="sMajors">

            <array>

                <value>English</value>

                <value>Korean</value>

                <value>French</value>

                <value>Philosophy</value>

                <value>History</value>

            </array>

        </property>

    </bean>



    <!-- StudentDao 빈 -->

    <bean id="studentDao"

          class="ch04_p01.ems.member.dao.StudentDao" />



    <!-- StudentRe1gisterService 빈 생성 -->

    <bean id="studentRe1gisterService"

          class="ch04_p01.ems.member.service.StudentRe1gisterService">

        <constructor-arg ref="studentDao" />

    </bean>



    <!-- StudentModifyService 빈 생성 -->

    <bean id="studentModifyService"

          class="ch04_p01.ems.member.service.StudentModifyService">

        <constructor-arg ref="studentDao" />

    </bean>



    <!-- StudentDeleteService 빈 생성 -->

    <bean id="studentDeleteService"

          class="ch04_p01.ems.member.service.StudentDeleteService">

        <constructor-arg ref="studentDao" />

    </bean>



    <!-- StudentSelectService 빈 생성 -->

    <bean id="studentSelectService"

          class="ch04_p01.ems.member.service.StudentSelectService">

        <constructor-arg ref="studentDao" />

    </bean>



    <!-- StudentAllSelectService 빈 생성 -->

    <bean id="studentAllSelectService"

          class="ch04_p01.ems.member.service.StudentAllSelectService">

        <constructor-arg ref="studentDao" />

    </bean>



    <!-- PrintStudentInformationService 빈 생성 -->

    <bean id="printStudentInformationService"

          class="ch04_p01.ems.member.service.PrintStudentInformationService">

        <constructor-arg ref="studentAllSelectService" />

    </bean>



    <!-- DBConnectionInfo 빈 -->

    <!-- 개발에 사용하는 데이터베이스 빈 생성 -->

    <bean id="dev_DBConnectionInfoDev"

          class="ch04_p01.ems.member.DBConnectionInfo">

        <property name="url" value="000.000.000.000" />

        <property name="userId" value="admin" />

        <property name="userPw" value="0000" />

    </bean>



    <!-- 실제 서비스에 이용하는 데이터베이스 빈 생성 -->

    <bean id="real_DBConnectionInfo"

          class="ch04_p01.ems.member.DBConnectionInfo">

        <property name="url" value="111.111.111.111" />

        <property name="userId" value="master" />

        <property name="userPw" value="1111" />

    </bean>



    <!-- EMSInformationService 빈 -->

    <bean id="emsInformationService"

          class="ch04_p01.ems.member.service.EMSInformationService">

        <property name="info"

                  value="Education Management System program was developed in 2022." />

        <property name="copyRight"

                  value="COPYRIGHT (C) 2022 EMS CO., LTD. ALL RIGHT RESERVED. CONTACT MASTER FOR MORE INFORMATION." />

        <property name="ver" value="The version is 1.0" />

        <property name="sYear" value="2022" />

        <property name="sMonth" value="3" />

        <property name="sDay" value="1" />

        <property name="eYear" value="2022" />

        <property name="eMonth" value="4" />

        <property name="eDay" value="30" />

        <property name="developers">

            <list>

                <value>Cheney.</value>

                <value>Eloy.</value>

                <value>Jasper.</value>

                <value>Dillon.</value>

                <value>Kian.</value>

            </list>

        </property>

      

            <!-- administrators 필드 초기화 -->

    <property name="administrators">

        <map>

            <entry>

                <key>

                    <value>Cheney</value>

                </key>

                <value>cheney@springPjt.org</value>

            </entry>

            <entry>

                <key>

                    <value>Jasper</value>

                </key>

                <value>jasper@springPjt.org</value>

            </entry>

        </map>

    </property>



    <!-- dbInfos 필드 초기화 -->

    <property name="dbInfos">

        <map>

            <!-- 개발용 데이터베이스 지정 -->

            <entry>

                <key>

                    <value>dev</value>

                </key>

                <ref bean="dev_DBConnectionInfoDev" />

            </entry>

            <!-- 실제 서비스 데이터베이스 지정 -->

            <entry>

                <key>

                    <value>real</value>

                </key>

                <ref bean="real_DBConnectionInfo" />

            </entry>

        </map>

    </property>

      

    </bean>





</beans>


hbs006 등록후 전체출력 자체는 되는데 select에서 오류남
그럴 이유가 있나? gpt랑 놀아봤는데 모르겠음...

추천 비추천

0

고정닉 0

0

댓글 영역

전체 댓글 0
등록순정렬 기준선택
본문 보기

하단 갤러리 리스트 영역

왼쪽 컨텐츠 영역

갤러리 리스트 영역

갤러리 리스트
번호 제목 글쓴이 작성일 조회 추천
설문 사회생활 대처와 처세술이 '만렙'일 것 같은 스타는? 운영자 25/03/31 - -
이슈 [디시人터뷰] LPBA의 차세대 스타, 당구선수 정수빈 운영자 25/04/02 - -
공지 프로그래밍 갤러리 이용 안내 [88] 운영자 20.09.28 42912 64
2838984 박근혜 때는 밑애서부터 올라온 탄핵이었는데 프갤러(211.210) 15:02 6 0
2838983 화교분탕들이 아직도 끌올하는 아육대 움짤 날조 1 ㅇㅇ(110.70) 15:02 10 0
2838982 나님 낼 뛰뛰 해야징☀+ ♥냥덩소프트♥갤로그로 이동합니다. 14:59 6 0
2838981 나님 시작합니다 프갤러(118.216) 14:58 9 0
2838980 공부한다고 감정들을 다 죽여버렸더니 삶이 공허함 ㅇㅇ(223.38) 14:50 7 0
2838979 ❤✨☀⭐나님 시작합니당⭐☀✨❤ ♥냥덩소프트♥갤로그로 이동합니다. 14:41 7 0
2838978 Tomas Skyldeberg - Everything Shines 발명도둑잡기갤로그로 이동합니다. 14:27 8 0
2838977 자기가 쓰고싶음 쓰는거지 광고하는거자나 ㅇㅇ(211.234) 14:08 18 0
2838976 러스트 연봉 평균은 스택 오버플로우에서도 고연봉으로 나오잖음 [4] ㅆㅇㅆ찡갤로그로 이동합니다. 14:06 45 0
2838975 러스트 개발자가 말해주는 러스트 언어의 진실 [1] oo(14.36) 13:58 42 0
2838974 자아를 쪼개도 지문처럼 남는 것들은 못 쪼갠다.. RyuDOG갤로그로 이동합니다. 13:48 22 0
2838973 나트륨찡은 자존감이 너무 낮아 [5] RyuDOG갤로그로 이동합니다. 13:45 45 0
2838971 러스트 빠돌이들은 사형이 답입니다. [1] *루비*갤로그로 이동합니다. 13:41 26 0
2838970 러스트 빠돌이 깃갤에서 쫓겨나 프갤에서 활동 *루비*갤로그로 이동합니다. 13:40 17 0
2838969 211.234 러빠에요. 오래된 악플러죠 ㅎㅎ [1] *루비*갤로그로 이동합니다. 13:39 21 0
2838968 러스트 unsafe 가 제일 이상했다... *루비*갤로그로 이동합니다. 13:37 15 0
2838967 이거 디자인 옙븐거같음 ㅇㅅㅇ [3] 강유현갤로그로 이동합니다. 13:36 28 0
2838966 올해 원종 클론 출시하나요? [1] ㅇㅇ(211.234) 13:35 20 0
2838965 Ada 들고 나왔더니.. Rust 빠들 삐졌나보네 ㅎㅎ *루비*갤로그로 이동합니다. 13:34 15 0
2838964 나님 프갤 슈퍼스타⭐+ ♥냥덩소프트♥갤로그로 이동합니다. 13:29 33 0
2838960 류류의 숙청 대상 리스트에서 빠져서 다행 딱님갤로그로 이동합니다. 13:23 21 0
2838954 나는 과잉 자아라서 나 말고 아무도 지지안한다 [4] ㅆㅇㅆ찡갤로그로 이동합니다. 13:17 33 0
2838953 나님 질문 받아보실게얌 딱님갤로그로 이동합니다. 13:15 11 0
2838951 포인터 하나면 다 만든대요 [1] ㅇㅇ(211.234) 13:11 24 0
2838949 Ada의 메모리 안전성은 Rust와 비교하면 어떻습니까? [1] *루비*갤로그로 이동합니다. 13:08 21 0
2838948 나를 죽여야하는 건 맞다 [3] ㅆㅇㅆ찡갤로그로 이동합니다. 13:07 34 0
2838945 원래 이렇게 가는게 맞긴함 [4] RyuDOG갤로그로 이동합니다. 13:04 38 0
2838943 다국어 지원 쪽 작업하는데 은근 일본어랑 중국어 같은 듯 다르네 ㅇㅅㅇ [11] 강유현갤로그로 이동합니다. 13:00 39 0
2838942 루비가 어느새 ada 언어의 매력에 빠졌구나 [1] 딱님갤로그로 이동합니다. 12:59 17 0
2838941 결국 예상했던 시나리오대로 가는구만 [5] RyuDOG갤로그로 이동합니다. 12:59 43 0
2838939 각종 언어를 Rust 보다 안전한 Ada 로 포팅해드려요~~ [1] *루비*갤로그로 이동합니다. 12:55 20 0
2838938 혹시 30억정도 벌고나면 억울하지 않을 수 있냐?? [4] ㅇㅇ(223.38) 12:51 40 0
2838937 스텔라장-워크맨 (WALKMAN) 발명도둑잡기갤로그로 이동합니다. 12:50 11 0
2838936 이번주까지만 출근하고 이번 현장은 안 나온다혔다 [2] ㅆㅇㅆ찡갤로그로 이동합니다. 12:46 28 0
2838934 요시! 일베충 토바츠다! [2] 프갤러(59.9) 12:37 31 0
2838933 이제 대통령 아니니까 미스터 윤이라고 불러도 되겠어요. [10] 40대프린이(118.235) 12:34 54 0
2838932 유다빈밴드-계속 웃을 순 없어! [1] 발명도둑잡기갤로그로 이동합니다. 12:32 14 0
2838930 정치사건 이후에 테마주 빠져서 코스피 박살났네 ㅆㅇㅆ찡갤로그로 이동합니다. 12:28 29 0
2838929 ❤✨☀⭐나님 시작합니당⭐☀✨❤ ♥냥덩소프트♥갤로그로 이동합니다. 12:28 17 0
2838928 하 씨발 그 다음 대통령이라는 게 [3] 아스카영원히사랑해갤로그로 이동합니다. 12:27 54 0
2838924 헌재 선고 결과 8:0 인용 확실시 [1] 발명도둑잡기갤로그로 이동합니다. 12:21 24 0
2838922 누가 나님 냥덩이 만진거야? ♥냥덩소프트♥갤로그로 이동합니다. 12:18 14 0
2838920 윤 파면되었으니 연좌제로 [1] ㅇㅇ(121.186) 12:07 35 0
2838919 오늘은 마시고 죽자 ㅇㅅㅇ [20] 강유현갤로그로 이동합니다. 12:05 99 0
2838918 이제 중국어로 코딩할 시간이야 프갤러(220.86) 12:03 14 0
2838916 이번 선거도 무효표간다 [3] ㅆㅇㅆ찡갤로그로 이동합니다. 12:00 45 0
2838914 공휴일 하루 더생겼다 [1] ㅇㅇ(118.235) 11:55 22 0
2838913 러스트 배우면 던 많이 벌어여? [4] 프갤러(211.234) 11:52 25 0
2838912 안녕하세요 저는 진보입니다 [1] ㅇㅇ(49.165) 11:51 37 0
뉴스 이승환, 尹 파면에 “나도 나라도 산 날” 환호 디시트렌드 14:00
갤러리 내부 검색
제목+내용게시물 정렬 옵션

오른쪽 컨텐츠 영역

실시간 베스트

1/8

뉴스

디시미디어

디시이슈

1/2