Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

tuukka uosukainen
22,107 PointsCannot 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
Full Stack JavaScript Techdegree Graduate 50,856 PointsHi Tuukka,
use this:
import static spark.Spark.*;
And you will have "before" and the other static Spark methods imported.
Kind Regards, Florian
tuukka uosukainen
22,107 Pointstuukka uosukainen
22,107 PointsThank you very much Florian!