) throws Ioexception,servletexception {req.setcharacterencoding ("UTF-8 "); transcoding resp.setcharacterencoding ("UTF-8"); String uri=req.getrequesTURI (); Get request Uriint Lastindex=uri.lastindexof ("/"); String action=uri.substring (lastindex+1); Gets the action name//execution method if (action.equals ("Product_input.action")) {//no found, no action} else if (Action.equals ("product_ Save.action ")) {//Build a Productform form object according to the request parameters Productform product
First, we'll write a custom annotationthen we declare three classes to testFirst, declare an abstract parent class in declaring two subclasses, inheriting from our parent classSon Sub-categoryDaughter sub-classThe next step is to finish writing our functional class .Test ResultsA small example of annotation injection of the IOC implementation of spring
In order to be in the computer is not connected, the writing label in Beans.xml has the prompt function, need to import the constraint file locally on the computer, belowNote: Add the location suffix to the back of beans in keyNote: The method of importing the CONTEXT,AOP,TX constraint is consistent with the import beans method, notThis is four constraints all import success!!!Next, write the constraint to the XML configuration file and write the root element beansOther constraints import XML in
Org.springframework.context.annotation.configuration;import Org.springframework.context.annotation.Profile, @Configuration @profile ("!flower") Public classAppProfileConfig2 {@Bean PublicOuyangfeng Ouyangfeng () {Ouyangfeng Ouyangfeng=NewOuyangfeng (); Ouyangfeng.setage ( -); Ouyangfeng.setname ("Ouyang"); returnOuyangfeng; }}The code for the test class is as follows:Package Com.timo.profile;import Com.timo.profile.domain.alarm;import Com.timo.profile.domain.Ouyangfeng; Import Org.springframewo
This example describes the Java Development Spring Connection database method. Share to everyone for your reference, specific as follows:Interface:
Package cn.com.service;
Import java.util.List;
Import Cn.com.bean.PersonBean;
Public interface Personservice {
//Save the public
void Save (Personbean);
Update public
void update (Personbean person);
Gets the person public
Personbean Getpe
the program execution process, so also no longer draw sequence diagram.2, attention to the example of the IOC, the use of Di is based on Reportservice for the client (that is, the component requirement), while the test code in the client class main () in the code is the end user of the service component, but it needs not the component but the service that the component has.3, actually in the spring box, in
Using the underlying API: RedisConnection operation of Redis requires manual conversion of data ( String ), which requires most repetitive work and is inefficient; org.springframework.data.redis.core.RedisTemplate classes provide a high level of abstraction for interacting with Redis, which is responsible for serialization and connection management, encapsulating most of the repetitive work. And RedisTemplate is a thread-safe class.In addition, the template provides an operation view for handli
Using JUnit to test an example of a spring static factory instantiation Bean, all the code is fine, but there is a java.lang.IllegalArgumentException exception,As shown in the following: began to think that the code is wrong, find out, the code is not a problem, the original JDK version is too high, modify the JDK version of the project, reduce the version from 1.8 to 1.7, as shown in: Test, success, as s
Excerpt from the Spring Handbook, an example of dependency injection
The following example uses Xml-based configuration metadata for setter-based DI. A small part of a Spring XML configuration file specifies some bean definitions:
Take Jdkregexpmethodpointcut as an example to show how to use a static pointcut using a complete example (see routine 4.3 for the complete engineering code). In engineering we define a people class and a slice, and link them to the spring XML configuration file. When the People object executes the method defined in our pointcut, the logerpeople will give the appr
Mybatis can be used in two ways:
Use mapper for database operations;
Use sqlsession for database operations;
In fact, the 1st types are encapsulated on the basis of the 2nd types, mainly providing interface method extraction and parameter conversion, sqlsession is still used to add, delete, modify, and query databases.
The following is an example of using spring without integration:
(1) User bean carry
Implementation example of oau2logout in Spring Cloud, cloudoau22.
Next, we will implement the oau2's logout Function Based on Spring Cloud based on the implementation of oau2's authentication and authorization.
1. added a custom logout Endpoint.
The so-called deregistration only needs to invalidate access_token and refresh_token. We mimic org. springframework.
Spring framework study Note 5: SpringAOP example, springspringaop
1. Import package:
Import the two packages in spring
Import other packages (download them online ):
2. Prepare the target object:
Package service; public class UserServiceImpl implements UserService {@ Override public void save () {System. out. println ("save User! ") ;}@ Override public void d
data is written continuously*/public void Testinputsream (String dir) {FileInputStream FIP = null;Bytearrayoutputstream ba = null;DataInputStream os = null;try {FIP = new FileInputStream (New File (dir + "/new text document. txt"));ba = new Bytearrayoutputstream ();OS = new DataInputStream (FIP);byte[] b = new byte[1024];int rs;While ((rs = Os.read (b))! =-1) {//reads data from the input stream into byte Group BBa.write (b, 0, RS);//write Method B is the data written, 0 is the offset, RS is the
Spring boot thymeleaf Template engine simplest output exampleThe controller code is as follows:@GetMapping (value = "/test")Public String test (model model) { List Boy.add (New Boy ("XX", 11)); Boy.add (New boy ("yy", 22)); Boy.add (New Boy ("ZZ", 33)); Model.addattribute ("Boy", boy); return "hellohtml";}The template code is as follows: Spring boot thymeleaf Templa
18/1/16
In the SPRINGMVC (13): Using SPRINGMVC to optimize the order management System example (login and logout of the simple implementation), to the "Supermarket order management system" to add a new function: User management function (jump all user queries and conditional user query);
Learning stage, so the use of the framework: SPRINGMVC + spring + JDBC, added user query function, but the paging functio
We know that the integration of STRUTS1 and spring is achieved by Org.springframework.web.struts.DelegatingActionProxy, the following is a specific user login implementation to illustrate the STRUTS2 integration of spring related content .First, the preparatory work1. Example analysis we do not deal with the database, all is when the login to determine whether th
The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion;
products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the
content of the page makes you feel confusing, please write us an email, we will handle the problem
within 5 days after receiving your email.
If you find any instances of plagiarism from the community, please send an email to:
info-contact@alibabacloud.com
and provide relevant evidence. A staff member will contact you within 5 working days.