Differenze
Queste sono le differenze tra la revisione selezionata e la versione attuale della pagina.
Entrambe le parti precedenti la revisione Revisione precedente Prossima revisione | Revisione precedente | ||
custom:development_creazione_di_un_plugin_per_geoweb [2022/05/11 11:39] francesco.rosati |
custom:development_creazione_di_un_plugin_per_geoweb [2022/05/11 11:49] (versione attuale) francesco.rosati |
||
---|---|---|---|
Linea 80: | Linea 80: | ||
Dato che probabilmente il plugin è un maven module di progetto maven geowebframework, le librerie che stanno anche nel modulo principale possono anche importate omettendo la versione. | Dato che probabilmente il plugin è un maven module di progetto maven geowebframework, le librerie che stanno anche nel modulo principale possono anche importate omettendo la versione. | ||
<code xml> | <code xml> | ||
- | <?xml version="1.0"?> | + | <?xml version="1.0"?> |
- | <project | + | <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" |
- | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" | + | xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> |
- | xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> | + | |
<modelVersion>4.0.0</modelVersion> | <modelVersion>4.0.0</modelVersion> | ||
Linea 98: | Linea 97: | ||
<properties> | <properties> | ||
- | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | + | <maven.compiler.source>8</maven.compiler.source> |
+ | <maven.compiler.target>8</maven.compiler.target> | ||
+ | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | ||
</properties> | </properties> | ||
<dependencies> | <dependencies> | ||
+ | <!-- geoweb dependencies --> | ||
<dependency> | <dependency> | ||
<groupId>com.geowebframework</groupId> | <groupId>com.geowebframework</groupId> | ||
Linea 116: | Linea 118: | ||
<artifactId>transfer-objects</artifactId> | <artifactId>transfer-objects</artifactId> | ||
<version>${project.parent.version}</version> | <version>${project.parent.version}</version> | ||
- | </dependency> | + | </dependency> |
+ | <!-- geoweb dependencies --> | ||
+ | | ||
<dependency> | <dependency> | ||
<groupId>org.slf4j</groupId> | <groupId>org.slf4j</groupId> | ||
<artifactId>slf4j-log4j12</artifactId> <!-- NO NEED TO SPECIFY <version>1.7.7</version> --> | <artifactId>slf4j-log4j12</artifactId> <!-- NO NEED TO SPECIFY <version>1.7.7</version> --> | ||
- | </dependency> | + | </dependency> |
- | </dependencies> | + | </dependencies> |
- | </project> | + | </project> |
</code> | </code> | ||
=====3. InitializerService===== | =====3. InitializerService===== | ||
Linea 132: | Linea 136: | ||
Questa è la struttura tipica della classe. | Questa è la struttura tipica della classe. | ||
<code java> | <code java> | ||
- | public class GwPluginInitializerService { | + | public class GwPluginInitializerService { |
- | private final static Logger log = Logger.getLogger(GwPluginInitializerService.class); | + | private final static Logger log = Logger.getLogger(GwPluginInitializerService.class); |
- | @Autowired private GwRegistry gwRegistry; | + | @Autowired private GwRegistry gwRegistry; |
| | ||
- | public GwPluginInitializerService(){ | + | public GwPluginInitializerService(){ |
- | super(); | + | super(); |
- | } | + | } |
| | ||
- | @PostConstruct | + | @PostConstruct |
- | public void init(){ | + | public void init(){ |
- | //registering widgets | + | //registering widgets |
- | ... | + | ... |
- | //registering leafItem | + | //registering leafItem |
- | ... | + | ... |
- | //mapping plugin js resources | + | //mapping plugin js resources |
- | ... | + | ... |
- | //mapping plugin css resources | + | //mapping plugin css resources |
- | ... | + | ... |
- | } | + | } |
- | } | + | } |
</code> | </code> | ||
Il bean della classe viene creato in avvio, e l'annotazione //@PostConstruct// causa l'esecuzione del metodo init() non appena tutti i bean dipendenti sono pronti ed istanziati. | Il bean della classe viene creato in avvio, e l'annotazione //@PostConstruct// causa l'esecuzione del metodo init() non appena tutti i bean dipendenti sono pronti ed istanziati. |