facebook

How to STOP automatically updating Sring DSL form source

  1. MyEclipse IDE
  2.  > 
  3. Spring Development
Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #316617 Reply

    Peter
    Member

    When I create a new class it automatically updates DSL. How do i get it not to generate any Spring DSL files and just leave the class as it is?[/list]

    #316692 Reply

    cconway
    Member

    Hi Peter,

    You can instruct the reverse engineering to ignore a class or method by adding the @AuxiliaryModelComponent annotation to a comment block above the class or method. For example, to ignore a whole class:

    /**
    * @AuxiliaryModelComponent
    */

    @Service
    (“MyService”)
    public class MyService implements IMyService {
    }

    If you add the annotation prior to saving the class the first time, it should remain untouched by the DSL.

    Please let me know if this helps,

    Cindy

Viewing 2 posts - 1 through 2 (of 2 total)
Reply To: How to STOP automatically updating Sring DSL form source

You must be logged in to post in the forum log in