Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
594 views
in Technique[技术] by (71.8m points)

java - Is it possible to use JSP/JSTL to generate dynamic css/javascript files?

If so how do you do this?

(jboss/tomact embedded/jdk 1.5)

not embedded js/css but an actual file...

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Sure you can. Only thing you need to do is to set the appropriate content type.

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

or

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

Take care with the fact that some webbrowsers might be picky on the file extension used in the actual request URL. I have never tried it as I normally would use a Servlet for those purposes, but I won't be surprised if especially MSIE won't eat that.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...