Tagged Questions
The stereotype tag has no wiki summary.
6
votes
3answers
2k views
How do you use stereotype annotations in Spring 2.5.x?
When moving to Spring 2.5.x I found that it adds more stereotype annotations (on top of @Repository from 2.0): @Component, @Service and @Controller. How do you use them? Do you rely on implicit Spring ...
4
votes
3answers
2k views
What's the difference between a stereotype and a class inheritance in UML?
I'm confused about the difference between something being a "stereotype" and being a "superclass" in UML.
Let's say I want to create a diagram involving a "WidgetMaker." WidgetMaker is clearly an ...
2
votes
1answer
223 views
What's the difference between declaring a controller with the Spring Controller stereotype versus as a subclass of the AbstractController?
What's the difference between declaring the TestController with the Spring Controller stereotype like this:
import org.springframework.stereotype.Controller;
//...
@Controller
...
1
vote
1answer
39 views
Spring stereotype doesn't appear to work (bean can't be found)
I have an XML configuration as follows:
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
...
1
vote
1answer
73 views
How to get a IStereotype reference in a T4 Template?
Is there a way to get a reference to Microsoft.VisualStudio.Uml.Profiles.IStereotype interface in a t4 template? I mean IStereotype that stores the definition of the UML stereotype, and not ...
0
votes
3answers
908 views
How to create and apply a UML2 stereo-type using EMF in a standalone app?
I have written the sample application below to create an EJB stereotype an apply it to the TimeEntry class:
import java.io.File;
import org.eclipse.emf.common.util.URI;
import ...
0
votes
1answer
160 views
Should I create multiple services (using the Spring `@Service` stereotype) to do database lookups for different controllers?
I'm not sure where to do database lookups for Spring controllers.
It seems to make sense to use the Spring @Service stereotype and create multiple "services" to provide lookup support to controllers ...