ApplicationContext. xml files are stored in different locations, resulting in different paths in jUnit testing. applicationcontext

Source: Internet
Author: User

ApplicationContext. xml files are stored in different locations, resulting in different paths in jUnit testing. applicationcontext

If the applicationContext. xml file is placed under src, the path written during jUint testing should be as follows:

 

 

@ Testpublic void testFindByPage () {ApplicationContext ctx = new ClassPathXmlApplicationContext ("applicationContext. xml"); AccountDao dao = ctx. getBean (AccountDao. class );

But if the applicationContext. xml file is placed under the WEB-INF, the path written during the jUnit test will be different.

If this is not the case, the applicationContext. xml file cannot be found during the test.

Private String conf = "WebRoot/WEB-INF/applicationContext. xml "; @ Testpublic void savetest () {ApplicationContext ac = new FileSystemXmlApplicationContext (conf); AllDao ad = ac. getBean (AllDao. class); User u = new User (); u. setUsername ("admin001"); u. setPassword ("123456"); ad. register (u );}

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.