Obtain the account and password of the data source in datasource through reflection

Source: Internet
Author: User

 Public  Connection getdbconnection () {connection Conn = Null  ;  //  Get connection Datasource DS = Null  ;  Try  {Context CTX = New Initialcontext (); DS = (Datasource) CTX. Lookup ("Java: COMP/ENV/pcmsdb" );  //  DS = (datasource) CTX. Lookup ("pcmsjn ");  //  WebLogic environment configuration data source Class C = DS. getclass ();  //  Object invoketest = C. newinstance (); Method GetPassword = C. getmethod ("GetPassword ", Null  ); Method GetUserName = C. getmethod ("GetUserName ",Null  ); Object pwd = GetPassword. Invoke (DS, Null  ); Object Username = GetUserName. Invoke (DS, Null  );  //  Test output System. Out. println ("getdbconnection PWD:" + PWD. tostring (); system. Out. println ( "Getdbconnection Username:" + Username. tostring ());}  Catch (Exception e) {system. Out. println ( "Getdbconnection exception" + E. getmessage (); E. printstacktrace ();}  Try  {Conn = DS. getconnection ();}  Catch  (Sqlexception e) {system. Out. println ( "Getdbconnection sqlexception" + E. getmessage ());}  Return  Conn ;} 

 

obtain the account and password of the data source in datasource through reflection

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.