1. What is custom method?
You can create custom method and attach it to defined model or view. Using this elements, you can connect defined xml to JAVA code.
To create custom method first you must create service, then implement one or more custom methods. Then you insert reference to created method in xml files.
2. Create custom methods service
Custom methods service is basicly normal JAVA class. Only additional element is Spring 'Service' annotation.
import org.springframework.stereotype.Service; @Service public class ClassName { // CLASS BODY }
TODO
1
2
3
4
5
6
3. custom methods
3.1. Custom validators
TODO
1
2
3
4
5
6
2.2. Model hooks
TODO
1
2
3
4
5
6
2.3. View hooks
TODO
1
2
3
4
5
6
2.4. View listeners
TODO
1
2
3
4
5
6
3. Example
TODO