qodeninja
qodeninja

Reputation: 11296

How can I use a JSP to create a dynamic Javascript file?

I'm using a Jboss5/Spring/Struts implementation, and I'm not familiar enough with JSP technology to know how to do this. Is this even possible?

Upvotes: 2

Views: 2885

Answers (1)

Quentin
Quentin

Reputation: 944446

You need to set the correct content-type

<%@ page contentType="text/javascript" %>

… but other than that, JavaScript (like HTML) is just text.

Upvotes: 5

Related Questions