Question

I'm new in java and storm

i imported a project in eclipse with the needed library and i got errors in some code

The code of the project i imported here

https://github.com/nathanmarz/storm-starter .

and i run pom.xml using Maven .. Build Successfully .

I'm using eclipse Kelper Jee Release .

the photo i upload it show more about my problem .

errors

`warning

what about warning i have . it's suppose for project ... work well ? am i ignore it or no ?

Was it helpful?

Solution

... must override a super class ... is because the project's Java compiler compliance level is 1.5 but it needs 1.6. Java 1.5 does not allow @Override annotations on methods implementing interface methods. Try right click on project -> Properties -> Java Compiler set compliance level 1.6 or 1.7

OTHER TIPS

Looks like there is problem in version of jars that you are using.

Go To Window -->Preference Check Java Compilation level,Check your java Build path JRE included correctly or not JRE version is Low Find 1.6 instead of 1.5

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top