I'm looking for a solution to the excessive verboseness of Java without using Groovy - Stack Overflow most recent 30 from stackoverflow.com2009-12-08T17:16:19Zhttp://stackoverflow.com/feeds/question/766629http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/766629/im-looking-for-a-solution-to-the-excessive-verboseness-of-java-without-using-gro5I'm looking for a solution to the excessive verboseness of Java without using GroovyHarry Quince2009-04-20T02:17:01Z2009-05-16T19:03:29Z
<p>I like how Groovy makes all of your instance variables and class variables public and writes getters and setters on your behalf. This saves a lot of unnecessary coding. On the other hand, my boss hates it, making me very sad :(</p>
<p>Is there a way to achieve the conciseness of Groovy in Java without having to use Groovy or some other framework/add-on? </p>
<p>I have a feeling the powers that be will not take kindly to the introduction of this foreign framework where I work. </p>
<p>So what I'm looking for is a solution to the excessive verboseness of Java without using Groovy or something like it. </p>
<p>Can it be done in Java alone - such as by simply making everything public?</p>
http://stackoverflow.com/questions/766629/im-looking-for-a-solution-to-the-excessive-verboseness-of-java-without-using-gro/766642#7666426Answer by Chris Dail for I'm looking for a solution to the excessive verboseness of Java without using GroovyChris Dail2009-04-20T02:25:43Z2009-04-20T02:25:43Z<p>The Java language is what it is. You won't find much to change the core language without moving to a new language (like groovy). Getting buy-in from management might not be as hard as you think to move to groovy. I was in a similar position as you a few years ago. You can start introducing groovy into a few areas of your software that make sense.</p>
<p>A great place to start is to start using it for unit testing. Essentially when you write a class in groovy, it compiles down to Java bytecode. As long as you have the groovy jars on your classpath, others may not even know it is groovy code. By using it for testing, you can demonstrate how it simplifies your code and makes things easier. You should be able to sell that to management.</p>
<p>From there, keep introducing it in other new areas where a dynamic language would save you some work. Groovy and Java mix very well together since they use the same set of core libraries.</p>
http://stackoverflow.com/questions/766629/im-looking-for-a-solution-to-the-excessive-verboseness-of-java-without-using-gro/766646#7666460Answer by Cogsy for I'm looking for a solution to the excessive verboseness of Java without using GroovyCogsy2009-04-20T02:26:40Z2009-04-20T02:26:40Z<p>I'm not aware of anything to make your source code smaller, apart from more effective frameworks for specific tasks (JPA, Swing, etc.).</p>
<p>That kind if functionality usually comes from your IDE.</p>
<p>I use Netbeans which has tools to write getters/setters, auto implement abstract methods and various other shortcuts. Of course the source code is still just as verbose.</p>
http://stackoverflow.com/questions/766629/im-looking-for-a-solution-to-the-excessive-verboseness-of-java-without-using-gro/766649#7666495Answer by coobird for I'm looking for a solution to the excessive verboseness of Java without using Groovycoobird2009-04-20T02:27:14Z2009-04-20T02:27:14Z<p>In this kind of situation, an IDE which can write the getters and setters for you can be your friend.</p>
<p>I find that having to write the getters and setters are the most repetitive and un-interesting part of writing new classes. With an IDE like <a href="http://www.eclipse.org/" rel="nofollow">Eclipse</a>, which can <a href="http://help.eclipse.org/stable/index.jsp?topic=/org.eclipse.jdt.doc.user/reference/ref-dialog-gettersetter.htm" rel="nofollow">automatically generate the getters and setters</a> for you, it can reduce the pain of writing the redundant code.</p>
<p>Of course, it won't alleviate the need to use the <code>getX</code> and <code>setX</code> methods, but at least it makes the implementation of the classes a little bit easier and less of a burden.</p>
http://stackoverflow.com/questions/766629/im-looking-for-a-solution-to-the-excessive-verboseness-of-java-without-using-gro/766664#7666642Answer by James Black for I'm looking for a solution to the excessive verboseness of Java without using GroovyJames Black2009-04-20T02:32:08Z2009-04-20T02:32:08Z<p>You could use AOP to help take out some of the verboseness.</p>
<p>For example, if you have a property:
string name;</p>
<p>You could then define:
@GetterSetter
public String Name(String name) { };</p>
<p>Then have an aspect that looks for the annotation, and put an around on it, so that any reading, which is when the parameter is null, or writing (parameter isn't null) is done then it will take the appropriate action.</p>
<p>This would be pretty easy to write, but then you have to get buy-in for AOP, which may be challenging.</p>
<p>But, as others mentioned, Eclipse and Netbeans will easily create the getters/setters, so if you don't have to do anything special with them then it should be pretty easy.</p>
<p>I tend to put my properties in their own class, which is just getters/setters, then I don't have to look at the verboseness, as well as equals and hash methods if needed, then in my other classes I just use that, and hide the boring extra coding.</p>
http://stackoverflow.com/questions/766629/im-looking-for-a-solution-to-the-excessive-verboseness-of-java-without-using-gro/766683#7666834Answer by Apocalisp for I'm looking for a solution to the excessive verboseness of Java without using GroovyApocalisp2009-04-20T02:39:26Z2009-04-20T02:39:26Z<p>Go with immutable datastructures. No getters, no setters, no hassle.</p>
<p>You may want to give <a href="http://functionaljava.org" rel="nofollow">Functional Java</a> a try. It's just a regular Java library, but comes with powerful abstractions and useful (immutable) datastructures that let you say more in less code. For example, translate this:</p>
<pre><code>List<String> s = new ArrayList<String>();
for (String x : xs) {
for (String y : ys) {
for (String z : zs) {
s.add(doSomething(x, y, z));
}
}
}
</code></pre>
<p>... to this:</p>
<pre><code>List<String> s = xs.bind(ys, zs, doSomething);
</code></pre>
http://stackoverflow.com/questions/766629/im-looking-for-a-solution-to-the-excessive-verboseness-of-java-without-using-gro/768558#7685580Answer by Scott Stanchfield for I'm looking for a solution to the excessive verboseness of Java without using GroovyScott Stanchfield2009-04-20T14:36:52Z2009-04-20T14:36:52Z<p>Try out my bean annotations : <a href="http://code.google.com/p/javadude/wiki/Annotations" rel="nofollow">http://code.google.com/p/javadude/wiki/Annotations</a></p>
<p>The annotation processor generates a superclass for you with lots of the typical boilerplate you'd normally have to write:</p>
<pre><code>@Bean(
properties={
@Property(name="name", bound=true),
@Property(name="age", type=int.class, bound=true)
}
)
public class Person extends PersonGen {
}
</code></pre>
http://stackoverflow.com/questions/766629/im-looking-for-a-solution-to-the-excessive-verboseness-of-java-without-using-gro/791799#7917990Answer by Jim Ferrans for I'm looking for a solution to the excessive verboseness of Java without using GroovyJim Ferrans2009-04-26T23:09:28Z2009-04-26T23:09:28Z<p>You can greatly increase Java's effective abstraction level by using domain-specific frameworks. For example, Restlet takes care of most of the boring details when you write RESTful web services. Or, if you need to map POJOs to and from XML or JSON, packages like XStream or JAXB automatically generate the mapping logic. To avoid tedious JDBC programming, try a persistence manager like iBatis or Hibernate. Templating systems like Freemarker and Velocity make it much easier to generate markup.</p>
<p>Even where there is no tool support, you can often find ways to factor out low level details into common methods and classes so that your top level code feels more abstract.</p>
<p>(You might consider asking your boss if you can evaluate Groovy in a supporting role on your project, for instance to write some of the unit tests.)</p>
http://stackoverflow.com/questions/766629/im-looking-for-a-solution-to-the-excessive-verboseness-of-java-without-using-gro/873067#8730670Answer by Allen for I'm looking for a solution to the excessive verboseness of Java without using GroovyAllen2009-05-16T19:03:29Z2009-05-16T19:03:29Z<p>You can label any property or method with any of the standard access modifiers or type declarations in Groovy. </p>
<p>Remember, Groovy is a superset of Java.</p>