Difference between revisions of "HowTo:Create a JSP Page and Java Controller"
From AgileApps Support Wiki
imported>Aeric |
imported>Aeric |
||
Line 6: | Line 6: | ||
:*Do a SQL search for (one or more) records | :*Do a SQL search for (one or more) records | ||
:*Update records | :*Update records | ||
{{#if: {{ | {{#if: {{ShowWhitepapers}} | | ||
''Learn more:'' | ''Learn more:'' | ||
:* [{{DOCHOST}}/training/LongJump%20Development%20101 | :* [{{DOCHOST}}/training/LongJump%20Development%20101.pdf LongJump Development 101 training slides] | ||
}} | }} | ||
==Prerequisites== | ==Prerequisites== |
Revision as of 00:00, 3 August 2012
For: Developers See more: |
Overview
In this guide, you create a JSP Page and a Controller Class that interact to:
- Add records to a Mailing List object
- Do a SQL search for (one or more) records
- Update records
Prerequisites
- A "Mailing List" object must created, with two fields: contact_name and contact_email
Developing the Application
Create the Java class
- Follow the instructions at Add a Class
- Copy and paste the contents of AddUpdateController.java into the Class
- Save the class
Create the JSP Page
- Follow the instructions at Add a Page to create AddUpdate.jsp
- Copy and paste the contents of AddUpdate.jsp
- Save the JSP page
Try it Out
To test the project, visit the following URL:
- https://{yourDomain}/networking/pages/AddUpdate.jsp
(A valid username and password is required to log in to the platform.)