I'm looking for SASS implementation in Java (could be used with JSP/JSF). For Python I've found CleverCSS, but there is nothing for Java. Anyone heard something about this sort of tool for generating CSS?

link|improve this question
feedback

9 Answers

Yes you can! Via an ant build script:

  1. Download JRuby complete jar file (JRuby Complete jar download page)
  2. Download the latest HAML/SASS code (HAML/SASS tarball), and extract it.
  3. Add the following to an ant build file.
  4. Run the ant script, and the sass or scss files will be compiled!

<path id="JRuby">
    <fileset file="libs/jruby-complete-1.5.6.jar"/> <!-- Location of JRuby jar file -->
</path>  

<target name="compileSCSS">
    <echo message="Compiling scss files..." />
    <property name="scss" value="${dir.css}/scss/**/[^_]*.scss" />
    <property name="scss.build" value="/${dir.css}/${dir.css.build}" />
    <script language="ruby" classpathref="JRuby">
        <![CDATA[
            require 'libs/sass/lib/haml'
            require 'haml/exec'

            files = Dir.glob($project.getProperty('scss'))
            Dir.mkdir($project.getProperty('scss.build')) unless File.exists?($project.getProperty('scss.build'))
            files.each do 
                | file |
                opts = Haml::Exec::Sass.new([file, File.join($project.getProperty('scss.build'), File.basename(file, ".*") + ".css")])
                opts.parse
            end
        ]]>
    </script>
    <echo message="Done compiling scss files!" />
</target>

UPDATE:

Newer versions of the HAML/SASS code are not working anymore. I use version 3.0.24. For version 3.1, use the following Ruby script instead:

            require 'sass'
            require 'sass/exec'

            files = Dir.glob($project.getProperty('scss'))
            Dir.mkdir($project.getProperty('scss.build')) unless File.exists?($project.getProperty('scss.build'))
            files.each do 
                | file |
                opts = Sass::Exec::Sass.new([file, File.join($project.getProperty('scss.build'), File.basename(file, ".*") + ".css")])
                opts.parse
            end

UPDATE MAVEN:

Maven can also do this: Using the antrun plugin:

<project>
<build>
<plugins>
<plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-antrun-plugin</artifactId>
    <version>1.6</version>
    <executions>
        <execution>
            <id>compileAndMinify</id>
            <phase>compile</phase>
            <goals>
                <goal>run</goal>
            </goals>
            <configuration>
                <target>
                    <mkdir dir="${project.build.directory}/compiled" />

                    <echo message="Compiling scss files..."/>
                    <path id="JRuby">
                        <fileset file="${basedir}/jars/jruby-complete-1.5.6.jar"/>
                    </path>
                    <property name="filesIn" value="${project.build.directory}/css/**/[^_]*.scss" />
                    <property name="fileOutDir" value="${project.build.directory}/compiled/css" />
                    <script language="ruby" classpathref="JRuby">
                        <![CDATA[
                            require 'libs/sass/lib/haml'
                            require 'haml/exec'

                            files = Dir.glob($project.getProperty('filesIn'))
                            Dir.mkdir($project.getProperty('fileOutDir')) unless File.exists?($project.getProperty('fileOutDir'))
                            files.each do 
                                | file |
                                puts "     [sass compiler] " + file + " -> " + $project.getProperty('fileOutDir') + "/" + File.basename(file, ".*") + ".css"
                                opts = Haml::Exec::Sass.new([file, File.join($project.getProperty('fileOutDir'), File.basename(file, ".*") + ".css")])
                                opts.parse
                            end
                        ]]>
                    </script>
                </target>
            <configuration>
        </execution>
    <executions>
</plugin>
</plugins>
</build>
</project>  
link|improve this answer
Is it also possible via Maven? – Jeremy S. Nov 10 '11 at 14:32
I updated the answer – Joepie Dec 7 '11 at 10:40
Where do you extract the haml/sass archive? Do I need to put it in the gemfiles for JRuby or can I reference them directly somehow? That is, without using the JRuby installer, just the jar. Thanks! – Alex Ciminian May 8 at 13:15
The first require "require 'libs/sass/lib/haml'" is the path relative to your project folder. – Joepie May 9 at 9:03
This means I exrtacted it in the libs/sass directory in my project folder – Joepie May 9 at 9:09
feedback

There is one project: http://code.google.com/p/jsass/ (but it's in a very early stage).

If you are interested in Less, there is a ready-to-use Java version for it: http://www.asual.com/lesscss/

link|improve this answer
Im only saying this in the interest of more info is good, the project above uses rhino to run a javascript file. – mP. May 2 at 7:23
feedback

I personally find SASS syntax deeply, horribly annoying. For Ruby / Python crowd it may come as second nature; for me as Java guy - not so much. I strongly prefer LESS which builds upon CSS syntax instead of coming up with a new one. That has a nice added advantage of being able to use your existing CSS files "as is" and incorporate LESS features as needed.

That said, neither SASS nor LESS have java ports as far as I know. Both are ruby-based, however, so you can install them under JRuby. The only issue with that approach is JRuby is mind-numbingly slow to start up. It's not a huge deal, though, because you're likely going to use file monitoring in development (and once it does startup it runs very smooth) and you're not going to care as much that your build takes few seconds longer during deployment.

There are also some PHP-based implementations like LessPhp, xCSS and others. Haven't tried them personally, though.

link|improve this answer
2  
Sass syntax has been toned down: It's now much like CSS without the brackets. The upcoming version of Sass will allow optional brackets. One advantage of Sass is that the compiler and tools are far more mature than the Less counterparts. IntelliJ 9 supports Sass (Install the Ruby plugin to get it). We switched from Less to Sass primarily for the editor support. I now like it more than Less (the parent reference '&' is invaluable) The css2sass tool makes it very easy to convert css files - it will also nest selectors where possible. We converted a large project and have not had any issues. – jomohke Dec 22 '09 at 23:50
I hate sass syntax too. It's supposedly easier to view, but braces make it easier for me. – Juan Mendes Dec 15 '10 at 17:17
4  
Btw, there is now the SCSS syntax which uses braces. – Debilski Jan 11 '11 at 19:04
feedback

ZUSS is a good alternative to LESS and SASS. It is similar to LESS. Unlike LESS and SASS, the processing of the ZUSS files doesn't require the JavaScript interpreter.

Disclaimer: I am the developer of ZUSS. I developed it simply because I can't find a neat solution for Java.

link|improve this answer
IMO, Zuss is the best fit for Java environment, such as Java method invocation, variable resolver and resource locator. – Mo. Nov 15 '11 at 1:07
Wow, nice solution. I will consider this for future java projects! Really nice. Do you have some more information about caching when using the servlet? The documentation isn't clear about that... How fast is the compile step when using the servlet? – Joepie Dec 19 '11 at 11:04
The default servlet doesn't provide any cache. If you like, please extend it. – tomyeh Mar 30 at 9:19
feedback

You can also take a look to Web Resource Optimizer 4 J which allows a lots a things (minification, resource merging) and supports Less CSS (at runtime as far as I know).

This means: you add wro4j filter to your web.xml and when you ask for a CSS, your .scss (or .saas) files are compiled to standard CSS.

I have not used it yet, but it seems more advanced than other products listed here.


In fact, I was reading comments on the Less for Java website (http://www.asual.com/lesscss/) and WRO4J uses this library to provide it's "on the fly Less compilation". So I think Less for Java is the way to go.

link|improve this answer
feedback

Given that SASS has to be converted to CSS to be usable, what is wrong with using sass2css that distributes with Ruby SASS?

link|improve this answer
feedback

You can try this filter I just put together - https://github.com/darrinholst/sass-java

link|improve this answer
feedback

I know I'm late to the party, but this is the approach I took to using SASS in a Java project with an Ant build: http://workingonthecoolstuff.blogspot.com/2011/02/using-sass-in-ant-build.html I'm doing the build on a machine with Ruby and Sass installed so it was as easy as calling the sass command/application using the Ant "apply" task with a fileset that gets all the SCSS/SASS files.

link|improve this answer
feedback

I am using Compass & Sass in my eclipse project using Ant.

I followed this tutorial here:

http://caueguerra.com/tutorial-using-sass-in-a-java-project

Compass extends Sass and allows for my other extras.

http://compass-style.org/

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.