Java project: design and implementation of second-hand trading website (java+ssm+mysql+jsp)

1, Introduction 2 1.1 research background 2 1.2 research purpose and Significance 2 1.3 research contents 3 1.4 feasibility study design 3 1.5 social feasibility 4 1.6 relevant technical description 4 spring 4 Spring 5 jQuery 5 Mysql 6 1) Powerful 6 2) Support cross platform 6 3) Fast running speed 6 4) Support object-oriented 7 ...

Added by starrieyed on Sat, 22 Jan 2022 11:04:51 +0200

Handwritten Spring MVC

The above four articles have introduced and written the life cycle of spring bean. Now let's start writing Spring MVC In Spring MVC, we only write one C layer, that is, the Controller control layer (there is no parent-child container) As we all know, Spring MVC has a CPU called dispatcher Servlet, which implements HttpServlet as a Servlet Si ...

Added by srboj on Tue, 18 Jan 2022 00:40:14 +0200

Spring MVC learning notes

Spring MVC learning notes Spring MVC overview Spring MVC is also called Spring web mvc. It is a built-in MVC framework in spring. In spring 3 Publish after 0. SpringMVC The framework solves the common problems in WEB Development (parameter receiving, file uploading, form verification, etc.), and is simple to use and has no difference from Sp ...

Added by dotnotwhat on Sun, 16 Jan 2022 06:45:30 +0200

Thread safety in Spring MVC

background I have been using Spring MVC framework for nearly half a year, but I have never encountered thread safety related problems. Until this week, we made such a demand: Our platform sells recharge codes. We need to regularly check the remaining inventory of recharge codes of each product. If the inventory is too low, we will alarm ...

Added by coja1 on Sat, 15 Jan 2022 09:12:54 +0200

Junit test of Spring mvc framework (implement your own Listener)

I Unit testing using spring JUnit 4classrunner 1,Annotate the test class @RunWith(SpringJUnit4ClassRunner.class) 2. Load the required configuration file @ContextConfiguration(locations={"/spring-gateway-py.xml","classpath:spring-repository-context.xml"}) 3. Transaction configuration @TransactionConfiguration(transactionManager = "trans ...

Added by immot on Sat, 15 Jan 2022 00:10:10 +0200

Spring MVC framework Foundation

1. Spring integrated Web environment Disadvantages: the application context object is obtained through new ClasspathXmlApplicationContext, but it must be written every time the Bean is obtained from the container. Such disadvantages are that the configuration file is loaded many times and the application context object is created many times S ...

Added by phpcoder24july on Fri, 14 Jan 2022 04:50:56 +0200

Use filters and interceptors in spring MVC and spring boot to analyze the relationship and differences between filters, interceptors and AOP

The framework brings a lot of convenience to our development, and the use of many previously learned knowledge will be slightly different in the framework. This article mainly describes the use of filters and interceptors in the framework, and analyzes the relationship and differences between filters, interceptors and AOP filter The function ...

Added by itsmeArry on Fri, 14 Jan 2022 00:50:56 +0200

Get started with spring MVC

Spring MVC Spring MVC is the mainstream enterprise level development framework to realize MVC design pattern. As a sub module of spring framework, it is more convenient to develop without integration. What is MVC design pattern? The application is divided into three layers: Controller, Model and View. The Controller receives the client reque ...

Added by luketheduck on Wed, 12 Jan 2022 21:34:38 +0200

Spring MVC -- HelloWorld and RequestMapping request mode

HelloWorld 1. Import jar package 2. Configure web XML file <!-- to configure DispatcherServlet --> <!-- The front controller of this Spring Web application, responsible for handling all application requests --> <servlet> <servlet-name>springDispatcherServlet</servlet-name> <servlet-class>org.springfra ...

Added by luke_barnes on Wed, 12 Jan 2022 09:52:23 +0200

SSM construction notes

SSM construction notes Components of ssm: spring+spring mvc+mybatis This tutorial uses Java 8, idea, and maven Start the tutorial: Create a maven web project using idea. Note that you must select your configured Alibaba cloud maven, or the creation will fail If you see build success in the console, it will be regarded as a success. I ...

Added by IwnfuM on Mon, 10 Jan 2022 21:41:09 +0200