Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "Scout/Tutorial/3.7/Project From Existing Workspace"

< Scout‎ | Tutorial‎ | 3.7
m (Download the modified DerbyDb)
(14 intermediate revisions by 6 users not shown)
Line 1: Line 1:
=The minicrmTutorial Project Workspace=
+
{{ScoutPage|cat=Tutorial 3.7}}
This project contains a PersonTablePage with different menus, ProcessServices and other fancy stuff. It should help you to get an overview about what you can do easily with Scout and try out a couple of things without first creating your own project. Feel free to ask questions or request new features on the [http://www.eclipse.org/forums/eclipse.scout Scout Forum]!
+
  
==Download the Workspace==
+
==The minicrm sample application==
Unzip this file to where you have set up your other workspaces: [[Media:TutorialMiniCrmWorkspace.zip|TutorialMiniCrmWorkspace]]
+
[[Image:Reference_Workspace_Gui.png|thumb|Screenshot of the application]]
  
==Download the modified DerbyDb==
+
This project corresponds to the [[{{BASEPAGENAME}}/Minicrm Step-by-Step|first tutorial]] and contains a PersonTablePage with different menus, ProcessServices and other fancy stuff. It should help you to get an overview about what you can do easily with Scout and try out a couple of things without first creating your own project. Feel free to ask questions or request new features on the [http://www.eclipse.org/forums/eclipse.scout Scout Forum]!
 +
 
 +
===Download the sample application===
 +
Unzip this file and import the eclipse projects into your workspace: [[Media:TutorialMiniCrmWorkspace.zip|TutorialMiniCrmWorkspace]]
 +
 
 +
===Download the modified DerbyDb===
 
Unzip this file to the top C drive and rename it to DerbyDb: [[Media:TutorialMiniCrmWorkspaceDerbyDB.zip|TutorialMiniCrmWorkspaceDerbyDB]]<br/>
 
Unzip this file to the top C drive and rename it to DerbyDb: [[Media:TutorialMiniCrmWorkspaceDerbyDB.zip|TutorialMiniCrmWorkspaceDerbyDB]]<br/>
Please note: If you dont unzip this file to C:\DerbyDb you have to manually modify the ''DerbySqlService'' and specify the correct path to your DB.
+
Please note: If you do not unzip this file to <code>C:\DerbyDb</code> you have to manually modify the <code>DerbySqlService</code> (in the <code>org.eclipse.scout.samples.minicrm.server.services.common.sql</code> package) and specify the correct path to your DB.
 +
 
 +
Modify returned String of the overrided method:
 +
 
 +
  @Override
 +
  protected String getConfiguredJdbcMappingName(){
 +
    return "jdbc:derby:C:\\DerbyDb";
 +
  }
 +
 
 +
===Start the application===
 +
Use the {{ScoutLink|SDK|Perspective|Scout Perspective}} to start the application.

Revision as of 05:25, 13 April 2012

The Scout documentation has been moved to https://eclipsescout.github.io/.

The minicrm sample application

Screenshot of the application

This project corresponds to the first tutorial and contains a PersonTablePage with different menus, ProcessServices and other fancy stuff. It should help you to get an overview about what you can do easily with Scout and try out a couple of things without first creating your own project. Feel free to ask questions or request new features on the Scout Forum!

Download the sample application

Unzip this file and import the eclipse projects into your workspace: TutorialMiniCrmWorkspace

Download the modified DerbyDb

Unzip this file to the top C drive and rename it to DerbyDb: TutorialMiniCrmWorkspaceDerbyDB
Please note: If you do not unzip this file to C:\DerbyDb you have to manually modify the DerbySqlService (in the org.eclipse.scout.samples.minicrm.server.services.common.sql package) and specify the correct path to your DB.

Modify returned String of the overrided method:

 @Override
 protected String getConfiguredJdbcMappingName(){
   return "jdbc:derby:C:\\DerbyDb";
 }

Start the application

Use the The Scout documentation has been moved to https://eclipsescout.github.io/. to start the application.

Back to the top