Wiki source code of Java Client-Building
Version 20.1 by David Avendasora on 2008/01/14 10:33
Hide last authors
author | version | line-number | content |
---|---|---|---|
![]() |
19.1 | 1 | Your deployed application must have a jar of all the client-side classes (and any subclasses of EOGenericRecord that your client-classes extend) in the Project.woa/Contents/WebServerResources/Java/ directory. If you don't include you client-side classes in this directory, WebObjects silently uses EOGenericRecord instead. This is made obvious by things like default values and client-side validation missing in the deployed application. |
![]() |
13.1 | 2 | |
![]() |
19.1 | 3 | The following are the instructions when using Ant to build: |
![]() |
13.1 | 4 | |
![]() |
19.1 | 5 | 1. Add the following "javaclient" target to your build.xml file. |
![]() |
13.1 | 6 | |
7 | {{code}} | ||
8 | |||
9 | <target name="javaclient"> | ||
![]() |
15.1 | 10 | <mkdir dir="${dest.dir}/${project.name}.woa/Contents/WebServerResources/Java"/> |
11 | <jar basedir="${classes.dir}" includes="**/client/**/*.class,**/common/**/*.class" | ||
12 | jarfile="${dest.dir}/${project.name}.woa/Contents/WebServerResources/Java/${project.name}.jar"> | ||
13 | </jar> | ||
![]() |
13.1 | 14 | </target> |
15 | |||
16 | {{/code}} | ||
17 | |||
![]() |
19.1 | 18 | 1. Make the "build" and "install" targets depend upon "javaclient" just prior to the "ssdd" target. |
![]() |
13.1 | 19 | |
20 | {{code}} | ||
21 | |||
22 | <target name="build" depends="setProps,init.build,build.woapp,javaclient,ssdd,war" /> | ||
23 | |||
![]() |
19.1 | 24 | {{/code}} |
25 | |||
26 | {{code}} | ||
![]() |
17.1 | 27 | <target name="install" depends="setProps,init.install,build.woapp,javaclient,ssdd,war" /> |
![]() |
13.1 | 28 | {{/code}} |