Linux 시스템 Weblogic 92 의 자바 빈 가 져 오기 프로젝트 경로
마지막 으로 어 려 운 문제 에 부 딪 혔 습 니 다. 자바 빈 에서 프로젝트 의 컨 텍스트 경 로 를 얻 고 우여곡절 을 겪 으 며 몇 가지 방식 을 시도 해 보 았 습 니 다.
System.getProperty("user.dir"):/usr/local/bea/weblogic/user_projects/domains/base_domain
new File(".").getAbsolutePath():/usr/local/bea/weblogic/user_projects/domains/base_domain/.
new File("/"):/
this.getClass().getClassLoader().getResource("").getPath():/usr/local/bea/weblogic/user_projects/domains/base_domain/autodeploy/UpgradePro/WEB-INF/classes/
Thread.currentThread().getContextClassLoader().getResource(""):file:/usr/local/bea/weblogic/user_projects/domains/base_domain/autodeploy/UpgradePro/WEB-INF/classes/
FileHelperImpl.class.getClassLoader().getResource(""):file:/usr/local/bea/weblogic/user_projects/domains/base_domain/autodeploy/UpgradePro/WEB-INF/classes/
ClassLoader.getSystemResource(""):file:/usr/local/bea/weblogic/user_projects/domains/base_domain/
FileHelperImpl.class.getResource(""):file:/usr/local/bea/weblogic/user_projects/domains/base_domain/autodeploy/UpgradePro/WEB-INF/classes/com/mls/upgrade/biz/
결 과 는 원 하 는 결 과 를 직접 얻 을 수 없고 수 동 으로 문자열 을 연결 해 야 합 니 다. Servlet 감청 context 를 통 해 만 얻 을 수 없습니다.
public final class ContextHelper implements ServletContextListener {
public static ServletContextEvent context = null;
/**
* ServletContext
*/
public void contextInitialized(ServletContextEvent context) {
Factories.context = context;
}
public void contextDestroyed(ServletContextEvent arg0) {
}
}
컨 텍스트 경 로 를 가 져 올 주소 에서 String contextPath = Factories. context. getServletContext (). getRealPath (") 를 직접 참조 합 니 다.목적 을 달성 할 수 있다.
결과 문제 가 또 왔 습 니 다. 프로젝트 배치 시 경 고 를 드 립 니 다.
[Application: '/rdsh/weblogic/bea/user_projects/domains/ s_srv/aaaa', Module: 'UpgradePro']: Deployment descriptor "w eb.xml" is malformed. Check against the DTD: org.xml.sax.SAX ParseException: cvc-elt.1: Cannot find the declaration of el ement 'web-app'. (line 5, column 52).>
원래 웹. xml 에 설 정 된
WebLogic 8.1 은 2.3 까지 만 지원 하기 때문에
Listener 를 Servlet 설정 전 으로 앞 당기 면 됩 니 다. (그렇지 않 으 면 오류 가 발생 할 수 있 습 니 다.)
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Fortinet FortiWeb Web Application Firewall Policy BypassFrom: Geffrey Velasquez Date: Wed, 2 May 2012 20:33:23 -0500...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.