Answers for "how to reload the page without startinfg the server again in spring mvc"

0

how to reload the page without startinfg the server again in spring mvc

<plugin>
    <artifactId>maven-resources-plugin</artifactId>
    <version>2.6</version>
    <executions>
        <execution>
            <id>copy-resources</id>
            <phase>validate</phase>
            <goals>
                <goal>copy-resources</goal>
            </goals>
            <configuration>
                <outputDirectory>${basedir}/target/classes/static</outputDirectory>
                <resources>
                    <resource>
                        <directory>src/main/webapp</directory>
                        <filtering>true</filtering>
                    </resource>
                </resources>
            </configuration>
        </execution>
    </executions>
</plugin>
Posted by: Guest on February-26-2022

Code answers related to "how to reload the page without startinfg the server again in spring mvc"

Browse Popular Code Answers by Language