An internal error occurred during: "Launching xxx on WebLogic10.x"


An internal error occurred during: "Launching xxx on WebLogic10.x". java.lang.NullPointerException
 
==============================
芋耀2018年3月15日
http://fanshuyao.iteye.com/
 
一、問題の説明:
 
Myeclipseは、プロジェクトの導入Webサーバをエラーとして報告します.
An internal error occurred during: "Launching xxx on WebLogic10.x". java.lang.NullPointerException
An internal error occurred during:  
 
二、解決方案:
 
【項目】を選択し、右クリックして【Properties】【MyEclipse】【Web】を選択し、右の【Context Root】タブのWeb-root folderが正しく設定されているか、正しく設定されていないか、ディレクトリが存在しない場合にエラーメッセージが表示されます.
Web-root folder should contain WEB-INF sub directory
次の図に示します.
An internal error occurred during:  
Web-root folderを独自の配置ディレクトリに設定すればいいのですが、一般的にWebRootまたはWebContentですが、一部の項目が特殊で、このようなディレクトリを使用していない場合は、手動で変更する必要があります.このディレクトリの下のサブディレクトリにはWEB-INFサブディレクトリが必要です.
 
ディレクトリが特殊な場合は、次のようにDeployment Assemblyの構成を変更する必要があります.
【アイテム】を選択し、右クリックして【Properties】【MyEclipse】【Deployment Assembly】を選択します.
Use deplloyment assembly mapping for deploymentをチェック
その後、独自のWebファイル配置ディレクトリを設定できます.
 
また、プロジェクトが他のプロジェクトをコピーして直接インポートされた場合、そのプロジェクトの下の.projectファイルのnameラベルのプロジェクト名を正しく変更する必要がある可能性があります.
 
.projectファイルはそのプロジェクトのディレクトリの下にあり、各プロジェクトにこのファイルがあります.
An internal error occurred during:  
.projectファイルを開き、nameラベルのプロジェクト名が正しいかどうかを確認します.正しくありません.修正してください.
 


    xxx

 
.projectファイルの完全な内容:


	xxx
	
	
	
	
		
			org.eclipse.jdt.core.javabuilder
			
			
		
		
			org.eclipse.wst.common.project.facet.core.builder
			
			
		
		
			org.eclipse.wst.validation.validationbuilder
			
			
		
		
			org.springframework.ide.eclipse.core.springbuilder
			
			
		
		
			org.springframework.ide.eclipse.boot.validation.springbootbuilder
			
			
		
		
			org.eclipse.m2e.core.maven2Builder
			
			
		
	
	
		org.springframework.ide.eclipse.core.springnature
		org.eclipse.jem.workbench.JavaEMFNature
		org.eclipse.wst.common.modulecore.ModuleCoreNature
		org.eclipse.jdt.core.javanature
		org.eclipse.m2e.core.maven2Nature
		org.eclipse.wst.common.project.facet.core.nature
		org.eclipse.wst.jsdt.core.jsNature
	


 
 -----------------------------------------------仕切り線-----------------------------------------------------------------
ネット上に流れている類似の問題の他の方法は、本人が直面した問題の解決方法ではありません.
1、まずMyEclipseを終了します.
2、そしてMyEclipseワークスペースの下の
“/.metadata/.plugins/org.eclipse.core.runtime/.settings/com.genuitec.eclipse.ast.deploy.core.prefs”
この書類.このファイルには、導入プロジェクトの情報がいくつか格納されています.この配置したプロジェクトの情報を削除しても間違いはありません.
3、MyEclipseを再起動すれば解決できる.
 
 
==============================
芋耀2018年3月15日
http://fanshuyao.iteye.com/