Skip to content

Commit 8778985

Browse files
author
Vaibhav Agrawal
committed
First spring demo
0 parents  commit 8778985

File tree

51 files changed

+5030
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

51 files changed

+5030
-0
lines changed

.gitignore

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
/target/
2+
!.mvn/wrapper/maven-wrapper.jar
3+
4+
### STS ###
5+
.apt_generated
6+
.classpath
7+
.factorypath
8+
.project
9+
.settings
10+
.springBeans
11+
.sts4-cache
12+
13+
### IntelliJ IDEA ###
14+
.idea
15+
*.iws
16+
*.iml
17+
*.ipr
18+
19+
### NetBeans ###
20+
/nbproject/private/
21+
/build/
22+
/nbbuild/
23+
/dist/
24+
/nbdist/
25+
/.nb-gradle/

.metadata/.lock

Whitespace-only changes.

.metadata/.log

Lines changed: 78 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,78 @@
1+
!SESSION 2018-10-08 14:24:14.408 -----------------------------------------------
2+
eclipse.buildId=4.4.0.I20140606-1215
3+
java.version=1.8.0_25
4+
java.vendor=Oracle Corporation
5+
BootLoader constants: OS=win32, ARCH=x86_64, WS=win32, NL=en_US
6+
Framework arguments: vm C:\Program Files\Java\jdk1.6.0_45\bin/javaw.exe -product org.eclipse.epp.package.jee.product
7+
Command-line arguments: -os win32 -ws win32 -arch x86_64 vm C:\Program Files\Java\jdk1.6.0_45\bin/javaw.exe -product org.eclipse.epp.package.jee.product
8+
9+
!ENTRY org.eclipse.emf.ecore 2 0 2018-10-08 14:24:48.888
10+
!MESSAGE Both 'org.eclipse.e4.tools.css.editor.ui' and 'org.eclipse.papyrus.infra.gmfdiag.css.xtext.ui' register an extension parser for 'css'
11+
12+
!ENTRY org.eclipse.mylyn.tasks.core 1 0 2018-10-08 14:25:42.798
13+
!MESSAGE Migrating task repository credentials from keyring.
14+
15+
!ENTRY org.eclipse.egit.ui 2 0 2018-10-08 14:25:45.087
16+
!MESSAGE Warning: The environment variable HOME is not set. The following directory will be used to store the Git
17+
user global configuration and to define the default location to store repositories: 'C:\Users\vaibhavag'. If this is
18+
not correct please set the HOME environment variable and restart Eclipse. Otherwise Git for Windows and
19+
EGit might behave differently since they see different configuration options.
20+
This warning can be switched off on the Team > Git > Confirmations and Warnings preference page.
21+
22+
!ENTRY tern.eclipse.ide.ui 4 0 2018-10-08 14:26:25.537
23+
!MESSAGE FrameworkEvent ERROR
24+
!STACK 0
25+
org.osgi.framework.BundleException: Exception in tern.eclipse.ide.ui.TernUIPlugin.stop() of bundle tern.eclipse.ide.ui.
26+
at org.eclipse.osgi.internal.framework.BundleContextImpl.stop(BundleContextImpl.java:847)
27+
at org.eclipse.osgi.internal.framework.EquinoxBundle.stopWorker0(EquinoxBundle.java:950)
28+
at org.eclipse.osgi.internal.framework.EquinoxBundle$EquinoxModule.stopWorker(EquinoxBundle.java:324)
29+
at org.eclipse.osgi.container.Module.doStop(Module.java:626)
30+
at org.eclipse.osgi.container.Module.stop(Module.java:488)
31+
at org.eclipse.osgi.container.ModuleContainer$ContainerStartLevel.decStartLevel(ModuleContainer.java:1623)
32+
at org.eclipse.osgi.container.ModuleContainer$ContainerStartLevel.doContainerStartLevel(ModuleContainer.java:1542)
33+
at org.eclipse.osgi.container.SystemModule.stopWorker(SystemModule.java:248)
34+
at org.eclipse.osgi.internal.framework.EquinoxBundle$SystemBundle$EquinoxSystemModule.stopWorker(EquinoxBundle.java:145)
35+
at org.eclipse.osgi.container.Module.doStop(Module.java:626)
36+
at org.eclipse.osgi.container.Module.stop(Module.java:488)
37+
at org.eclipse.osgi.container.SystemModule.stop(SystemModule.java:186)
38+
at org.eclipse.osgi.internal.framework.EquinoxBundle$SystemBundle$EquinoxSystemModule$1.run(EquinoxBundle.java:160)
39+
at java.lang.Thread.run(Unknown Source)
40+
Caused by: java.lang.ExceptionInInitializerError
41+
at tern.eclipse.ide.ui.TernUIPlugin.getTernDescriptorManager(TernUIPlugin.java:127)
42+
at tern.eclipse.ide.ui.TernUIPlugin.stop(TernUIPlugin.java:85)
43+
at org.eclipse.osgi.internal.framework.BundleContextImpl$4.run(BundleContextImpl.java:827)
44+
at org.eclipse.osgi.internal.framework.BundleContextImpl$4.run(BundleContextImpl.java:1)
45+
at java.security.AccessController.doPrivileged(Native Method)
46+
at org.eclipse.osgi.internal.framework.BundleContextImpl.stop(BundleContextImpl.java:820)
47+
... 13 more
48+
Caused by: java.lang.NullPointerException
49+
at tern.eclipse.ide.internal.ui.descriptors.TernDescriptorManager.getTempDir(TernDescriptorManager.java:237)
50+
at tern.eclipse.ide.internal.ui.descriptors.TernDescriptorManager.<init>(TernDescriptorManager.java:72)
51+
at tern.eclipse.ide.internal.ui.descriptors.TernDescriptorManager.<clinit>(TernDescriptorManager.java:52)
52+
... 19 more
53+
Root exception:
54+
java.lang.ExceptionInInitializerError
55+
at tern.eclipse.ide.ui.TernUIPlugin.getTernDescriptorManager(TernUIPlugin.java:127)
56+
at tern.eclipse.ide.ui.TernUIPlugin.stop(TernUIPlugin.java:85)
57+
at org.eclipse.osgi.internal.framework.BundleContextImpl$4.run(BundleContextImpl.java:827)
58+
at org.eclipse.osgi.internal.framework.BundleContextImpl$4.run(BundleContextImpl.java:1)
59+
at java.security.AccessController.doPrivileged(Native Method)
60+
at org.eclipse.osgi.internal.framework.BundleContextImpl.stop(BundleContextImpl.java:820)
61+
at org.eclipse.osgi.internal.framework.EquinoxBundle.stopWorker0(EquinoxBundle.java:950)
62+
at org.eclipse.osgi.internal.framework.EquinoxBundle$EquinoxModule.stopWorker(EquinoxBundle.java:324)
63+
at org.eclipse.osgi.container.Module.doStop(Module.java:626)
64+
at org.eclipse.osgi.container.Module.stop(Module.java:488)
65+
at org.eclipse.osgi.container.ModuleContainer$ContainerStartLevel.decStartLevel(ModuleContainer.java:1623)
66+
at org.eclipse.osgi.container.ModuleContainer$ContainerStartLevel.doContainerStartLevel(ModuleContainer.java:1542)
67+
at org.eclipse.osgi.container.SystemModule.stopWorker(SystemModule.java:248)
68+
at org.eclipse.osgi.internal.framework.EquinoxBundle$SystemBundle$EquinoxSystemModule.stopWorker(EquinoxBundle.java:145)
69+
at org.eclipse.osgi.container.Module.doStop(Module.java:626)
70+
at org.eclipse.osgi.container.Module.stop(Module.java:488)
71+
at org.eclipse.osgi.container.SystemModule.stop(SystemModule.java:186)
72+
at org.eclipse.osgi.internal.framework.EquinoxBundle$SystemBundle$EquinoxSystemModule$1.run(EquinoxBundle.java:160)
73+
at java.lang.Thread.run(Unknown Source)
74+
Caused by: java.lang.NullPointerException
75+
at tern.eclipse.ide.internal.ui.descriptors.TernDescriptorManager.getTempDir(TernDescriptorManager.java:237)
76+
at tern.eclipse.ide.internal.ui.descriptors.TernDescriptorManager.<init>(TernDescriptorManager.java:72)
77+
at tern.eclipse.ide.internal.ui.descriptors.TernDescriptorManager.<clinit>(TernDescriptorManager.java:52)
78+
... 19 more
437 Bytes
Binary file not shown.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
*** SESSION Oct 08, 2018 14:25:29.32 -------------------------------------------
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#GitProjectData
2+
#Mon Oct 08 14:25:49 IST 2018
3+
.gitdir=../.git
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+


0 commit comments

Comments
 (0)