File tree Expand file tree Collapse file tree 4 files changed +16
-6
lines changed
src/main/java/com/aspose/gridjs/demo Expand file tree Collapse file tree 4 files changed +16
-6
lines changed Original file line number Diff line number Diff line change 5151 <dependency >
5252 <groupId >com.aspose</groupId >
5353 <artifactId >aspose-cells</artifactId >
54- <version >25.4 </version >
54+ <version >25.5 </version >
5555 </dependency >
5656 <dependency >
5757 <groupId >com.aspose</groupId >
5858 <artifactId >aspose-cells</artifactId >
59- <version >25.4 </version >
59+ <version >25.5 </version >
6060 <classifier >gridjs</classifier >
6161 </dependency >
6262 <!-- <dependency>
Original file line number Diff line number Diff line change 22
33import org .springframework .beans .factory .annotation .Value ;
44import org .springframework .context .annotation .Bean ;
5+ import org .springframework .context .annotation .ComponentScan ;
56import org .springframework .context .annotation .Configuration ;
67
78import com .aspose .gridjs .GridJsOptions ;
89import com .aspose .gridjs .GridJsService ;
10+ import com .aspose .gridjs .GridJsWorkbook ;
911import com .aspose .gridjs .IGridJsService ;
1012
1113@ Configuration
@@ -17,6 +19,13 @@ public class MyConfig {
1719 @ Value ("${testconfig.AsposeLicensePath}" )
1820 public String asposeLicensePath ;
1921
22+
23+ @ Bean
24+ public GridJsWorkbook gridJsWorkbook () {
25+ return new GridJsWorkbook ();
26+ }
27+
28+
2029 @ Bean
2130 public GridJsOptions gridJsOptions () {
2231 GridJsOptions options =new GridJsOptions ();
@@ -25,7 +34,8 @@ public GridJsOptions gridJsOptions() {
2534 }
2635
2736 @ Bean
28- public IGridJsService gridJsService (GridJsOptions gridJsOptions ) throws Exception {
29- return new GridJsService (gridJsOptions );
37+ public IGridJsService gridJsService (GridJsOptions gridJsOptions ,
38+ GridJsWorkbook wbj ) throws Exception {
39+ return new GridJsService (gridJsOptions ,wbj );
3040 }
3141}
Original file line number Diff line number Diff line change 3939 <dependency >
4040 <groupId >com.aspose</groupId >
4141 <artifactId >aspose-cells</artifactId >
42- <version >25.4 </version >
42+ <version >25.5 </version >
4343 <classifier >gridweb-jakarta</classifier >
4444 </dependency >
4545 </dependencies >
Original file line number Diff line number Diff line change 5959 <dependency >
6060 <groupId >com.aspose</groupId >
6161 <artifactId >aspose-cells</artifactId >
62- <version >25.4 </version >
62+ <version >25.5 </version >
6363 <classifier >gridweb</classifier >
6464 </dependency >
6565 <!-- <dependency>
You can’t perform that action at this time.
0 commit comments