Ask questions about using webpack in jsp projects

do any friends introduce webpack into jsp projects?

how do apache and webpack-dev-server coexist? What is the development process?

Aug.04,2021
If you use webpack in

jsp, it should be no different from other uses in a production environment, just reserve a dom, in jsp and introduce the packaged file.
as for how apache and webpack-dev-server co-exist, it should not be possible to co-exist in the first place, right? Webpack-dev-server itself is a module that exists as a server in development mode.
Apache, such as tomcat, is used as a server in a production environment.
both are servers, so you have to choose one or the other, right?

Menu