Skip to content

Commit

Permalink
write a line into test.file
Browse files Browse the repository at this point in the history
  • Loading branch information
huifer committed Oct 12, 2023
1 parent 924142e commit f9b7fbb
Show file tree
Hide file tree
Showing 2 changed files with 57 additions and 0 deletions.
31 changes: 31 additions & 0 deletions docs/spring/csb70f9b64-689f-11ee-8e95-acde48001122.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
package com.huifer.struts.action;

import com.opensymphony.xwork2.ActionSupport;

/**
* 描述:
*
* @author huifer
* @date 2019-02-21
*/
public class UserAction extends ActionSupport {
public String find() {
System.out.println("find user");
return NONE;
}

public String update() {
System.out.println("find update");
return NONE;
}

public String delete() {
System.out.println("find delete");
return NONE;
}

public String save() {
System.out.println("find save");
return NONE;
}
}
26 changes: 26 additions & 0 deletions docs/spring/csb74f0c72-689f-11ee-8e95-acde48001122.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
/**
* Copyright 2009-2018 the original author or authors.
* <p>
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* <p>
* http://www.apache.org/licenses/LICENSE-2.0
* <p>
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.ibatis.submitted.multiple_resultsets;

import java.util.List;

public interface Mapper {

List<List<?>> getUsersAndGroups();

List<List<?>> multiResultsWithUpdate();

}

0 comments on commit f9b7fbb

Please sign in to comment.