Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion 1-creating-a-basic-app/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ For a complete step-by-step guide to building this app, see the **[webforJ Tutor
To run the app, ensure the following tools are installed:

- Java 21 or higher
- BBj 26.01 when running with local BBjServices
- BBj 26.02 when running with local BBjServices
- Maven
- A Java IDE (e.g., IntelliJ IDEA, Eclipse, VSCode)
- Web browser
Expand Down
37 changes: 7 additions & 30 deletions 1-creating-a-basic-app/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>4.0.7</version>
<version>4.0.8</version>
<relativePath/>
</parent>
<groupId>com.webforj.tutorial</groupId>
Expand All @@ -14,7 +14,7 @@
<name>CustomerApplication</name>
<properties>
<java.version>21</java.version>
<webforj.version>26.01</webforj.version>
<webforj.version>26.02</webforj.version>
<maven.compiler.target>21</maven.compiler.target>
<maven.compiler.source>21</maven.compiler.source>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand All @@ -39,16 +39,6 @@
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-validation</artifactId>
</dependency>
<dependency>
<groupId>com.webforj</groupId>
<artifactId>webforj-spring-devtools</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
Expand All @@ -75,6 +65,11 @@
<artifactId>webforj-maven-plugin</artifactId>
<version>${webforj.version}</version>
<extensions>true</extensions>
<configuration>
<hotswap>
<hotswapAgent />
</hotswap>
</configuration>
</plugin>
<plugin>
<groupId>org.springframework.boot</groupId>
Expand All @@ -85,7 +80,6 @@
</plugin>
<plugin>
<artifactId>maven-failsafe-plugin</artifactId>
<version>3.5.6</version>
<executions>
<execution>
<goals>
Expand All @@ -104,23 +98,6 @@
<profile>
<id>prod</id>
<activation />
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<excludeDevtools>true</excludeDevtools>
<excludes>
<exclude>
<groupId>com.webforj</groupId>
<artifactId>webforj-spring-devtools</artifactId>
</exclude>
</excludes>
</configuration>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>dev</id>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ server.shutdown=immediate
server.port=8080

# webforJ DevTools configuration
spring.devtools.livereload.enabled=false
webforj.devtools.livereload.enabled=true
webforj.devtools.livereload.static-resources-enabled=true
webforj.devtools.browser.open=true
webforj.debug=true
webforj.devtools.craftforj.enabled=true
webforj.entry = com.webforj.tutorial.Application

# H2 Database configuration
Expand All @@ -25,4 +25,4 @@ webforj.entry = com.webforj.tutorial.Application

# H2 Console (optional - for development)
# spring.h2.console.enabled=true
# spring.h2.console.path=/h2-console
# spring.h2.console.path=/h2-console
2 changes: 1 addition & 1 deletion 1-creating-a-basic-app/src/main/resources/banner.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
\ V V / __/ | |_) | _| (_) | | _| |
\_/\_/ \___| |_.__/|_| \___/|_| |___|

:: webforJ (26.01) ::
:: webforJ (26.02) ::
2 changes: 1 addition & 1 deletion 2-working-with-data/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ For a complete step-by-step guide to building this app, see the **[webforJ Tutor
To run the app, ensure the following tools are installed:

- Java 21 or higher
- BBj 26.01 when running with local BBjServices
- BBj 26.02 when running with local BBjServices
- Maven
- A Java IDE (e.g., IntelliJ IDEA, Eclipse, VSCode)
- Web browser
Expand Down
37 changes: 7 additions & 30 deletions 2-working-with-data/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>4.0.7</version>
<version>4.0.8</version>
<relativePath/>
</parent>
<groupId>com.webforj.tutorial</groupId>
Expand All @@ -14,7 +14,7 @@
<name>CustomerApplication</name>
<properties>
<java.version>21</java.version>
<webforj.version>26.01</webforj.version>
<webforj.version>26.02</webforj.version>
<maven.compiler.target>21</maven.compiler.target>
<maven.compiler.source>21</maven.compiler.source>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand Down Expand Up @@ -43,16 +43,6 @@
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-validation</artifactId>
</dependency>
<dependency>
<groupId>com.webforj</groupId>
<artifactId>webforj-spring-devtools</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
Expand Down Expand Up @@ -83,6 +73,11 @@
<artifactId>webforj-maven-plugin</artifactId>
<version>${webforj.version}</version>
<extensions>true</extensions>
<configuration>
<hotswap>
<hotswapAgent />
</hotswap>
</configuration>
</plugin>
<plugin>
<groupId>org.springframework.boot</groupId>
Expand All @@ -93,7 +88,6 @@
</plugin>
<plugin>
<artifactId>maven-failsafe-plugin</artifactId>
<version>3.5.6</version>
<executions>
<execution>
<goals>
Expand All @@ -112,23 +106,6 @@
<profile>
<id>prod</id>
<activation />
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<excludeDevtools>true</excludeDevtools>
<excludes>
<exclude>
<groupId>com.webforj</groupId>
<artifactId>webforj-spring-devtools</artifactId>
</exclude>
</excludes>
</configuration>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>dev</id>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ server.shutdown=immediate
server.port=8080

# webforJ DevTools configuration
spring.devtools.livereload.enabled=false
webforj.devtools.livereload.enabled=true
webforj.devtools.livereload.static-resources-enabled=true
webforj.devtools.browser.open=true
webforj.debug=true
webforj.devtools.craftforj.enabled=true
webforj.entry = com.webforj.tutorial.Application

# H2 Database configuration
Expand Down
2 changes: 1 addition & 1 deletion 2-working-with-data/src/main/resources/banner.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
\ V V / __/ | |_) | _| (_) | | _| |
\_/\_/ \___| |_.__/|_| \___/|_| |___|

:: webforJ (26.01) ::
:: webforJ (26.02) ::
2 changes: 1 addition & 1 deletion 3-routing-and-composites/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ For a complete step-by-step guide to building this app, see the **[webforJ Tutor
To run the app, ensure the following tools are installed:

- Java 21 or higher
- BBj 26.01 when running with local BBjServices
- BBj 26.02 when running with local BBjServices
- Maven
- A Java IDE (e.g., IntelliJ IDEA, Eclipse, VSCode)
- Web browser
Expand Down
36 changes: 7 additions & 29 deletions 3-routing-and-composites/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>4.0.7</version>
<version>4.0.8</version>
<relativePath/>
</parent>
<groupId>com.webforj.tutorial</groupId>
Expand All @@ -14,7 +14,7 @@
<name>CustomerApplication</name>
<properties>
<java.version>21</java.version>
<webforj.version>26.01</webforj.version>
<webforj.version>26.02</webforj.version>
<maven.compiler.target>21</maven.compiler.target>
<maven.compiler.source>21</maven.compiler.source>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand Down Expand Up @@ -43,16 +43,6 @@
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-validation</artifactId>
</dependency>
<dependency>
<groupId>com.webforj</groupId>
<artifactId>webforj-spring-devtools</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
Expand Down Expand Up @@ -83,6 +73,11 @@
<artifactId>webforj-maven-plugin</artifactId>
<version>${webforj.version}</version>
<extensions>true</extensions>
<configuration>
<hotswap>
<hotswapAgent />
</hotswap>
</configuration>
</plugin>
<plugin>
<groupId>org.springframework.boot</groupId>
Expand Down Expand Up @@ -111,23 +106,6 @@
<profile>
<id>prod</id>
<activation />
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<excludeDevtools>true</excludeDevtools>
<excludes>
<exclude>
<groupId>com.webforj</groupId>
<artifactId>webforj-spring-devtools</artifactId>
</exclude>
</excludes>
</configuration>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>dev</id>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ server.shutdown=immediate
server.port=8080

# webforJ DevTools configuration
spring.devtools.livereload.enabled=false
webforj.devtools.livereload.enabled=true
webforj.devtools.livereload.static-resources-enabled=true
webforj.devtools.browser.open=true
webforj.debug=true
webforj.devtools.craftforj.enabled=true
webforj.entry = com.webforj.tutorial.Application

# H2 Database configuration
Expand Down
2 changes: 1 addition & 1 deletion 3-routing-and-composites/src/main/resources/banner.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
\ V V / __/ | |_) | _| (_) | | _| |
\_/\_/ \___| |_.__/|_| \___/|_| |___|

:: webforJ (26.01) ::
:: webforJ (26.02) ::
2 changes: 1 addition & 1 deletion 4-observers-and-route-parameters/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ For a complete step-by-step guide to building this app, see the **[webforJ Tutor
To run the app, ensure the following tools are installed:

- Java 21 or higher
- BBj 26.01 when running with local BBjServices
- BBj 26.02 when running with local BBjServices
- Maven
- A Java IDE (e.g., IntelliJ IDEA, Eclipse, VSCode)
- Web browser
Expand Down
36 changes: 7 additions & 29 deletions 4-observers-and-route-parameters/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>4.0.7</version>
<version>4.0.8</version>
<relativePath/>
</parent>
<groupId>com.webforj.tutorial</groupId>
Expand All @@ -14,7 +14,7 @@
<name>CustomerApplication</name>
<properties>
<java.version>21</java.version>
<webforj.version>26.01</webforj.version>
<webforj.version>26.02</webforj.version>
<maven.compiler.target>21</maven.compiler.target>
<maven.compiler.source>21</maven.compiler.source>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand Down Expand Up @@ -43,16 +43,6 @@
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-validation</artifactId>
</dependency>
<dependency>
<groupId>com.webforj</groupId>
<artifactId>webforj-spring-devtools</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
Expand Down Expand Up @@ -83,6 +73,11 @@
<artifactId>webforj-maven-plugin</artifactId>
<version>${webforj.version}</version>
<extensions>true</extensions>
<configuration>
<hotswap>
<hotswapAgent />
</hotswap>
</configuration>
</plugin>
<plugin>
<groupId>org.springframework.boot</groupId>
Expand Down Expand Up @@ -111,23 +106,6 @@
<profile>
<id>prod</id>
<activation />
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<excludeDevtools>true</excludeDevtools>
<excludes>
<exclude>
<groupId>com.webforj</groupId>
<artifactId>webforj-spring-devtools</artifactId>
</exclude>
</excludes>
</configuration>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>dev</id>
Expand Down
Loading