Arguments Against Annotations

前端 未结 12 1750
北海茫月
北海茫月 2020-12-23 13:48

My team is moving to Spring 3.0 and there are some people who want to start moving everything into Annotations. I just get a really bad feeling in my gut (code smell?) when

相关标签:
12条回答
  • 2020-12-23 14:05

    Annotations have to be used sparingly. They are good for some but not for all. At least the xml configuration approach keeps the config in one file (or multiple) instead of spread all over the place. That would introduce (as I like to call it) crappy code organization. You will never see the full picture of the configuration if it is spread across hundreds of files.

    0 讨论(0)
  • 2020-12-23 14:11

    Annotations are plain bad in my experience:

    • Inability to enforce type safety in annotations
    • Serialization issues
    • Cross compiling (to for instance javascript) can be an issue.
    • Libraries/frameworks requiring annotations exclude non-annotated classes from external libraries.
    • not overridable or interchangeable
    • your projects eventually becomes strongly dependant on the system that requires the annotations

    If Java would have something like "method literals" you could annotate a class in a corresponding annotation class. Something like as following: Take for instance javax.persistence, and the following annotated class:

    @Entity
    class Person
    {
        @Column
        private String firstname;
        public String getFirstname() { return firstname; }
        public void setFirstname(String value) { firstname = value; }
    
        @Column
        private String surname;
        public String getSurname() { return surname; }
        public void setSurname(String value) { surname = value; }
    
    }
    

    Instead of the annotations, I'd suggest a mapping class like:

    class PersonEntity extends Entity<Person> {
        @Override
        public Class<Person> getEntityClass() { return Person.class;}
    
        @Override
        public Collection<PersistentProperty> getPersistentProperties() {
             LinkedList<PersistentProperty> result = new LinkedList<>();
             result.add(new PersistentProperty<Person>(Person#getFirstname, Person#setFirstname);
             result.add(new PersistentProperty<Person>(Person#getSurname, Person#setSurname);
             return result;
        }
    }
    

    The fictional "#" sign in this pseudo java code represents a method literal, which, when invoked on an instance of the given class, invokes the corresponding delegate (signed with "::" since java 8) of that instance. The "PersistentProperty" class should be able to enforce the method literals to be referring to the given generic argument, in this case the class Person.

    This way, you have more benefits than annotations can deliver (like subclassing your 'annotate'-class) and you have none of the aforementioned cons. You can have more domain-specific approaches too. The only pre annotations have over this, is that with annotations you can quickly see whether you have forgotten to include a property/method. But this too can be handled more concise and more correct with better metadata support in Java (think for instance of something like required/optional like in Protocolbuffers)

    0 讨论(0)
  • 2020-12-23 14:15

    Check these answers to similar questions

    What are the Pros/Cons of Annotations (non-compiler) compared to xml config files

    Xml configuration versus Annotation based configuration

    Basically it boils down to: Use both. Both of them have there usecases. Don't use annotations for things which should remain configurable without recompiling everything (especially things which maybe your user should be able to configure without needing you to recompile all)

    0 讨论(0)
  • 2020-12-23 14:15

    Annotations often introduce dependencies where such dependencies do not belong.

    I have a class which happens by coincidence to have properties which resemble the attributes from a table in an RDBMS schema. The class was created with this mapping in mind. There is clearly a relationship between the class and the table but I am happy to keep the class free from any metadata declaring that relationship. Is it right that this class makes a reference to a table and its columns in a completely different system? I certainly don't object to external metadata that associates the two and leaves each free of an understanding of the other. What did I gain? It is not as if metadata in the source code provides type safety or mapping conformance. Any verification tool that could analyze JPA annotations could equally well analyze hibernate mapping files. Annotations did not help.

    At one contract, I had created a maven module with a package of implementations of interfaces from an existing package. It is unfortunate that this new package was one of many directories within a monolithic build; I saw it as something separate from the other code. Nonetheless, the team was using classpath scanning so I had to use annotations in order to get my component wired into the system. Here I did not desire centralized configuration; I simply wanted external configuration. XML configuration was not perfect because it conflated dependency wiring with component instantiation. Given that Rod Johnson didn't believe in component based development, this was fair. Nonetheless, I felt once again that annotations did not help me.

    Let's contrast this with something that doesn't bother me: TestNG and JUnit tests. I use annotations here because I write this test knowing that I am using either TestNG or JUnit. If I replace one for the other, I understand that I will have to perform a costly transition that will stray close to a rewrite of the tests.

    For whatever reason, I accept that TestNG, JUnit, QUnit, unittest, and NUnit owns my test classes. Under no circumstances does either JPA or Hibernate own those domain classes which happen to get mapped to tables. Under no circumstances does Spring own my services. I control my logical and physical packaging in order to isolate units which depend upon either. I want to ensure that a move away from one doesn't leave me crippled because of all the dependencies it left behind. Saying goodbye is always easier than leaving. At some point, leaving is necessary.

    0 讨论(0)
  • 2020-12-23 14:15

    It's 2018 and this point is still relevant.

    My biggest problem with annotations is that you don't have an idea what the annotations are doing. You're cutting some caller code off and hiding it somewhere disconnected from the callee.

    Annotations were introduced to make the language more declarative and less programmatic. But if you're moving the majority of the functionality to annotations, you are effectively switching your code to a different language (and not a very good one at that). There's very little compile-time checking. This article makes the same point: https://blog.softwaremill.com/the-case-against-annotations-4b2fb170ed67

    The whole heuristic of "move everything to configuration so that people don't have to learn how to code" has gotten out of control. Engineering managers aren't thinking.

    Exceptions:

    • JUnit
    • JAX-RS
    0 讨论(0)
  • 2020-12-23 14:16

    I think annotations are good if they are used with measure. Annotations like @WebService do a lot of work at deployment and run time, but they don't interfere in the class. @Cachexxx or @Transactional clearly interfere by creating proxies and a lot of artifacts, but I think they are under control.

    Thing begin to mess when using Hibernate or JPA with annotations and CDI. Annotations grow a lot.

    IMO @Service and @Repository are interferences of Spring in your application code. They make your application Spring dependant and only for Spring use.

    The case of Spring Data Graph is another story. @NodeEntity, for instance, add methods to the class at build time to save the domain object. Unless you have Eclipse and Spring plugin you will errors because those methods don't exist in source code.

    Configuration near the object has its benefits, but also a single configuration point. Annotations are good with measure, but they aren't good for everything, and definitively bad when there are as much annotation lines as source code lines.

    I think the path Spring is going is wrong; mainly because in some cases there is no other way to do such funny things. It's is as if Spring wants to do xtreme coding, and at the same time they lock developers into Spring framework. Probably Java language needs another way to do some things.

    0 讨论(0)
提交回复
热议问题