Tag Archives: idea

The process of solving Intellij IDEA can’t load jvm DLL error at a time

The article directories
Resolution of a Intellij IDEA can’t load JVM DLL error procedure

Resolution of a Intellij IDEA can’t load JVM DLL error procedure
After installing Intellij IDEA 2019.2 Community on a new Windows 10 computer today, an error occurred during Intellij startup: “Failedo to Load JVM DLL.”
The detailed error information is as follows:

Failed to load JVM DLL
… \ JBR \bin\server\jvm.dll
If you already have a 64-bit JDK installed, define a JAVA_HOME variable…

At first, I thought there was no JDK installed, so I downloaded the zip package of Redhat OpenJDK8, unzipped it, set the JAVA_HOME environment variable, and added the %JAVA_HOME%\bin to the PATH environment variable. Environment variables were checked to be set correctly in CMD and Git Bash, but once Intellij was started, the same error remained.
Then install the ExE package for Redhat OpenJDK8 and repeat the above steps with the same error.
Then install the EXE package of Oracle JDK8 and repeat the above steps with the same error.
Then it occurred to me that Intellij should have come with a JVM to start Intellij itself, and that a DLL file \ JBR \bin\server\jvm.dll would also exist to check the error messages.
Then try to download and install Microsoft Visual C++ 2010 Redistributable Package (x64) following one of the answers on Stackoverflow with the same error.
Intellij shortcuts were suspected to be pointing incorrectly, but were checked, and the same error occurred when running idea64.exe manually.
Then I saw another response on Stackoverflow that said Run as AdminStrator on Windows 10 would fix the problem, tried it and it worked. Then check the shortcut property to Run as AdminStrator so that you don’t have to right-click Run as AdminStrator every time.
Then it occurred to me that My computer account was supposed to have Administrator rights, but the configuration was wrong, so I logged in to a different one, installed and turned on Intellij, and everything went well.
Reference document:
https://stackoverflow.com/questions/40204189/error-launching-idea-failed-to-load-jvm-dll-c-program-files-java-jdk1-8-0-112https://stackoverflow.com/questions/48666118/error-launching-pycharm-failed-to -load-jvm-dll

Failed to read artifact descriptor for * maven

in the process of my code writing, this Maven error suddenly and inexplicably appeared,

Failed to read artifact descriptor for org.apache.hadoop:hadoop-common:jar:2.4.0

query the cause of the problem, the original version is not matched, just the problem.

so here’s the solution:

1.
After opening the project, there is a Maven projects on the right side of Intellij, click on it, there is a Lifecycle, click on it again, you can see clean , validate, compile, .... Right-click clean, select Run 'project[clean]', where the project is the actual name of our project.
2.
In the same place (Lifecycle) find the install, select Run 'project[install]', where the project is also the name of our specific project, this process is longer, if you have encountered which jar package can not be downloaded, you can manually put it into the local m2 directory.
3.
Finally, find the Maven projects and click on "Reimport All Maven Projects", this time the error "Failed to .... " Disappears, required dependencies start downloading. 

Hot Swap failed:add method not implemented

This new feature encapsulates the ability to substitute modified code in a running application through the debugger APIs.
– ‘HotSwapping’ using JVM:http://www.jug.mk/blogs/ipenov/entry/hotswapping_using_jvm

Currently, HotSwap only supports the modification of method body, and does not support the modification of class and method signature (such as modifying class name, method name, method parameter, adding or deleting a method, adding or deleting a class file, etc.). HotSwap cannot be deployed to the service hot. ) There is a reason to consider these limitations. Replacing a class definition requires an association between the new class and the old class, where the association is the full name (and perhaps other information) of the class, and the class name has been changed so that you don’t know which class to replace. As for the modification of the method signature, it should allow for the run-time method invocation, replacing the existing method invocation with the method signature.

many people on the Internet misunderstand the concept of hot deployment and hot loading, so the behavior of disorderly configuration, here is a hint.
hot deployment: the container state is in operation to deploy or redeploy the entire project. In this case the entire memory is usually emptied and reloaded. Simply put, Tomcat or some other Web server will help us reload the project.
hot loading: when the container state is run, it reloads the changed compiled class. In this case, memory will not be emptied,sessin will not be lost, but it is easy to cause memory overflow, or no method can be found. Because memory cannot be converted into a pair, there are exceptions to changing the structure and model of a class, and there is no problem with changing variables and methods that already exist. In medium mode, it is best used during debugging to avoid the whole project loading.
debug mode supports hot loading. Very easy to use.
– IDEA TOMCAT WEB development SSH modify classes don’t restart the deployment of hot load IDEA8: http://3000pzj.javaeye.com/blog/503222

deployment is a common occurrence during project development, especially during debug. But if you have to redeploy the entire project every time you fix a bug so you can test fix or continue to debug other bugs, that’s a nightmare for developers. But no one wants a nightmare, and thanks to the JVM’s hotSwap and Intellij Idea’s support for Debug and hotSwap, the dream has stayed true (a bit of an overplay). Today’s article describes the most convenient and efficient debug effects achieved by setting up Intellij Idea for hot deployment. I want to get some background and concepts before going into the specifics of the setup.
HotSwap: “HotSwap” is a feature in JPDA (Java Platform Debugger Architecture), and JPDA enhancement is a new feature from Java 2 SDK1.4. HotSwap allows you to replace class definitions in the JVM with new class definitions, which allows developers to replace the modified class with an older class in the JVM without having to restart the server during debug.

Solution to failed to create JVM: error code – 1 JVM path

, I modified idea64. Exe. Vmoptions file of idea, but when I restarted it prompted a problem similar to the one above, and deleted the parameters also prompted this. Baidu searched the solution, reinstalled idea, and reinstalled JDK, all of which failed to solve the problem

this file does not have to exist, idea can still run without this file, but when you need to customize parameters, this file will be created for the first time.

again this problem might as well delete C:\Users\ name \.IntelliJIdea2018.1\config vmoption file, simple and crude

Idea start error: java.lang.IllegalStateException : failed to create a child event loop

problems encountered

the computer was automatically updated yesterday, today I can’t launch the project alive, I see the hint of idea is:

idea log as follows

check the startup log of idea as prompted:


2018-11-20 17:35:42,010 [  46737]   INFO - plication.impl.ApplicationImpl - 118 application components initialized in 29017ms 
2018-11-20 17:35:42,084 [  46811]   INFO - .intellij.idea.IdeaApplication - App initialization took 71492 ms 
2018-11-20 17:35:43,180 [  47907]   INFO - m.intellij.ui.mac.touchbar.NST - OS doesn't support touchbar, skip nst loading 
2018-11-20 17:35:48,162 [  52889]   INFO - rains.ide.BuiltInServerManager - failed to create a child event loop 
java.lang.IllegalStateException: failed to create a child event loop
	at io.netty.util.concurrent.MultithreadEventExecutorGroup.<init>(MultithreadEventExecutorGroup.java:88)
	at io.netty.util.concurrent.MultithreadEventExecutorGroup.<init>(MultithreadEventExecutorGroup.java:58)
	at io.netty.util.concurrent.MultithreadEventExecutorGroup.<init>(MultithreadEventExecutorGroup.java:47)
	at io.netty.channel.MultithreadEventLoopGroup.<init>(MultithreadEventLoopGroup.java:59)
	at io.netty.channel.nio.NioEventLoopGroup.<init>(NioEventLoopGroup.java:77)
	at io.netty.channel.nio.NioEventLoopGroup.<init>(NioEventLoopGroup.java:72)
	at io.netty.channel.nio.NioEventLoopGroup.<init>(NioEventLoopGroup.java:59)
	at com.intellij.util.io.NettyKt.MultiThreadEventLoopGroup(netty.kt:317)
	at org.jetbrains.io.BuiltInServer.start(BuiltInServer.java:73)
	at org.jetbrains.ide.BuiltInServerManagerImpl.lambda$startServerInPooledThread$0(BuiltInServerManagerImpl.java:101)
	at com.intellij.openapi.application.impl.ApplicationImpl$1.run(ApplicationImpl.java:314)
	at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511)
	at java.util.concurrent.FutureTask.run(FutureTask.java:266)
	at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
	at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
	at java.lang.Thread.run(Thread.java:748)
Caused by: io.netty.channel.ChannelException: failed to open a new selector
	at io.netty.channel.nio.NioEventLoop.openSelector(NioEventLoop.java:177)
	at io.netty.channel.nio.NioEventLoop.<init>(NioEventLoop.java:151)
	at io.netty.channel.nio.NioEventLoopGroup.newChild(NioEventLoopGroup.java:127)
	at io.netty.channel.nio.NioEventLoopGroup.newChild(NioEventLoopGroup.java:36)
	at io.netty.util.concurrent.MultithreadEventExecutorGroup.<init>(MultithreadEventExecutorGroup.java:84)
	... 15 more
Caused by: java.io.IOException: Unable to establish loopback connection
	at sun.nio.ch.PipeImpl$Initializer.run(PipeImpl.java:94)
	at sun.nio.ch.PipeImpl$Initializer.run(PipeImpl.java:61)
	at java.security.AccessController.doPrivileged(Native Method)
	at sun.nio.ch.PipeImpl.<init>(PipeImpl.java:171)
	at sun.nio.ch.SelectorProviderImpl.openPipe(SelectorProviderImpl.java:50)
	at java.nio.channels.Pipe.open(Pipe.java:155)
	at sun.nio.ch.WindowsSelectorImpl.<init>(WindowsSelectorImpl.java:127)
	at sun.nio.ch.WindowsSelectorProvider.openSelector(WindowsSelectorProvider.java:44)
	at io.netty.channel.nio.NioEventLoop.openSelector(NioEventLoop.java:175)
	... 19 more
Caused by: java.net.ConnectException: Connection timed out: connect
	at sun.nio.ch.Net.$$YJP$$connect0(Native Method)
	at sun.nio.ch.Net.connect0(Net.java)
	at sun.nio.ch.Net.connect(Net.java:454)
	at sun.nio.ch.Net.connect(Net.java:446)
	at sun.nio.ch.SocketChannelImpl.connect(SocketChannelImpl.java:648)
	at java.nio.channels.SocketChannel.open(SocketChannel.java:189)
	at sun.nio.ch.PipeImpl$Initializer$LoopbackConnector.run(PipeImpl.java:127)
	at sun.nio.ch.PipeImpl$Initializer.run(PipeImpl.java:76)
	... 27 more
2018-11-20 17:35:48,231 [  52958]   INFO - ij.components.ComponentManager - com.intellij.openapi.components.impl.ServiceManagerImpl initialized in 13 ms 
2018-11-20 17:35:48,270 [  52997]   INFO - ij.components.ComponentManager - com.intellij.openapi.command.impl.UndoManagerImpl initialized in 20 ms 
2018-11-20 17:35:48,371 [  53098]   INFO - ij.components.ComponentManager - com.intellij.ui.EditorNotificationsImpl initialized in 90 ms 
2018-11-20 17:35:48,504 [  53231]   INFO - ij.components.ComponentManager - com.intellij.openapi.vfs.encoding.EncodingProjectManagerImpl initialized in 132 ms 
2018-11-20 17:35:48,753 [  53480]   INFO - ij.components.ComponentManager - com.intellij.openapi.wm.impl.ToolWindowManagerImpl initialized in 236 ms 
2018-11-20 17:35:48,940 [  53667]   INFO - ij.components.ComponentManager - com.intellij.openapi.module.impl.ModuleManagerComponent initialized in 112 ms 
2018-11-20 17:35:49,179 [  53906]   INFO - ij.components.ComponentManager - com.intellij.openapi.fileEditor.impl.PsiAwareFileEditorManagerImpl initialized in 207 ms 
2018-11-20 17:35:49,227 [  53954]   INFO - ij.components.ComponentManager - com.intellij.codeInsight.daemon.impl.DaemonCodeAnalyzerImpl initialized in 11 ms 
2018-11-20 17:35:49,473 [  54200]   INFO - ij.components.ComponentManager - com.intellij.profile.codeInspection.ProjectInspectionProfileManager initialized in 94 ms 
2018-11-20 17:35:50,194 [  54921]   INFO - ij.components.ComponentManager - com.intellij.openapi.vcs.changes.ChangesViewManager initialized in 453 ms 
2018-11-20 17:35:50,369 [  55096]   INFO - il.indexing.FileBasedIndexImpl - Index com.intellij.util.indexing.VfsAwareMapReduceIndex@40d95220 already registered for the name 'FormClassIndex' 
java.lang.IllegalStateException: Index com.intellij.util.indexing.VfsAwareMapReduceIndex@40d95220 already registered for the name 'FormClassIndex'
	at com.intellij.util.indexing.IndexConfiguration.registerIndex(IndexConfiguration.java:81)
	at com.intellij.util.indexing.FileBasedIndexImpl.initIndexStorage(FileBasedIndexImpl.java:400)
	at com.intellij.util.indexing.FileBasedIndexImpl.registerIndexer(FileBasedIndexImpl.java:362)
	at com.intellij.util.indexing.FileBasedIndexImpl.access$5400(FileBasedIndexImpl.java:105)
	at com.intellij.util.indexing.FileBasedIndexImpl$FileIndexDataInitialization.lambda$new$1(FileBasedIndexImpl.java:2369)
	at com.intellij.util.indexing.IndexInfrastructure$DataInitialization.executeNestedInitializationTask(IndexInfrastructure.java:216)
	at com.intellij.util.indexing.IndexInfrastructure$DataInitialization.runParallelNestedInitializationTasks(IndexInfrastructure.java:204)
	at com.intellij.util.indexing.IndexInfrastructure$DataInitialization.call(IndexInfrastructure.java:166)
	at java.util.concurrent.FutureTask.run(FutureTask.java:266)
	at com.intellij.util.concurrency.BoundedTaskExecutor.doRun(BoundedTaskExecutor.java:226)
	at com.intellij.util.concurrency.BoundedTaskExecutor.access$100(BoundedTaskExecutor.java:26)
	at com.intellij.util.concurrency.BoundedTaskExecutor$2$1.run(BoundedTaskExecutor.java:199)
	at com.intellij.util.ConcurrencyUtil.runUnderThreadName(ConcurrencyUtil.java:229)
	at com.intellij.util.concurrency.BoundedTaskExecutor$2.run(BoundedTaskExecutor.java:193)
	at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
	at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
	at java.lang.Thread.run(Thread.java:748)
2018-11-20 17:35:50,394 [  55121]   INFO - il.indexing.FileBasedIndexImpl - Index com.intellij.util.indexing.VfsAwareMapReduceIndex@24e03aa5 already registered for the name 'FormClassIndex' 
java.lang.IllegalStateException: Index com.intellij.util.indexing.VfsAwareMapReduceIndex@24e03aa5 already registered for the name 'FormClassIndex'
	at com.intellij.util.indexing.IndexConfiguration.registerIndex(IndexConfiguration.java:81)
	at com.intellij.util.indexing.FileBasedIndexImpl.initIndexStorage(FileBasedIndexImpl.java:400)
	at com.intellij.util.indexing.FileBasedIndexImpl.registerIndexer(FileBasedIndexImpl.java:362)
	at com.intellij.util.indexing.FileBasedIndexImpl.access$5400(FileBasedIndexImpl.java:105)
	at com.intellij.util.indexing.FileBasedIndexImpl$FileIndexDataInitialization.lambda$new$1(FileBasedIndexImpl.java:2369)
	at com.intellij.util.indexing.IndexInfrastructure$DataInitialization.executeNestedInitializationTask(IndexInfrastructure.java:216)
	at com.intellij.util.indexing.IndexInfrastructure$DataInitialization.runParallelNestedInitializationTasks(IndexInfrastructure.java:204)
	at com.intellij.util.indexing.IndexInfrastructure$DataInitialization.call(IndexInfrastructure.java:166)
	at java.util.concurrent.FutureTask.run(FutureTask.java:266)
	at com.intellij.util.concurrency.BoundedTaskExecutor.doRun(BoundedTaskExecutor.java:226)
	at com.intellij.util.concurrency.BoundedTaskExecutor.access$100(BoundedTaskExecutor.java:26)
	at com.intellij.util.concurrency.BoundedTaskExecutor$2$1.run(BoundedTaskExecutor.java:199)
	at com.intellij.util.ConcurrencyUtil.runUnderThreadName(ConcurrencyUtil.java:229)
	at com.intellij.util.concurrency.BoundedTaskExecutor$2.run(BoundedTaskExecutor.java:193)
	at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
	at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
	at java.lang.Thread.run(Thread.java:748)
2018-11-20 17:35:50,611 [  55338]   INFO - ij.components.ComponentManager - com.intellij.openapi.vcs.changes.ChangeListManagerImpl initialized in 936 ms 
2018-11-20 17:35:50,613 [  55340]   INFO - ij.components.ComponentManager - com.intellij.openapi.vcs.changes.VcsDirtyScopeManagerImpl initialized in 937 ms 
2018-11-20 17:35:50,634 [  55361]   INFO - ij.components.ComponentManager - com.intellij.codeInsight.daemon.impl.DaemonListeners initialized in 1402 ms 
2018-11-20 17:35:50,817 [  55544]   INFO - ij.components.ComponentManager - com.intellij.codeInsight.daemon.impl.GeneralHighlightingPassFactory initialized in 183 ms 
2018-11-20 17:35:50,944 [  55671]   INFO - ij.components.ComponentManager - com.intellij.codeInsight.navigation.CtrlMouseHandler initialized in 120 ms 
2018-11-20 17:35:51,013 [  55740]   INFO - ij.components.ComponentManager - com.intellij.openapi.roots.impl.PushedFilePropertiesUpdaterImpl initialized in 68 ms 
2018-11-20 17:35:51,026 [  55753]   INFO - ij.components.ComponentManager - com.intellij.facet.impl.pointers.FacetPointersManagerImpl initialized in 12 ms 
2018-11-20 17:35:51,047 [  55774]   INFO - ij.components.ComponentManager - com.intellij.facet.impl.ui.FacetDependentToolWindowManager initialized in 21 ms 
2018-11-20 17:35:51,369 [  56096]   INFO - ij.components.ComponentManager - com.intellij.ide.favoritesTreeView.FavoritesManager initialized in 321 ms 
2018-11-20 17:35:51,382 [  56109]   INFO - ij.components.ComponentManager - com.intellij.openapi.editor.impl.DocumentMarkupModelManager initialized in 12 ms 
2018-11-20 17:35:51,959 [  56686]   INFO - ij.components.ComponentManager - com.intellij.packaging.impl.artifacts.ArtifactManagerImpl initialized in 574 ms 
2018-11-20 17:35:51,975 [  56702]   INFO - ij.components.ComponentManager - com.intellij.compiler.ExternalCompilerConfigurationStorage initialized in 15 ms 
2018-11-20 17:35:51,976 [  56703]   INFO - CompilerWorkspaceConfiguration - Available processors: 4 
2018-11-20 17:35:52,002 [  56729]   INFO - ij.components.ComponentManager - com.intellij.openapi.vcs.annotate.AnnotationsPreloader initialized in 20 ms 
2018-11-20 17:35:52,010 [  56737]   INFO - pl.projectlevelman.NewMappings - VCS Root: [] - [<Project>] 
2018-11-20 17:35:52,011 [  56738]   INFO - pl.projectlevelman.NewMappings - VCS Root: [Git] - [<Project>] 
2018-11-20 17:35:52,012 [  56739]   INFO - pl.projectlevelman.NewMappings - VCS Root: [Git] - [D:/IdeaProjects/api-pay] 
2018-11-20 17:35:52,012 [  56739]   INFO - pl.projectlevelman.NewMappings - VCS Root: [Git] - [D:/IdeaProjects/p2p-h5] 
2018-11-20 17:35:52,012 [  56739]   INFO - pl.projectlevelman.NewMappings - VCS Root: [Git] - [D:/IdeaProjects/p2p_back] 
2018-11-20 17:35:52,012 [  56739]   INFO - pl.projectlevelman.NewMappings - VCS Root: [Git] - [D:/IdeaProjects/rest-p2p-bank] 
2018-11-20 17:35:52,096 [  56823]   INFO - ij.components.ComponentManager - com.intellij.openapi.vcs.impl.LineStatusTrackerManager initialized in 83 ms 
2018-11-20 17:35:52,235 [  56962]   INFO - ij.components.ComponentManager - com.intellij.openapi.vcs.changes.shelf.ShelvedChangesViewManager initialized in 137 ms 
2018-11-20 17:35:52,316 [  57043]   INFO - ij.components.ComponentManager - com.intellij.openapi.vcs.changes.committed.CommittedChangesCache initialized in 81 ms 
2018-11-20 17:35:52,353 [  57080]   INFO - ij.components.ComponentManager - com.intellij.framework.detection.impl.FrameworkDetectionManager initialized in 34 ms 
2018-11-20 17:35:52,927 [  57654]   INFO - ij.components.ComponentManager - com.intellij.xdebugger.impl.XDebuggerManagerImpl initialized in 573 ms 
2018-11-20 17:35:52,953 [  57680]   INFO - ij.components.ComponentManager - com.intellij.remoteServer.impl.runtime.ui.DefaultServersToolWindowManager initialized in 26 ms 
2018-11-20 17:35:53,051 [  57778]   INFO - ij.components.ComponentManager - com.intellij.javaee.PsiExternalResourceNotifier initialized in 89 ms 
2018-11-20 17:35:53,076 [  57803]   INFO - ij.components.ComponentManager - com.intellij.debugger.impl.DebuggerManagerImpl initialized in 24 ms 
2018-11-20 17:35:53,084 [  57811]   INFO - ij.components.ComponentManager - com.intellij.debugger.impl.HotSwapManager initialized in 32 ms 
2018-11-20 17:35:53,152 [  57879]   INFO - ij.components.ComponentManager - com.intellij.execution.testDiscovery.TestDiscoveryIndex initialized in 54 ms 
2018-11-20 17:35:53,336 [  58063]   INFO - ij.components.ComponentManager - com.intellij.execution.scratch.JavaScratchCompilationSupport initialized in 183 ms 
2018-11-20 17:35:53,358 [  58085]   INFO - ij.components.ComponentManager - com.intellij.compiler.backwardRefs.CompilerReferenceServiceImpl initialized in 22 ms 
2018-11-20 17:35:53,693 [  58420]   INFO - ij.components.ComponentManager - com.intellij.remoteServer.util.importProject.CloudGitRemoteDetector initialized in 334 ms 
2018-11-20 17:35:53,770 [  58497]   INFO - ij.components.ComponentManager - org.jetbrains.idea.perforce.application.PerforceNumberNameSynchronizer initialized in 68 ms 
2018-11-20 17:35:53,770 [  58497]   INFO - ctic.StatisticProjectComponent - Plugin 'StatisticProjectComponent' has been activated for project=P2P 
2018-11-20 17:35:53,788 [  58515]   INFO - ij.components.ComponentManager - com.alayouni.ansihighlight.ANSIHighlighterComponent initialized in 16 ms 
2018-11-20 17:35:54,105 [  58832]   INFO - ij.components.ComponentManager - com.intellij.coverage.CoveragePluginDataManagerImpl initialized in 294 ms 
2018-11-20 17:35:54,425 [  59152]   INFO - ij.components.ComponentManager - com.intellij.tasks.impl.TaskManagerImpl initialized in 319 ms 
2018-11-20 17:35:54,835 [  59562]   INFO - pl$FileIndexDataInitialization - Initialization done:23519 
2018-11-20 17:35:55,341 [  60068]   INFO - ij.components.ComponentManager - com.intellij.uiDesigner.propertyInspector.DesignerToolWindowManager initialized in 916 ms 
2018-11-20 17:35:55,505 [  60232]   INFO - ij.components.ComponentManager - com.intellij.ide.palette.impl.PaletteToolWindowManager initialized in 162 ms 
2018-11-20 17:35:55,564 [  60291]   INFO - ij.components.ComponentManager - net.vektah.codeglance.CodeGlancePlugin initialized in 55 ms 
2018-11-20 17:35:55,700 [  60427]   INFO - ij.components.ComponentManager - com.intellij.lang.javascript.index.JavaScriptIndex initialized in 134 ms 
2018-11-20 17:35:56,695 [  61422]   INFO - ij.components.ComponentManager - com.intellij.lang.javascript.linter.JSLinterEditorPanelCreator initialized in 994 ms 
2018-11-20 17:35:56,809 [  61536]   INFO - ij.components.ComponentManager - com.intellij.lang.javascript.frameworks.webpack.Webpack4PluginProviderRegistrar initialized in 114 ms 
2018-11-20 17:35:57,164 [  61891]   INFO - ij.components.ComponentManager - com.intellij.jpa.JpaProjectComponent initialized in 352 ms 
2018-11-20 17:35:57,254 [  61981]   INFO - ij.components.ComponentManager - com.intellij.j2ee.web.WebProjectComponent initialized in 88 ms 
2018-11-20 17:35:57,304 [  62031]   INFO - ij.components.ComponentManager - com.intellij.javaee.openshift.cloud.view.OS3ToolWindowFactory initialized in 50 ms 
2018-11-20 17:35:57,374 [  62101]   INFO - ij.components.ComponentManager - com.intellij.psi.impl.source.jsp.JspContextManagerImpl initialized in 66 ms 
2018-11-20 17:35:57,405 [  62132]   INFO - ij.components.ComponentManager - org.jetbrains.idea.maven.navigator.MavenProjectsNavigator initialized in 24 ms 
2018-11-20 17:35:57,470 [  62197]   INFO - ij.components.ComponentManager - org.osmorc.OsmorcProjectComponent initialized in 63 ms 
2018-11-20 17:35:57,525 [  62252]   INFO - ij.components.ComponentManager - com.intellij.lang.javascript.flex.build.FlexCompilerHandler initialized in 55 ms 
2018-11-20 17:35:57,682 [  62409]   INFO - ij.components.ComponentManager - com.intellij.dmserver.editor.AvailableBundlesProvider initialized in 155 ms 
2018-11-20 17:35:58,848 [  63575]   INFO - exImpl$StubIndexInitialization - Initialization done:4013 
2018-11-20 17:35:59,192 [  63919]   INFO - .openapi.application.Preloader - com.intellij.openapi.actionSystem.impl.ActionPreloader took 28906 ms 
2018-11-20 17:36:00,806 [  65533]   INFO - inspection.RuleInspectionUtils - start to find rule sets from jar jar:file:/C:/Users/imenger/.IntelliJIdea2018.2/config/plugins/Alibaba%20Java%20Coding%20Guidelines/lib/p3c-common-1.0.3.jar!/rulesets/ 
2018-11-20 17:36:00,807 [  65534]   INFO - inspection.RuleInspectionUtils - create jarFile for path /C:/Users/imenger/.IntelliJIdea2018.2/config/plugins/Alibaba Java Coding Guidelines/lib/p3c-common-1.0.3.jar 
2018-11-20 17:36:00,810 [  65537]   INFO - inspection.RuleInspectionUtils - get result rule set java/ali-pmd 
2018-11-20 17:36:00,810 [  65537]   INFO - inspection.RuleInspectionUtils - find rule sets from jar jar:file:/C:/Users/imenger/.IntelliJIdea2018.2/config/plugins/Alibaba%20Java%20Coding%20Guidelines/lib/p3c-common-1.0.3.jar!/rulesets/ finished 
2018-11-20 17:36:00,810 [  65537]   INFO - inspection.RuleInspectionUtils - start to find rule sets from jar jar:file:/C:/Users/imenger/.IntelliJIdea2018.2/config/plugins/Alibaba%20Java%20Coding%20Guidelines/lib/p3c-pmd-1.3.5.jar!/rulesets/ 
2018-11-20 17:36:00,810 [  65537]   INFO - inspection.RuleInspectionUtils - create jarFile for path /C:/Users/imenger/.IntelliJIdea2018.2/config/plugins/Alibaba Java Coding Guidelines/lib/p3c-pmd-1.3.5.jar 
2018-11-20 17:36:00,811 [  65538]   INFO - inspection.RuleInspectionUtils - get result rule set java/ali-exception 
2018-11-20 17:36:00,811 [  65538]   INFO - inspection.RuleInspectionUtils - get result rule set java/ali-comment 
2018-11-20 17:36:00,811 [  65538]   INFO - inspection.RuleInspectionUtils - get result rule set java/ali-other 
2018-11-20 17:36:00,811 [  65538]   INFO - inspection.RuleInspectionUtils - get result rule set java/ali-naming 
2018-11-20 17:36:00,811 [  65538]   INFO - inspection.RuleInspectionUtils - get result rule set java/ali-flowcontrol 
2018-11-20 17:36:00,811 [  65538]   INFO - inspection.RuleInspectionUtils - get result rule set java/ali-orm 
2018-11-20 17:36:00,811 [  65538]   INFO - inspection.RuleInspectionUtils - get result rule set java/ali-constant 
2018-11-20 17:36:00,811 [  65538]   INFO - inspection.RuleInspectionUtils - get result rule set java/ali-set 
2018-11-20 17:36:00,811 [  65538]   INFO - inspection.RuleInspectionUtils - get result rule set java/ali-oop 
2018-11-20 17:36:00,811 [  65538]   INFO - inspection.RuleInspectionUtils - get result rule set java/ali-concurrent 
2018-11-20 17:36:00,811 [  65538]   INFO - inspection.RuleInspectionUtils - get result rule set vm/ali-other 
2018-11-20 17:36:00,813 [  65540]   INFO - inspection.RuleInspectionUtils - find rule sets from jar jar:file:/C:/Users/imenger/.IntelliJIdea2018.2/config/plugins/Alibaba%20Java%20Coding%20Guidelines/lib/p3c-pmd-1.3.5.jar!/rulesets/ finished 
2018-11-20 17:36:00,813 [  65540]   INFO - inspection.RuleInspectionUtils - start to find rule sets from jar jar:file:/C:/Users/imenger/.IntelliJIdea2018.2/config/plugins/Alibaba%20Java%20Coding%20Guidelines/lib/pmd-core-5.5.2.jar!/rulesets/ 
2018-11-20 17:36:00,813 [  65540]   INFO - inspection.RuleInspectionUtils - create jarFile for path /C:/Users/imenger/.IntelliJIdea2018.2/config/plugins/Alibaba Java Coding Guidelines/lib/pmd-core-5.5.2.jar 
2018-11-20 17:36:00,819 [  65546]   INFO - inspection.RuleInspectionUtils - find rule sets from jar jar:file:/C:/Users/imenger/.IntelliJIdea2018.2/config/plugins/Alibaba%20Java%20Coding%20Guidelines/lib/pmd-core-5.5.2.jar!/rulesets/ finished 
2018-11-20 17:36:00,819 [  65546]   INFO - inspection.RuleInspectionUtils - start to find rule sets from jar jar:file:/C:/Users/imenger/.IntelliJIdea2018.2/config/plugins/Alibaba%20Java%20Coding%20Guidelines/lib/pmd-java-5.5.2.jar!/rulesets/ 
2018-11-20 17:36:00,819 [  65546]   INFO - inspection.RuleInspectionUtils - create jarFile for path /C:/Users/imenger/.IntelliJIdea2018.2/config/plugins/Alibaba Java Coding Guidelines/lib/pmd-java-5.5.2.jar 
2018-11-20 17:36:00,823 [  65550]   INFO - inspection.RuleInspectionUtils - find rule sets from jar jar:file:/C:/Users/imenger/.IntelliJIdea2018.2/config/plugins/Alibaba%20Java%20Coding%20Guidelines/lib/pmd-java-5.5.2.jar!/rulesets/ finished 
2018-11-20 17:36:00,823 [  65550]   INFO - inspection.RuleInspectionUtils - start to find rule sets from jar jar:file:/C:/Users/imenger/.IntelliJIdea2018.2/config/plugins/Alibaba%20Java%20Coding%20Guidelines/lib/pmd-vm-5.5.2.jar!/rulesets/ 
2018-11-20 17:36:00,823 [  65550]   INFO - inspection.RuleInspectionUtils - create jarFile for path /C:/Users/imenger/.IntelliJIdea2018.2/config/plugins/Alibaba Java Coding Guidelines/lib/pmd-vm-5.5.2.jar 
2018-11-20 17:36:00,824 [  65551]   INFO - inspection.RuleInspectionUtils - find rule sets from jar jar:file:/C:/Users/imenger/.IntelliJIdea2018.2/config/plugins/Alibaba%20Java%20Coding%20Guidelines/lib/pmd-vm-5.5.2.jar!/rulesets/ finished 
2018-11-20 17:36:03,083 [  67810]   INFO - .openapi.application.Preloader - com.intellij.ide.ui.search.SearchableOptionPreloader took 3890 ms 
2018-11-20 17:36:04,790 [  69517]   INFO - .openapi.application.Preloader - com.intellij.codeInsight.completion.CompletionPreloader took 1706 ms 
2018-11-20 17:36:04,849 [  69576]   INFO - .openapi.application.Preloader - com.intellij.ide.actions.GotoClassPresentationUpdater took 58 ms 
2018-11-20 17:36:19,127 [  83854]   INFO - ij.components.ComponentManager - com.seventh7.mybatis.ref.CmProject initialized in 21444 ms 
2018-11-20 17:36:19,157 [  83884]   INFO - ij.components.ComponentManager - com.android.tools.adtui.workbench.DetachedToolWindowManager initialized in 28 ms 
2018-11-20 17:36:19,171 [  83898]   INFO - ij.components.ComponentManager - com.android.tools.idea.editors.theme.AndroidThemePreviewToolWindowManager initialized in 13 ms 
2018-11-20 17:36:19,246 [  83973]   INFO - ij.components.ComponentManager - com.android.tools.idea.gradle.project.AndroidGradleProjectComponent initialized in 74 ms 
2018-11-20 17:36:19,285 [  84012]   INFO - ij.components.ComponentManager - org.jetbrains.kotlin.idea.completion.LookupCancelWatcher initialized in 12 ms 
2018-11-20 17:36:19,329 [  84056]   INFO - ij.components.ComponentManager - com.vladsch.idea.multimarkdown.MultiMarkdownProjectComponent initialized in 26 ms 
2018-11-20 17:36:19,332 [  84059]   INFO - ellij.project.impl.ProjectImpl - 208 project components initialized in 34604 ms 
2018-11-20 17:36:19,900 [  84627]   INFO - ij.components.ComponentManager - com.intellij.openapi.roots.impl.ModuleRootManagerComponent initialized in 464 ms 
2018-11-20 17:36:19,901 [  84628]   INFO - ij.components.ComponentManager - com.intellij.openapi.roots.impl.ModuleRootManagerComponent initialized in 462 ms 
2018-11-20 17:36:19,910 [  84637]   INFO - ij.components.ComponentManager - com.intellij.openapi.roots.impl.ModuleRootManagerComponent initialized in 472 ms 
2018-11-20 17:36:19,912 [  84639]   INFO - ij.components.ComponentManager - com.intellij.openapi.roots.impl.ModuleRootManagerComponent initialized in 475 ms 
2018-11-20 17:36:20,011 [  84738]   INFO - ij.components.ComponentManager - com.android.tools.idea.uibuilder.palette.NlPaletteModel initialized in 100 ms 
2018-11-20 17:36:20,011 [  84738]   INFO - ij.components.ComponentManager - com.android.tools.idea.uibuilder.palette.NlPaletteModel initialized in 100 ms 
2018-11-20 17:36:20,031 [  84758]   INFO - ij.components.ComponentManager - com.intellij.openapi.roots.impl.ModuleRootManagerComponent initialized in 13 ms 
2018-11-20 17:36:20,051 [  84778]   INFO - ij.components.ComponentManager - com.intellij.openapi.roots.impl.ModuleRootManagerComponent initialized in 31 ms 
2018-11-20 17:36:20,272 [  84999]   INFO - ij.components.ComponentManager - com.intellij.facet.FacetManagerImpl initialized in 371 ms 
2018-11-20 17:36:20,272 [  84999]   INFO - ij.components.ComponentManager - com.intellij.facet.FacetManagerImpl initialized in 240 ms 
2018-11-20 17:36:20,272 [  84999]   INFO - ij.components.ComponentManager - com.intellij.facet.FacetManagerImpl initialized in 220 ms 
2018-11-20 17:36:20,301 [  85028]   INFO - ij.components.ComponentManager - com.intellij.facet.FacetManagerImpl initialized in 14 ms 
2018-11-20 17:36:20,304 [  85031]   INFO - ij.components.ComponentManager - com.intellij.facet.FacetManagerImpl initialized in 393 ms 
2018-11-20 17:36:20,304 [  85031]   INFO - le.impl.ModuleManagerComponent - 7 module(s) loaded in 971 ms 
2018-11-20 17:36:21,636 [  86363]   INFO - j.ide.script.IdeStartupScripts - 0 startup script(s) found 
2018-11-20 17:36:27,045 [  91772]   WARN - om.intellij.util.ProfilingUtil - YourKit controller initialization failed : There's no application running at localhost with profiler agent configured to listen on port 10001
or profiler agent is incompatible with current version of profiler 
java.net.SocketTimeoutException: connect timed out
	at java.net.TwoStacksPlainSocketImpl.$$YJP$$socketConnect(Native Method)
	at java.net.TwoStacksPlainSocketImpl.socketConnect(TwoStacksPlainSocketImpl.java)
	at java.net.AbstractPlainSocketImpl.doConnect(AbstractPlainSocketImpl.java:350)
	at java.net.AbstractPlainSocketImpl.connectToAddress(AbstractPlainSocketImpl.java:206)
	at java.net.AbstractPlainSocketImpl.connect(AbstractPlainSocketImpl.java:188)
	at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:172)
	at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:392)
	at java.net.Socket.connect(Socket.java:589)
	at com.yourkit.api.ControllerImpl.makeRequest(ControllerImpl.java:244)
	at com.yourkit.api.ControllerImpl.makeRequest(ControllerImpl.java:230)
	at com.yourkit.api.ControllerImpl.runBatch(ControllerImpl.java:1059)
	at com.yourkit.api.ControllerImpl.<init>(ControllerImpl.java:141)
	at com.yourkit.api.Controller.<init>(Controller.java:100)
	at com.yourkit.api.Controller.<init>(Controller.java:57)
	at com.intellij.util.ProfilingUtil.<clinit>(ProfilingUtil.java:61)
	at com.intellij.util.CaptureMemorySnapshotAction.update(CaptureMemorySnapshotAction.java:19)
	at com.intellij.openapi.actionSystem.ex.ActionUtil.performDumbAwareUpdate(ActionUtil.java:136)
	at com.intellij.openapi.actionSystem.impl.Utils.doUpdate(Utils.java:256)
	at com.intellij.openapi.actionSystem.impl.Utils.expandActionGroup(Utils.java:199)
	at com.intellij.openapi.actionSystem.impl.Utils.expandActionGroup(Utils.java:225)
	at com.intellij.openapi.actionSystem.impl.ActionToolbarImpl.updateActionsImpl(ActionToolbarImpl.java:1100)
	at com.intellij.openapi.actionSystem.impl.ActionToolbarImpl.access$000(ActionToolbarImpl.java:53)
	at com.intellij.openapi.actionSystem.impl.ActionToolbarImpl$2.updateActionsImpl(ActionToolbarImpl.java:175)
	at com.intellij.openapi.actionSystem.impl.ToolbarUpdater$MyUpdateRunnable.run(ToolbarUpdater.java:186)
	at com.intellij.openapi.actionSystem.impl.ToolbarUpdater.updateActions(ToolbarUpdater.java:101)
	at com.intellij.openapi.actionSystem.impl.ToolbarUpdater.updateActions(ToolbarUpdater.java:93)
	at com.intellij.openapi.actionSystem.impl.ActionToolbarImpl.updateActionsImmediately(ActionToolbarImpl.java:1093)
	at com.intellij.openapi.actionSystem.impl.ActionToolbarImpl.addNotify(ActionToolbarImpl.java:213)
	at java.awt.Container.addImpl(Container.java:1124)
	at java.awt.Container.add(Container.java:469)
	at com.intellij.openapi.wm.impl.IdeRootPane.updateToolbar(IdeRootPane.java:190)
	at com.intellij.openapi.wm.impl.ToolWindowManagerImpl.init(ToolWindowManagerImpl.java:428)
	at com.intellij.openapi.wm.impl.ToolWindowManagerImpl$1.projectOpened(ToolWindowManagerImpl.java:154)
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
	at java.lang.reflect.Method.invoke(Method.java:498)
	at com.intellij.util.messages.impl.MessageBusConnectionImpl.deliverMessage(MessageBusConnectionImpl.java:117)
	at com.intellij.util.messages.impl.MessageBusImpl.doPumpMessages(MessageBusImpl.java:426)
	at com.intellij.util.messages.impl.MessageBusImpl.pumpWaitingBuses(MessageBusImpl.java:387)
	at com.intellij.util.messages.impl.MessageBusImpl.pumpMessages(MessageBusImpl.java:376)
	at com.intellij.util.messages.impl.MessageBusImpl.sendMessage(MessageBusImpl.java:357)
	at com.intellij.util.messages.impl.MessageBusImpl.access$200(MessageBusImpl.java:43)
	at com.intellij.util.messages.impl.MessageBusImpl$2.invoke(MessageBusImpl.java:208)
	at com.sun.proxy.$Proxy30.projectOpened(Unknown Source)
	at com.intellij.openapi.project.impl.ProjectManagerImpl.fireProjectOpened(ProjectManagerImpl.java:772)
	at com.intellij.openapi.project.impl.ProjectManagerImpl.lambda$null$6(ProjectManagerImpl.java:390)
	at com.intellij.openapi.application.TransactionGuardImpl.lambda$submitTransactionAndWait$2(TransactionGuardImpl.java:165)
	at com.intellij.openapi.application.TransactionGuardImpl.runSyncTransaction(TransactionGuardImpl.java:88)
	at com.intellij.openapi.application.TransactionGuardImpl.lambda$submitTransaction$1(TransactionGuardImpl.java:111)
	at com.intellij.openapi.application.impl.LaterInvocator$FlushQueue.doRun(LaterInvocator.java:447)
	at com.intellij.openapi.application.impl.LaterInvocator$FlushQueue.runNextEvent(LaterInvocator.java:431)
	at com.intellij.openapi.application.impl.LaterInvocator$FlushQueue.run(LaterInvocator.java:415)
	at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:311)
	at java.awt.EventQueue.dispatchEventImpl(EventQueue.java:758)
	at java.awt.EventQueue.access$500(EventQueue.java:97)
	at java.awt.EventQueue$3.run(EventQueue.java:709)
	at java.awt.EventQueue$3.run(EventQueue.java:703)
	at java.security.AccessController.doPrivileged(Native Method)
	at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(ProtectionDomain.java:74)
	at java.awt.EventQueue.dispatchEvent(EventQueue.java:728)
	at com.intellij.ide.IdeEventQueue.defaultDispatchEvent(IdeEventQueue.java:781)
	at com.intellij.ide.IdeEventQueue._dispatchEvent(IdeEventQueue.java:722)
	at com.intellij.ide.IdeEventQueue.dispatchEvent(IdeEventQueue.java:382)
	at com.intellij.ide.IdeEventQueue.pumpEventsForHierarchy(IdeEventQueue.java:864)
	at com.intellij.openapi.progress.util.ProgressWindow.startBlocking(ProgressWindow.java:205)
	at com.intellij.openapi.progress.util.ProgressWindow.startBlocking(ProgressWindow.java:191)
	at com.intellij.openapi.application.impl.ApplicationImpl.runProcessWithProgressSynchronously(ApplicationImpl.java:588)
	at com.intellij.openapi.progress.impl.CoreProgressManager.runProcessWithProgressSynchronously(CoreProgressManager.java:446)
	at com.intellij.openapi.progress.impl.ProgressManagerImpl.runProcessWithProgressSynchronously(ProgressManagerImpl.java:109)
	at com.intellij.openapi.progress.impl.CoreProgressManager.runProcessWithProgressSynchronously(CoreProgressManager.java:250)
	at com.intellij.openapi.progress.impl.CoreProgressManager.runProcessWithProgressSynchronously(CoreProgressManager.java:203)
	at com.intellij.openapi.project.impl.ProjectManagerImpl.loadProjectUnderProgress(ProjectManagerImpl.java:439)
	at com.intellij.openapi.project.impl.ProjectManagerImpl.openProject(ProjectManagerImpl.java:414)
	at com.intellij.platform.PlatformProjectOpenProcessor.doOpenProject(PlatformProjectOpenProcessor.java:245)
	at com.intellij.ide.RecentProjectsManagerBase.doOpenProject(RecentProjectsManagerBase.java:579)
	at com.intellij.ide.RecentProjectsManagerBase.doReopenLastProject(RecentProjectsManagerBase.java:706)
	at com.intellij.ide.RecentProjectsManagerBase$MyAppLifecycleListener.appStarting(RecentProjectsManagerBase.java:748)
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
	at java.lang.reflect.Method.invoke(Method.java:498)
	at com.intellij.util.messages.impl.MessageBusConnectionImpl.deliverMessage(MessageBusConnectionImpl.java:117)
	at com.intellij.util.messages.impl.MessageBusImpl.doPumpMessages(MessageBusImpl.java:426)
	at com.intellij.util.messages.impl.MessageBusImpl.pumpWaitingBuses(MessageBusImpl.java:387)
	at com.intellij.util.messages.impl.MessageBusImpl.pumpMessages(MessageBusImpl.java:376)
	at com.intellij.util.messages.impl.MessageBusImpl.sendMessage(MessageBusImpl.java:357)
	at com.intellij.util.messages.impl.MessageBusImpl.access$200(MessageBusImpl.java:43)
	at com.intellij.util.messages.impl.MessageBusImpl$2.invoke(MessageBusImpl.java:208)
	at com.sun.proxy.$Proxy74.appStarting(Unknown Source)
	at com.intellij.idea.IdeaApplication$IdeStarter.lambda$main$1(IdeaApplication.java:374)
	at com.intellij.openapi.application.TransactionGuardImpl.runSyncTransaction(TransactionGuardImpl.java:88)
	at com.intellij.openapi.application.TransactionGuardImpl.lambda$submitTransaction$1(TransactionGuardImpl.java:111)
	at com.intellij.openapi.application.TransactionGuardImpl.submitTransaction(TransactionGuardImpl.java:120)
	at com.intellij.openapi.application.TransactionGuard.submitTransaction(TransactionGuard.java:122)
	at com.intellij.idea.IdeaApplication$IdeStarter.main(IdeaApplication.java:372)
	at com.intellij.idea.IdeaApplication.lambda$run$1(IdeaApplication.java:212)
	at com.intellij.openapi.application.TransactionGuardImpl.performUserActivity(TransactionGuardImpl.java:195)
	at com.intellij.idea.IdeaApplication.run(IdeaApplication.java:212)
	at com.intellij.idea.IdeaApplication.lambda$initApplication$0(IdeaApplication.java:75)
	at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:311)
	at java.awt.EventQueue.dispatchEventImpl(EventQueue.java:758)
	at java.awt.EventQueue.access$500(EventQueue.java:97)
	at java.awt.EventQueue$3.run(EventQueue.java:709)
	at java.awt.EventQueue$3.run(EventQueue.java:703)
	at java.security.AccessController.doPrivileged(Native Method)
	at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(ProtectionDomain.java:74)
	at java.awt.EventQueue.dispatchEvent(EventQueue.java:728)
	at com.intellij.ide.IdeEventQueue.dispatchEvent(IdeEventQueue.java:361)
	at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:205)
	at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:116)
	at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:105)
	at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:101)
	at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:93)
	at java.awt.EventDispatchThread.run(EventDispatchThread.java:82)
2018-11-20 17:36:31,183 [  95910]   INFO - tartup.impl.StartupManagerImpl - EditorHistoryManagerStartUpActivity run in 383ms under project opening modal progress 
2018-11-20 17:36:32,082 [  96809]   INFO - rojectCodeStyleSettingsManager - Initialized from default code style settings. 
2018-11-20 17:36:33,534 [  98261]   INFO - .diagnostic.PerformanceWatcher - Pushing properties took 2991ms; general responsiveness: ok; EDT responsiveness: 0/2 sluggish, 1/2 very slow 
2018-11-20 17:36:34,492 [  99219]   INFO - tartup.impl.StartupManagerImpl - OpenFilesActivity run in 3272ms under project opening modal progress 
2018-11-20 17:36:34,723 [  99450]   INFO - ge.ExternalProjectsDataStorage - Loaded external projects data in 7 millis 
2018-11-20 17:36:34,725 [  99452]   INFO - tartup.impl.StartupManagerImpl - ExternalSystemStartupActivity run in 197ms under project opening modal progress 
2018-11-20 17:36:34,899 [  99626]   INFO - .diagnostic.PerformanceWatcher - Post-startup activities under progress took 4503ms; general responsiveness: ok; EDT responsiveness: 0/4 sluggish, 1/4 very slow 
2018-11-20 17:36:36,618 [ 101345]   INFO - j.ide.ui.OptionsTopHitProvider - 648 ms spent on EDT to cache options in application 
2018-11-20 17:36:36,658 [ 101385]   INFO - openapi.wm.impl.PaintersHelper - (BufferedImageGraphicsConfig) 1858x1057 non-accelerated non-volatile image created 
2018-11-20 17:36:36,784 [ 101511]   INFO - openapi.wm.impl.PaintersHelper - (BufferedImageGraphicsConfig) 1858x1057 non-accelerated non-volatile image created 
2018-11-20 17:36:36,846 [ 101573]   INFO - tartup.impl.StartupManagerImpl - D:/IdeaProjects/api-p2pInterface/.idea case-sensitivity: expected=false actual=false 
2018-11-20 17:36:36,912 [ 101639]   INFO -  #git4idea.commands.GitHandler - [.] git version 
2018-11-20 17:36:37,017 [ 101744]   INFO -  #git4idea.commands.GitHandler - git version 2.19.1.windows.1 
2018-11-20 17:36:37,045 [ 101772]   INFO - ea.config.GitExecutableManager - Git version for D:\Git\bin\git.exe : 2.19.1 
2018-11-20 17:36:37,147 [ 101874]   INFO - Json.PackageJsonUpdateNotifier - processPackageJsonFiles [] 
2018-11-20 17:36:37,434 [ 102161]   INFO - pl.projectlevelman.NewMappings - VCS Root: [Git] - [<Project>] 
2018-11-20 17:36:37,434 [ 102161]   INFO - pl.projectlevelman.NewMappings - VCS Root: [Git] - [D:/IdeaProjects/api-pay] 
2018-11-20 17:36:37,434 [ 102161]   INFO - pl.projectlevelman.NewMappings - VCS Root: [Git] - [D:/IdeaProjects/p2p-h5] 
2018-11-20 17:36:37,434 [ 102161]   INFO - pl.projectlevelman.NewMappings - VCS Root: [Git] - [D:/IdeaProjects/p2p_back] 
2018-11-20 17:36:37,434 [ 102161]   INFO - pl.projectlevelman.NewMappings - VCS Root: [Git] - [D:/IdeaProjects/rest-p2p-bank] 
2018-11-20 17:36:40,769 [ 105496]   INFO - tor.impl.FileEditorManagerImpl - Project opening took 56575 ms 
2018-11-20 17:36:44,320 [ 109047]   INFO - .diagnostic.PerformanceWatcher - Indexable file iteration took 10777ms; general responsiveness: ok; EDT responsiveness: 2/11 sluggish, 4/11 very slow 
2018-11-20 17:36:44,546 [ 109273]   INFO - j.ide.ui.OptionsTopHitProvider - 113 ms spent to cache options in project 
2018-11-20 17:36:44,546 [ 109273]   INFO - tartup.impl.StartupManagerImpl - Some post-startup activities freeze UI for noticeable time. Please consider making them DumbAware to do them in background under modal progress, or just making them faster to speed up project opening. 
2018-11-20 17:36:44,546 [ 109273]   INFO - tartup.impl.StartupManagerImpl - Activity run in 113ms on UI thread 
2018-11-20 17:36:44,705 [ 109432]   INFO - tartup.impl.StartupManagerImpl - ProjectInspectionProfileStartUpActivity run in 157ms on UI thread 
2018-11-20 17:36:44,914 [ 109641]   INFO - cloudConfig.CloudConfigManager - === StatusBar ignored === 
2018-11-20 17:36:46,134 [ 110861]   INFO - j.ide.ui.OptionsTopHitProvider - 307 ms spent on EDT to cache options in project 
2018-11-20 17:36:49,770 [ 114497]   INFO -       ScriptTemplatesProviders - [kts] loading script definitions [] using cp:  
2018-11-20 17:37:01,489 [ 126216]   WARN - ution.rmi.RemoteProcessSupport - java.rmi.NotBoundException: _DEAD_HAND_ 
2018-11-20 17:37:01,489 [ 126216]   WARN - ution.rmi.RemoteProcessSupport - at sun.rmi.registry.RegistryImpl.lookup(RegistryImpl.java:227) 
2018-11-20 17:37:01,489 [ 126216]   WARN - ution.rmi.RemoteProcessSupport - at com.intellij.execution.rmi.RemoteServer.start(RemoteServer.java:96) 
2018-11-20 17:37:01,489 [ 126216]   WARN - ution.rmi.RemoteProcessSupport - at org.jetbrains.idea.maven.server.RemoteMavenServer.main(RemoteMavenServer.java:22) 
2018-11-20 17:37:02,828 [ 127555]   WARN - ution.rmi.RemoteProcessSupport - The cook failed to start due to java.net.ConnectException: Connection timed out: connect 
2018-11-20 17:37:03,907 [ 128634]  ERROR -      #org.jetbrains.idea.maven - Cannot reconnect. 
java.lang.RuntimeException: Cannot reconnect.
	at org.jetbrains.idea.maven.server.RemoteObjectWrapper.perform(RemoteObjectWrapper.java:82)
	at org.jetbrains.idea.maven.server.MavenServerManager.applyProfiles(MavenServerManager.java:526)
	at org.jetbrains.idea.maven.project.MavenProjectReader.applyProfiles(MavenProjectReader.java:394)
	at org.jetbrains.idea.maven.project.MavenProjectReader.doReadProjectModel(MavenProjectReader.java:103)
	at org.jetbrains.idea.maven.project.MavenProjectReader.access$300(MavenProjectReader.java:46)
	at org.jetbrains.idea.maven.project.MavenProjectReader$1.doProcessParent(MavenProjectReader.java:447)
	at org.jetbrains.idea.maven.project.MavenProjectReader$1.doProcessParent(MavenProjectReader.java:424)
	at org.jetbrains.idea.maven.project.MavenParentProjectFileProcessor.processRepositoryParent(MavenParentProjectFileProcessor.java:84)
	at org.jetbrains.idea.maven.project.MavenParentProjectFileProcessor.process(MavenParentProjectFileProcessor.java:62)
	at org.jetbrains.idea.maven.project.MavenProjectReader.resolveInheritance(MavenProjectReader.java:450)
	at org.jetbrains.idea.maven.project.MavenProjectReader.doReadProjectModel(MavenProjectReader.java:100)
	at org.jetbrains.idea.maven.project.MavenProjectReader.access$300(MavenProjectReader.java:46)
	at org.jetbrains.idea.maven.project.MavenProjectReader$1.doProcessParent(MavenProjectReader.java:447)
	at org.jetbrains.idea.maven.project.MavenProjectReader$1.doProcessParent(MavenProjectReader.java:424)
	at org.jetbrains.idea.maven.project.MavenParentProjectFileProcessor.processRepositoryParent(MavenParentProjectFileProcessor.java:84)
	at org.jetbrains.idea.maven.project.MavenParentProjectFileProcessor.process(MavenParentProjectFileProcessor.java:62)
	at org.jetbrains.idea.maven.project.MavenProjectReader.resolveInheritance(MavenProjectReader.java:450)
	at org.jetbrains.idea.maven.project.MavenProjectReader.doReadProjectModel(MavenProjectReader.java:100)
	at org.jetbrains.idea.maven.project.MavenProjectReader.readProject(MavenProjectReader.java:62)
	at org.jetbrains.idea.maven.project.MavenProject.read(MavenProject.java:655)
	at org.jetbrains.idea.maven.project.MavenProjectsTree.doUpdate(MavenProjectsTree.java:555)
	at org.jetbrains.idea.maven.project.MavenProjectsTree.update(MavenProjectsTree.java:464)
	at org.jetbrains.idea.maven.project.MavenProjectsTree.updateAll(MavenProjectsTree.java:432)
	at org.jetbrains.idea.maven.project.MavenProjectsProcessorReadingTask.perform(MavenProjectsProcessorReadingTask.java:60)
	at org.jetbrains.idea.maven.project.MavenProjectsProcessor.doProcessPendingTasks(MavenProjectsProcessor.java:132)
	at org.jetbrains.idea.maven.project.MavenProjectsProcessor.access$000(MavenProjectsProcessor.java:32)
	at org.jetbrains.idea.maven.project.MavenProjectsProcessor$2.run(MavenProjectsProcessor.java:107)
	at org.jetbrains.idea.maven.utils.MavenUtil.lambda$runInBackground$5(MavenUtil.java:449)
	at com.intellij.openapi.application.impl.ApplicationImpl$1.run(ApplicationImpl.java:314)
	at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511)
	at java.util.concurrent.FutureTask.run(FutureTask.java:266)
	at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
	at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
	at java.lang.Thread.run(Thread.java:748)
Caused by: java.rmi.RemoteException: Cannot start maven service; nested exception is: 
	java.rmi.ConnectException: Connection refused to host: 127.0.0.1; nested exception is: 
	java.net.ConnectException: Connection refused: connect
	at org.jetbrains.idea.maven.server.MavenServerManager.create(MavenServerManager.java:161)
	at org.jetbrains.idea.maven.server.MavenServerManager.create(MavenServerManager.java:66)
	at org.jetbrains.idea.maven.server.RemoteObjectWrapper.getOrCreateWrappee(RemoteObjectWrapper.java:41)
	at org.jetbrains.idea.maven.server.MavenServerManager.lambda$applyProfiles$3(MavenServerManager.java:526)
	at org.jetbrains.idea.maven.server.RemoteObjectWrapper.perform(RemoteObjectWrapper.java:76)
	... 33 more
Caused by: java.rmi.ConnectException: Connection refused to host: 127.0.0.1; nested exception is: 
	java.net.ConnectException: Connection refused: connect
	at sun.rmi.transport.tcp.TCPEndpoint.newSocket(TCPEndpoint.java:619)
	at sun.rmi.transport.tcp.TCPChannel.createConnection(TCPChannel.java:216)
	at sun.rmi.transport.tcp.TCPChannel.newConnection(TCPChannel.java:202)
	at sun.rmi.server.UnicastRef.newCall(UnicastRef.java:338)
	at sun.rmi.registry.RegistryImpl_Stub.lookup(RegistryImpl_Stub.java:112)
	at com.intellij.execution.rmi.RemoteProcessSupport.lambda$acquire$2(RemoteProcessSupport.java:260)
	at com.intellij.openapi.util.ClassLoaderUtil.runWithClassLoader(ClassLoaderUtil.java:66)
	at com.intellij.execution.rmi.RemoteUtil.executeWithClassLoader(RemoteUtil.java:231)
	at com.intellij.execution.rmi.RemoteProcessSupport.acquire(RemoteProcessSupport.java:258)
	at com.intellij.execution.rmi.RemoteProcessSupport.acquire(RemoteProcessSupport.java:164)
	at org.jetbrains.idea.maven.server.MavenServerManager.create(MavenServerManager.java:158)
	... 37 more
Caused by: java.net.ConnectException: Connection refused: connect
	at java.net.TwoStacksPlainSocketImpl.$$YJP$$socketConnect(Native Method)
	at java.net.TwoStacksPlainSocketImpl.socketConnect(TwoStacksPlainSocketImpl.java)
	at java.net.AbstractPlainSocketImpl.doConnect(AbstractPlainSocketImpl.java:350)
	at java.net.AbstractPlainSocketImpl.connectToAddress(AbstractPlainSocketImpl.java:206)
	at java.net.AbstractPlainSocketImpl.connect(AbstractPlainSocketImpl.java:188)
	at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:172)
	at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:392)
	at java.net.Socket.connect(Socket.java:589)
	at java.net.Socket.connect(Socket.java:538)
	at java.net.Socket.<init>(Socket.java:434)
	at java.net.Socket.<init>(Socket.java:211)
	at sun.rmi.transport.proxy.RMIDirectSocketFactory.createSocket(RMIDirectSocketFactory.java:40)
	at sun.rmi.transport.proxy.RMIMasterSocketFactory.createSocket(RMIMasterSocketFactory.java:148)
	at sun.rmi.transport.tcp.TCPEndpoint.newSocket(TCPEndpoint.java:613)
	... 47 more

, I always thought it was

ERROR – #org.jetbrains. Idea. maven. maven. Cannot reconnect.

maven has a problem, re-import, still not fixed.

later found:

Caused by: java.net.ConnectException: Connection timed out: connect

just remembered the problem of firewall.

close firewall

find: control panel \ all control panel items \Windows Defender firewall \ custom Settings

check off:

restart, and it’s ok ~~~

Idea startup project: main class not found or cannot be loaded

in the process of using IDEA, the service is often broken or restarted. Recently, when the service is interrupted and restarted, a startup error is encountered:

error: the main class

cannot be found or loaded

guess: 1, failed to compile;

try: menu -> Build – “Rebuild Prodject

result: the startup service still reports the same error

2, caching problem;

try: menu — “File–” Invalidate Caches/Restart select Invalidate and Restart or just Invalidate, clear the cache, and then Rebuild Project

results: start successfully, problem solving

Idea method of modifying git account and password

IDEA how to modify git account and password:
1, file-> settings-> passwords

2. Restart IDEA

3, perform a submit or update
when the submit or update is performed, idea will automatically prompt for the account and password as follows:

4, if the above can not be modified, please try the following way
solution: control panel -> User account -& GT; Manage your credentials

Under idea struts.xml The problem of “red” in extends = “struts default”

The phenomenon of

extends= “struts-default” when configuring struts.xml in IDEA, and also goes red when configuring interceptors with properties that don’t have pre-selection hints.

struts.xml itself is not configured incorrectly.


solution

Ctrl+Shift+Alt+S call out Project Structure


why

when we created the project, we selected the jar package that later imported struts, IDEA could not find the struts-default.xml file in the jar package. After we import the struts jar package, IDEA will not scan whether there is a struts-default.xml file in it. For IDEA, struts-default.xml is missing, so there is no corresponding code prompt for red.

This kind of problem often occurs when you manually add jar packages in struts. The solution is the same as above: manually add XML files.

IDEA报Unable to save settings: Failed to save settings. Please restart IntelliJ IDEA

IDEA Failed to save Settings. Please restart IntelliJ IDEA
said the solution is to uninstall a “identifier Highlighter” plug-in, but my IDEA does not have this plug-in.
after Google finally found a solution.

solution

first make sure you have read/write access to the config file

if the permissions are okay and the error is still reported, move on to the next step.

view log file

find the cause of the error, which may vary from person to person. Therefore, the solution is different.

2017-11-15 17:20:55,720 [ 196716]   WARN - mponents.impl.stores.StoreUtil - Save settings failed 
java.lang.RuntimeException: java.lang.Exception: Cannot get RunManager component state
    at com.intellij.util.ExceptionUtil.rethrow(ExceptionUtil.java:179)
    at com.intellij.util.lang.CompoundRuntimeException.throwIfNotEmpty(CompoundRuntimeException.java:148)
    at com.intellij.configurationStore.ComponentStoreImpl.save(ComponentStoreImpl.kt:199)
    at com.intellij.openapi.components.impl.stores.StoreUtil.save(StoreUtil.java:49)
    at com.intellij.openapi.project.impl.ProjectImpl.save(ProjectImpl.java:349)
    at com.intellij.openapi.components.impl.stores.StoreUtil.saveDocumentsAndProjectsAndApp(StoreUtil.java:126)
    at com.intellij.openapi.application.impl.ApplicationImpl.saveAll(ApplicationImpl.java:1437)
    at com.intellij.ide.SaveAndSyncHandlerImpl.saveProjectsAndDocuments(SaveAndSyncHandlerImpl.java:126)
    at com.intellij.ide.SaveAndSyncHandlerImpl$2.a(SaveAndSyncHandlerImpl.java:94)
    at com.intellij.openapi.application.TransactionGuardImpl.a(TransactionGuardImpl.java:86)
    at com.intellij.openapi.application.TransactionGuardImpl.a(TransactionGuardImpl.java:109)
    at com.intellij.openapi.application.TransactionGuardImpl.submitTransaction(TransactionGuardImpl.java:118)
    at com.intellij.openapi.application.TransactionGuard.submitTransaction(TransactionGuard.java:122)
    at com.intellij.ide.SaveAndSyncHandlerImpl$2.onFrameDeactivated(SaveAndSyncHandlerImpl.java:92)
    at com.intellij.ide.FrameStateManagerImpl.a(FrameStateManagerImpl.java:84)
    at com.intellij.ide.FrameStateManagerImpl.access$500(FrameStateManagerImpl.java:32)
    at com.intellij.ide.FrameStateManagerImpl$2.a(FrameStateManagerImpl.java:70)
    at com.intellij.util.concurrency.QueueProcessor.runSafely(QueueProcessor.java:246)
    at com.intellij.util.Alarm$Request.runSafely(Alarm.java:417)
    at com.intellij.util.Alarm$Request.access$700(Alarm.java:344)
    at com.intellij.util.Alarm$Request$1.run(Alarm.java:384)
    at com.intellij.openapi.application.TransactionGuardImpl$2.run(TransactionGuardImpl.java:314)
    at com.intellij.openapi.application.impl.LaterInvocator$FlushQueue.a(LaterInvocator.java:416)
    at com.intellij.openapi.application.impl.LaterInvocator$FlushQueue.run(LaterInvocator.java:399)
    at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:311)
    at java.awt.EventQueue.dispatchEventImpl(EventQueue.java:762)
    at java.awt.EventQueue.access$500(EventQueue.java:98)
    at java.awt.EventQueue$3.run(EventQueue.java:715)
    at java.awt.EventQueue$3.run(EventQueue.java:709)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(ProtectionDomain.java:80)
    at java.awt.EventQueue.dispatchEvent(EventQueue.java:732)
    at com.intellij.ide.IdeEventQueue.c(IdeEventQueue.java:821)
    at com.intellij.ide.IdeEventQueue._dispatchEvent(IdeEventQueue.java:649)
    at com.intellij.ide.IdeEventQueue.dispatchEvent(IdeEventQueue.java:365)
    at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:201)
    at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:116)
    at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:105)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:101)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:93)
    at java.awt.EventDispatchThread.run(EventDispatchThread.java:82)
Caused by: java.lang.Exception: Cannot get RunManager component state
    at com.intellij.configurationStore.ComponentStoreImpl.save(ComponentStoreImpl.kt:166)
    ... 38 more
Caused by: java.lang.RuntimeException: Cannot save scheme workspace/Jetty Server: jetty (level: WORKSPACE)
    at com.intellij.configurationStore.SchemeManagerImpl.save(SchemeManagerImpl.kt:535)
    at com.intellij.configurationStore.Scheme_implKt.save(scheme-impl.kt:154)
    at com.intellij.execution.impl.RunManagerImpl.getState(RunManagerImpl.kt:500)
    at com.intellij.execution.impl.RunManagerImpl.getState(RunManagerImpl.kt:63)
    at com.intellij.configurationStore.ComponentStoreImpl.a(ComponentStoreImpl.kt:227)
    at com.intellij.configurationStore.ComponentStoreImpl.save(ComponentStoreImpl.kt:159)
    ... 38 more

I found this sentence:

under Caused by: Java. Lang. RuntimeException: always save scheme workspace/Jetty Server: Jetty (level: workspace)

is my jetty configuration problem because I don't need jetty, so I temporarily removed the jetty related configuration.

problem solved, no more annoying prompts.

IntelliJ idea sets the default working directory

project more and more, using eclipse felt too card, decided to try the idea.

under multiple modules, system.getproperty (“user.dir”) gets the path to the module when you run the project.

to set the default Working Directory

setting method:

Run -> Edit Configurations -> Working directory


Defaults-> Application

set Working directory to $MODULE_DIR$so that each module gets its own project root path