Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Java

Cannot resolve method 'before();'

Hi all,

I am following along and Gregg writes the before() method and imports static method from the red lamp icon. I don't have the option of static import, my red lamp has only 'create method before' option.

Anyone have any idea why I am missing the import option? How should I import the before() method manually?

All help would be much appreciated, thank you!

Here's a link to the video: https://teamtreehouse.com/library/intro-to-java-web-development-with-spark/bells-and-whistles/-using-filters-and-request-attributes

1 Answer

Florian Tönjes
seal-mask
.a{fill-rule:evenodd;}techdegree seal-36
Florian Tönjes
Full Stack JavaScript Techdegree Graduate 50,856 Points

Hi Tuukka,

use this:

import static spark.Spark.*;

And you will have "before" and the other static Spark methods imported.

Kind Regards, Florian

Thank you very much Florian!