- 浏览: 305895 次
- 性别:
- 来自: 北京
文章分类
最新评论
-
jakejone:
起作用了,谢谢啦
java.sql.SQLException:Value '0000-00-00' can not be represented as java.sql.Date -
BadBoyPgm:
不错 工作中刚好用到 看看知道怎么回事
ServletContextListener 应用 -
ifox:
不错哦,这个有用。找了好久呢、
struts2 iterator status index -
输入法:
上面书籍里有详细介绍?
js 获取select option 值 value text -
feihuale:
不错。。。真好,,,,学习了。。。
The error occurred while applying a parameter map.
首页 新闻 论坛 博客 招聘 更多 ▼ 问答
知识库
myeclipse6.0下struts2.0+spring2.0+hibern ...
2008-04-18myeclipse6.0下struts2.0+spring2.0+ibatis整合示例
参考网上的例子,自己做了个简单的struts2.0+ibatis+spring2.0登陆的例子。
链接:http://blog.csdn.net/jinlong0/archive/2008/01/11/2034732.aspx
1. 新建web工程
[img] http://shiningwu.iteye.com/upload/picture/pic/12457/86475e67-51e5-3fba-998c-4e1178dfd578.bmp [/img]
点击“finish”。
2. 加入jar包
将下面的jar包加入WEB-INF/lib下
antlr-2.7.2.jar
aopalliance.jar
cglib-2.1.3.jar
commons-collections.jar
commons-dbcp.jar
commons-logging-1.0.4.jar
commons-pool.jar
freemarker-2.3.8.jar
ibatis-2.3.1.710.jar
mysql-connector-java-5.0.4-bin.jar
ognl-2.6.11.jar
oro-2.0.8.jar
spring.jar
struts2-core-2.0.11.1.jar
struts2-spring-plugin-2.0.11.1.jar
xwork-2.0.4.jar
3. 配置web.xml文件
Java代码
<?xml version="1.0" encoding="UTF-8"?>
<web-app version="2.4"
xmlns="http://java.sun.com/xml/ns/j2ee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee
http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
<welcome-file-list>
<welcome-file>login.jsp</welcome-file>
</welcome-file-list>
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/classes/applicationContext.xml</param-value>
</context-param>
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
<filter>
<filter-name>struts2</filter-name>
<filter-class>org.apache.struts2.dispatcher.FilterDispatcher</filter-class>
</filter>
<filter-mapping>
<filter-name>struts2</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
</web-app>
<?xml version="1.0" encoding="UTF-8"?>
<web-app version="2.4"
xmlns="http://java.sun.com/xml/ns/j2ee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee
http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
<welcome-file-list>
<welcome-file>login.jsp</welcome-file>
</welcome-file-list>
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/classes/applicationContext.xml</param-value>
</context-param>
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
<filter>
<filter-name>struts2</filter-name>
<filter-class>org.apache.struts2.dispatcher.FilterDispatcher</filter-class>
</filter>
<filter-mapping>
<filter-name>struts2</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
</web-app>
4. 创建类与类包
结构如下图
[img]http://shiningwu.iteye.com/upload/picture/pic/12455/3668ca76-3bd8-3253-aec6-5d69df169dc8.bmp [/img]
5. 映射数据库表Users.java
Java代码
package org.login.vo;
public class Users {
private Integer id;
private String userName;
private String password;
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
public String getUserName() {
return userName;
}
public void setUserName(String userName) {
this.userName = userName;
}
public String getPassword() {
return password;
}
public void setPassword(String password) {
this.password = password;
}
public Users() {
}
public Users(Integer id, String userName, String password) {
super();
this.id = id;
this.userName = userName;
this.password = password;
}
}
package org.login.vo;
public class Users {
private Integer id;
private String userName;
private String password;
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
public String getUserName() {
return userName;
}
public void setUserName(String userName) {
this.userName = userName;
}
public String getPassword() {
return password;
}
public void setPassword(String password) {
this.password = password;
}
public Users() {
}
public Users(Integer id, String userName, String password) {
super();
this.id = id;
this.userName = userName;
this.password = password;
}
}
6. 映射xml(users.xml)
Java代码
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE sqlMap
PUBLIC "-//ibatis.apache.org//DTD SQL Map 2.0//EN"
"http://ibatis.apache.org/dtd/sql-map-2.dtd">
<sqlMap namespace="User">
<typeAlias alias="user" type="org.login.vo.Users"/>
<select id="recordCount" resultClass="int">
select count(*) as count from users
</select>
<select id="firstPage" resultClass="user" parameterClass="user">
select top $pagesize$ * from users order by id desc
</select>
<!--分页排序-->
<sql id="paginationStart">
<![CDATA[
select * from (select row_.*, rownum rownum_ from (
]]>
</sql>
<sql id="paginationEnd">
<![CDATA[
)row_ where rownum<=#end# ) where rownum_>=#start#
]]>
</sql>
<select id="otherPage" resultClass="user" parameterClass="map">
<include refid="paginationStart"/>
<![CDATA[
SELECT
*
FROM
users
]]>
<include refid="paginationEnd"/>
</select>
<select id="checkUser" parameterClass="user" resultClass="user">
<![CDATA[
SELECT id, username, password FROM users WHERE username = #userName# and password = #password#
]]>
</select>
<select id="getUserById" parameterClass="java.lang.Integer" resultClass="user">
<![CDATA[
SELECT id, username, password FROM users WHERE id = #id#
]]>
</select>
<select id="getAllUser" resultClass="user" parameterClass="map">
<![CDATA[
SELECT id, username, password FROM users limit #start# ,#end#
]]>
</select>
<insert id="insertUser" parameterClass="user">
<![CDATA[
INSERT INTO users (username, password) VALUES (#userName#, #password#)
]]>
</insert>
<update id="updateUser" parameterClass="user">
<![CDATA[
UPDATE users SET username=#userName#, password=#password# WHERE id=#id#
]]>
</update>
<delete id="deleteUser" parameterClass="java.lang.Integer">
<![CDATA[
DELETE FROM users WHERE id = #id#
]]>
</delete>
</sqlMap>
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE sqlMap
PUBLIC "-//ibatis.apache.org//DTD SQL Map 2.0//EN"
"http://ibatis.apache.org/dtd/sql-map-2.dtd">
<sqlMap namespace="User">
<typeAlias alias="user" type="org.login.vo.Users"/>
<select id="recordCount" resultClass="int">
select count(*) as count from users
</select>
<select id="firstPage" resultClass="user" parameterClass="user">
select top $pagesize$ * from users order by id desc
</select>
<!--分页排序-->
<sql id="paginationStart">
<![CDATA[
select * from (select row_.*, rownum rownum_ from (
]]>
</sql>
<sql id="paginationEnd">
<![CDATA[
)row_ where rownum<=#end# ) where rownum_>=#start#
]]>
</sql>
<select id="otherPage" resultClass="user" parameterClass="map">
<include refid="paginationStart"/>
<![CDATA[
SELECT
*
FROM
users
]]>
<include refid="paginationEnd"/>
</select>
<select id="checkUser" parameterClass="user" resultClass="user">
<![CDATA[
SELECT id, username, password FROM users WHERE username = #userName# and password = #password#
]]>
</select>
<select id="getUserById" parameterClass="java.lang.Integer" resultClass="user">
<![CDATA[
SELECT id, username, password FROM users WHERE id = #id#
]]>
</select>
<select id="getAllUser" resultClass="user" parameterClass="map">
<![CDATA[
SELECT id, username, password FROM users limit #start# ,#end#
]]>
</select>
<insert id="insertUser" parameterClass="user">
<![CDATA[
INSERT INTO users (username, password) VALUES (#userName#, #password#)
]]>
</insert>
<update id="updateUser" parameterClass="user">
<![CDATA[
UPDATE users SET username=#userName#, password=#password# WHERE id=#id#
]]>
</update>
<delete id="deleteUser" parameterClass="java.lang.Integer">
<![CDATA[
DELETE FROM users WHERE id = #id#
]]>
</delete>
</sqlMap>
7. 接口及实现
接口IUserDAO.java
Java代码
package org.login.dao;
import java.util.List;
import org.login.vo.Users;
public interface IUserDAO {
List<Users> getAllUser();
Users getUserById(Integer id);
boolean isLogin(Users user);
boolean insertUser(Users user);
boolean updateUser(Users user);
boolean deleteUser(Integer id);
}
package org.login.dao;
import java.util.List;
import org.login.vo.Users;
public interface IUserDAO {
List<Users> getAllUser();
Users getUserById(Integer id);
boolean isLogin(Users user);
boolean insertUser(Users user);
boolean updateUser(Users user);
boolean deleteUser(Integer id);
}
实现UserDAO
Java代码
package org.login.dao.Impl;
import java.sql.SQLException;
import java.util.List;
import org.login.dao.IUserDAO;
import org.login.vo.Users;
import com.ibatis.sqlmap.client.SqlMapClient;
public class UserDAO implements IUserDAO {
private SqlMapClient client = null;
public SqlMapClient getClient() {
return client;
}
public void setClient(SqlMapClient client) {
this.client = client;
}
public boolean deleteUser(Integer id) {
try {
client.delete("deleteUser", id);
return true;
} catch (SQLException e) {
e.printStackTrace();
}
return false;
}
public List<Users> getAllUser() {
List<Users> list = null;
try {
list = client.queryForList("getAllUser");
} catch (SQLException e) {
e.printStackTrace();
}
return list;
}
public boolean insertUser(Users user) {
try {
client.insert("insertUser", user);
return true;
} catch (SQLException e) {
e.printStackTrace();
}
return false;
}
public boolean updateUser(Users user) {
try {
client.update("updateUser", user);
return true;
} catch (SQLException e) {
e.printStackTrace();
}
return false;
}
public boolean isLogin(Users user) {
try {
Users u = (Users) client.queryForObject("checkUser", user);
if (u != null) {
return true;
}
} catch (SQLException e) {
e.printStackTrace();
}
return false;
}
public Users getUserById(Integer id) {
Users u = null;
try {
u = (Users) client.queryForObject("getUserById", id);
} catch (SQLException e) {
e.printStackTrace();
}
return u;
}
}
package org.login.dao.Impl;
import java.sql.SQLException;
import java.util.List;
import org.login.dao.IUserDAO;
import org.login.vo.Users;
import com.ibatis.sqlmap.client.SqlMapClient;
public class UserDAO implements IUserDAO {
private SqlMapClient client = null;
public SqlMapClient getClient() {
return client;
}
public void setClient(SqlMapClient client) {
this.client = client;
}
public boolean deleteUser(Integer id) {
try {
client.delete("deleteUser", id);
return true;
} catch (SQLException e) {
e.printStackTrace();
}
return false;
}
public List<Users> getAllUser() {
List<Users> list = null;
try {
list = client.queryForList("getAllUser");
} catch (SQLException e) {
e.printStackTrace();
}
return list;
}
public boolean insertUser(Users user) {
try {
client.insert("insertUser", user);
return true;
} catch (SQLException e) {
e.printStackTrace();
}
return false;
}
public boolean updateUser(Users user) {
try {
client.update("updateUser", user);
return true;
} catch (SQLException e) {
e.printStackTrace();
}
return false;
}
public boolean isLogin(Users user) {
try {
Users u = (Users) client.queryForObject("checkUser", user);
if (u != null) {
return true;
}
} catch (SQLException e) {
e.printStackTrace();
}
return false;
}
public Users getUserById(Integer id) {
Users u = null;
try {
u = (Users) client.queryForObject("getUserById", id);
} catch (SQLException e) {
e.printStackTrace();
}
return u;
}
}
服务层接口IUserService.java
Java代码
package org.login.service;
import java.util.List;
import org.login.vo.Users;
public interface IUserService {
List<Users> getAllUser();
Users getUserById(Integer id);
boolean isLogin(Users user);
boolean insertUser(Users user);
boolean updateUser(Users user);
boolean deleteUser(Integer id);
}
package org.login.service;
import java.util.List;
import org.login.vo.Users;
public interface IUserService {
List<Users> getAllUser();
Users getUserById(Integer id);
boolean isLogin(Users user);
boolean insertUser(Users user);
boolean updateUser(Users user);
boolean deleteUser(Integer id);
}
服务层实现UserService.java
Java代码
package org.login.service.Impl;
import java.util.List;
import org.login.dao.IUserDAO;
import org.login.service.IUserService;
import org.login.vo.Users;
public class UserService implements IUserService {
private IUserDAO userDAO = null;
public IUserDAO getUserDAO() {
return userDAO;
}
public void setUserDAO(IUserDAO userDAO) {
this.userDAO = userDAO;
}
public boolean deleteUser(Integer id) {
return userDAO.deleteUser(id);
}
public List<Users> getAllUser() {
return userDAO.getAllUser();
}
public boolean insertUser(Users user) {
return userDAO.insertUser(user);
}
public boolean isLogin(Users user) {
return userDAO.isLogin(user);
}
public boolean updateUser(Users user) {
return userDAO.updateUser(user);
}
public Users getUserById(Integer id) {
return userDAO.getUserById(id);
}
}
package org.login.service.Impl;
import java.util.List;
import org.login.dao.IUserDAO;
import org.login.service.IUserService;
import org.login.vo.Users;
public class UserService implements IUserService {
private IUserDAO userDAO = null;
public IUserDAO getUserDAO() {
return userDAO;
}
public void setUserDAO(IUserDAO userDAO) {
this.userDAO = userDAO;
}
public boolean deleteUser(Integer id) {
return userDAO.deleteUser(id);
}
public List<Users> getAllUser() {
return userDAO.getAllUser();
}
public boolean insertUser(Users user) {
return userDAO.insertUser(user);
}
public boolean isLogin(Users user) {
return userDAO.isLogin(user);
}
public boolean updateUser(Users user) {
return userDAO.updateUser(user);
}
public Users getUserById(Integer id) {
return userDAO.getUserById(id);
}
}
Struts中Action实现Login.java
Java代码
package org.login.actions;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import javax.servlet.http.HttpServletRequest;
import javax.xml.registry.infomodel.User;
import org.login.page.PageUtil;
import org.login.service.IUserService;
import org.login.vo.Users;
import com.opensymphony.xwork2.ActionSupport;
import com.opensymphony.xwork2.ModelDriven;
import com.opensymphony.xwork2.Preparable;
public class Login extends ActionSupport implements ModelDriven<Users>, Preparable {
private IUserService userService ;
private String id ;
private int pageIndex=1 ;
private String pageBar ;
private List<Users> list;
private Users user;
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public IUserService getUserService() {
return userService;
}
public void setUserService(IUserService userService) {
this.userService = userService;
}
public int getPageIndex() {
return pageIndex;
}
public void setPageIndex(int pageIndex) {
this.pageIndex = pageIndex;
}
public String getPageBar() {
return pageBar;
}
public void setPageBar(String pageBar) {
this.pageBar = pageBar;
}
public List<Users> getList() {
return list;
}
public void setList(List<Users> list) {
this.list = list;
}
public Users getUser() {
return user;
}
public void setUser(Users user) {
this.user = user;
}
public void prepare() throws Exception {
if (id == null || id.length() == 0)
user = new Users();
else
user = getUserService().getUserById(Integer.parseInt(id));
}
public String execute() throws Exception {
if (getUserService().isLogin(user)) {
return SUCCESS;
}
return INPUT;
}
public String save() throws Exception {
if (getUserService().insertUser(user)) {
return SUCCESS;
}
return ERROR;
}
public String edit() {
return SUCCESS;
}
public String update() throws Exception {
if (getUserService().updateUser(user)) {
return SUCCESS;
}
return ERROR;
}
public String delete() throws Exception {
if (getUserService().deleteUser(Integer.valueOf(id))) {
return SUCCESS;
}
return ERROR;
}
public String findAllUsers() throws Exception {
PageUtil page = new PageUtil();
int count = getUserService().getCount();
page.setCurPage(pageIndex);
page.setTotalRow(count);
pageBar = page.getToolsMenu();
Map<String,Integer> pageMap = new HashMap<String,Integer>();
pageMap.put("start", page.getStart());
pageMap.put("end", page.getPageSize());
list = getUserService().getAllUser(pageMap);
return SUCCESS;
}
public Users getModel() {
return user;
}
}
package org.login.actions;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import javax.servlet.http.HttpServletRequest;
import javax.xml.registry.infomodel.User;
import org.login.page.PageUtil;
import org.login.service.IUserService;
import org.login.vo.Users;
import com.opensymphony.xwork2.ActionSupport;
import com.opensymphony.xwork2.ModelDriven;
import com.opensymphony.xwork2.Preparable;
public class Login extends ActionSupport implements ModelDriven<Users>, Preparable {
private IUserService userService ;
private String id ;
private int pageIndex=1 ;
private String pageBar ;
private List<Users> list;
private Users user;
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public IUserService getUserService() {
return userService;
}
public void setUserService(IUserService userService) {
this.userService = userService;
}
public int getPageIndex() {
return pageIndex;
}
public void setPageIndex(int pageIndex) {
this.pageIndex = pageIndex;
}
public String getPageBar() {
return pageBar;
}
public void setPageBar(String pageBar) {
this.pageBar = pageBar;
}
public List<Users> getList() {
return list;
}
public void setList(List<Users> list) {
this.list = list;
}
public Users getUser() {
return user;
}
public void setUser(Users user) {
this.user = user;
}
public void prepare() throws Exception {
if (id == null || id.length() == 0)
user = new Users();
else
user = getUserService().getUserById(Integer.parseInt(id));
}
public String execute() throws Exception {
if (getUserService().isLogin(user)) {
return SUCCESS;
}
return INPUT;
}
public String save() throws Exception {
if (getUserService().insertUser(user)) {
return SUCCESS;
}
return ERROR;
}
public String edit() {
return SUCCESS;
}
public String update() throws Exception {
if (getUserService().updateUser(user)) {
return SUCCESS;
}
return ERROR;
}
public String delete() throws Exception {
if (getUserService().deleteUser(Integer.valueOf(id))) {
return SUCCESS;
}
return ERROR;
}
public String findAllUsers() throws Exception {
PageUtil page = new PageUtil();
int count = getUserService().getCount();
page.setCurPage(pageIndex);
page.setTotalRow(count);
pageBar = page.getToolsMenu();
Map<String,Integer> pageMap = new HashMap<String,Integer>();
pageMap.put("start", page.getStart());
pageMap.put("end", page.getPageSize());
list = getUserService().getAllUser(pageMap);
return SUCCESS;
}
public Users getModel() {
return user;
}
}
8. 配置文件
struts.xml
Java代码
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE struts PUBLIC
"-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
"http://struts.apache.org/dtds/struts-2.0.dtd">
<struts>
<constant name="struts.objectFactory.spring.autoWire" value="type" />
<constant name="struts.objectFactory" value="spring" />
<include file="struts-default.xml"/>
<package name="struts2" extends="struts-default">
<default-interceptor-ref name="paramsPrepareParamsStack" />
<!-- aciton的class为applicationContext.xml中的注册名 -->
<action name="login" class="LoginAction">
<result name="success">/success.jsp</result>
<result name="input">/login.jsp</result>
</action>
<action name="save" class="LoginAction" method="save">
<result name="success" type="redirect-action">show.action</result>
<result name="error">/error.jsp</result>
</action>
<action name="edit" class="LoginAction" method="edit">
<result name="success">update.jsp</result>
</action>
<action name="update" class="LoginAction" method="update">
<result name="success" type="redirect-action">show.action</result>
<result name="error">/error.jsp</result>
</action>
<action name="delete" class="LoginAction" method="delete">
<result name="success" type="redirect-action">show.action</result>
<result name="error">/error.jsp</result>
</action>
<action name="show" class="LoginAction" method="findAllUsers">
<result name="success">/list.jsp</result>
<result name="error">/error.jsp</result>
</action>
</package>
</struts>
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE struts PUBLIC
"-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
"http://struts.apache.org/dtds/struts-2.0.dtd">
<struts>
<constant name="struts.objectFactory.spring.autoWire" value="type" />
<constant name="struts.objectFactory" value="spring" />
<include file="struts-default.xml"/>
<package name="struts2" extends="struts-default">
<default-interceptor-ref name="paramsPrepareParamsStack" />
<!-- aciton的class为applicationContext.xml中的注册名 -->
<action name="login" class="LoginAction">
<result name="success">/success.jsp</result>
<result name="input">/login.jsp</result>
</action>
<action name="save" class="LoginAction" method="save">
<result name="success" type="redirect-action">show.action</result>
<result name="error">/error.jsp</result>
</action>
<action name="edit" class="LoginAction" method="edit">
<result name="success">update.jsp</result>
</action>
<action name="update" class="LoginAction" method="update">
<result name="success" type="redirect-action">show.action</result>
<result name="error">/error.jsp</result>
</action>
<action name="delete" class="LoginAction" method="delete">
<result name="success" type="redirect-action">show.action</result>
<result name="error">/error.jsp</result>
</action>
<action name="show" class="LoginAction" method="findAllUsers">
<result name="success">/list.jsp</result>
<result name="error">/error.jsp</result>
</action>
</package>
</struts>
struts.properties文件
Java代码
struts.locale=zh_CN
struts.i18n.encoding=UTF-8
struts.objectFactory=spring
struts.locale=zh_CN
struts.i18n.encoding=UTF-8
struts.objectFactory=spring
ibatis的配置文件config.xml
Java代码
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE sqlMapConfig
PUBLIC "-//ibatis.apache.org//DTD SQL Map Config 2.0//EN"
"http://ibatis.apache.org/dtd/sql-map-config-2.dtd">
<sqlMapConfig>
<sqlMap resource="org/login/vo/users.xml"/>
</sqlMapConfig>
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE sqlMapConfig
PUBLIC "-//ibatis.apache.org//DTD SQL Map Config 2.0//EN"
"http://ibatis.apache.org/dtd/sql-map-config-2.dtd">
<sqlMapConfig>
<sqlMap resource="org/login/vo/users.xml"/>
</sqlMapConfig>
Spring配置文件applicationContext.xml
Java代码
<?xml version="1.0" encoding="UTF-8"?>
<beans default-autowire="byType"
xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd">
<bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource" destroy-method="close">
<property name="driverClassName" value="com.mysql.jdbc.Driver" />
<property name="url" value="jdbc:mysql://192.168.151.238:3306/chgl" />
<property name="username" value="vcom" />
<property name="password" value="vcom_8968888" />
</bean>
<bean id="client" class="org.springframework.orm.ibatis.SqlMapClientFactoryBean">
<property name="dataSource">
<ref local="dataSource"/>
</property>
<property name="configLocation">
<value>classpath:config.xml</value>
</property>
</bean>
<!-- bean中的class为实现接口的类;property的name为类中引用的属性名称;ref为spring注册的名称,如上面的client-->
<bean id="userDao"
class="org.login.dao.Impl.UserDAO">
<property name="client" ref="client" />
</bean>
<bean id="userService"
class="org.login.service.Impl.UserService">
<property name="userDAO" ref="userDao"></property>
</bean>
<bean id="LoginAction" class="org.login.actions.Login">
<property name="userService" ref="userService"></property>
</bean>
</beans>
<?xml version="1.0" encoding="UTF-8"?>
<beans default-autowire="byType"
xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd">
<bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource" destroy-method="close">
<property name="driverClassName" value="com.mysql.jdbc.Driver" />
<property name="url" value="jdbc:mysql://192.168.151.238:3306/chgl" />
<property name="username" value="vcom" />
<property name="password" value="vcom_8968888" />
</bean>
<bean id="client" class="org.springframework.orm.ibatis.SqlMapClientFactoryBean">
<property name="dataSource">
<ref local="dataSource"/>
</property>
<property name="configLocation">
<value>classpath:config.xml</value>
</property>
</bean>
<!-- bean中的class为实现接口的类;property的name为类中引用的属性名称;ref为spring注册的名称,如上面的client-->
<bean id="userDao"
class="org.login.dao.Impl.UserDAO">
<property name="client" ref="client" />
</bean>
<bean id="userService"
class="org.login.service.Impl.UserService">
<property name="userDAO" ref="userDao"></property>
</bean>
<bean id="LoginAction" class="org.login.actions.Login">
<property name="userService" ref="userService"></property>
</bean>
</beans>
9. UI层
登陆页面login.jsp
Java代码
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<%@ taglib uri="/struts-tags" prefix="s" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>login.jsp</title>
</head>
<body>
<s:form action="login" method="post">
<s:textfield name="userName" label="User Name" />
<s:password name="password" label="Password" />
<s:submit value="Submit" />
</s:form>
</body>
</html>
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<%@ taglib uri="/struts-tags" prefix="s" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>login.jsp</title>
</head>
<body>
<s:form action="login" method="post">
<s:textfield name="userName" label="User Name" />
<s:password name="password" label="Password" />
<s:submit value="Submit" />
</s:form>
</body>
</html>
添加用户页面adduser.jsp
Java代码
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<%@ taglib uri="/struts-tags" prefix="s" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>addUser.jsp</title>
</head>
<body>
<s:form action="save">
<s:textfield name="userName" label="User Name" />
<s:password name="password" label="Password" />
<s:submit value="Save" />
</s:form>
</body>
</html>
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<%@ taglib uri="/struts-tags" prefix="s" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>addUser.jsp</title>
</head>
<body>
<s:form action="save">
<s:textfield name="userName" label="User Name" />
<s:password name="password" label="Password" />
<s:submit value="Save" />
</s:form>
</body>
</html>
用户列表页面list.jsp
Java代码
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<%@ taglib uri="/struts-tags" prefix="s" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Users list</title>
<style type="text/css">
table {
border-collapse: collapse;
}
</style>
</head>
<body>
<br /><br /><br /><br />
<s:form action="show">
<table border="1" width="50%" align="center">
<tr bgcolor="#cccc00">
<td align="center">UserID</td>
<td align="center">UserName</td>
<td align="center">Password</td>
<td colspan="2" align="center">Options</td>
</tr>
<s:iterator value="list" id="user" status="st">
<tr <s:if test="#st.odd">style="background-color:#dddddd"</s:if>
<s:else>style="background-color:#eeeeee"</s:else>>
<td align="center"><s:property value="id" /></td>
<td align="center"> <s:property value="userName" /></td>
<td align="center"> <s:property value="password" /></td>
<td align="center">
<s:url id="update" action="edit">
<s:param name="id">
<s:property value="id" />
</s:param>
</s:url>
<s:a href="%{update}">update</s:a>
</td>
<td align="center">
<s:url id="delete" action="delete">
<s:param name="id">
<s:property value="id" />
</s:param>
</s:url>
<s:a href="%{delete}">delete</s:a>
</td>
</tr>
</s:iterator>
<tr>
<td colspan="4">
<s:property value="#request.pageBar" escape="false"/>
</td>
</tr>
</table>
</s:form>
</body>
</html>
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<%@ taglib uri="/struts-tags" prefix="s" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Users list</title>
<style type="text/css">
table {
border-collapse: collapse;
}
</style>
</head>
<body>
<br /><br /><br /><br />
<s:form action="show">
<table border="1" width="50%" align="center">
<tr bgcolor="#cccc00">
<td align="center">UserID</td>
<td align="center">UserName</td>
<td align="center">Password</td>
<td colspan="2" align="center">Options</td>
</tr>
<s:iterator value="list" id="user" status="st">
<tr <s:if test="#st.odd">style="background-color:#dddddd"</s:if>
<s:else>style="background-color:#eeeeee"</s:else>>
<td align="center"><s:property value="id" /></td>
<td align="center"> <s:property value="userName" /></td>
<td align="center"> <s:property value="password" /></td>
<td align="center">
<s:url id="update" action="edit">
<s:param name="id">
<s:property value="id" />
</s:param>
</s:url>
<s:a href="%{update}">update</s:a>
</td>
<td align="center">
<s:url id="delete" action="delete">
<s:param name="id">
<s:property value="id" />
</s:param>
</s:url>
<s:a href="%{delete}">delete</s:a>
</td>
</tr>
</s:iterator>
<tr>
<td colspan="4">
<s:property value="#request.pageBar" escape="false"/>
</td>
</tr>
</table>
</s:form>
</body>
</html>
用户更新页面update.jsp
Java代码
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<%@ taglib uri="/struts-tags" prefix="s" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>update.jsp</title>
</head>
<body>
<s:form action="update" method="post">
<s:textfield name="id" label="ID" value="%{id}" readonly="true"/>
<s:textfield name="userName" label="User Name" value="%{userName}" required="true"/>
<s:textfield name="password" label="Password" value="%{password}" required="true"/>
<s:submit value="Update" />
</s:form>
</body>
</html>
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<%@ taglib uri="/struts-tags" prefix="s" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>update.jsp</title>
</head>
<body>
<s:form action="update" method="post">
<s:textfield name="id" label="ID" value="%{id}" readonly="true"/>
<s:textfield name="userName" label="User Name" value="%{userName}" required="true"/>
<s:textfield name="password" label="Password" value="%{password}" required="true"/>
<s:submit value="Update" />
</s:form>
</body>
</html>
成功页面success.jsp
Java代码
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<%@ taglib uri="/struts-tags" prefix="s" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>success</title>
</head>
<body>
This is Success page. <br>
<br /><br />
<a href="show.action">显示用户列表</a> <a href="adduser.jsp">添加用户</a>
</body>
</html>
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<%@ taglib uri="/struts-tags" prefix="s" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>success</title>
</head>
<body>
This is Success page. <br>
<br /><br />
<a href="show.action">显示用户列表</a> <a href="adduser.jsp">添加用户</a>
</body>
</html>
失败页面error.jsp
Java代码
<%@ page language="java" import="java.util.*" pageEncoding="GB18030"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<base href="<%=basePath%>">
<title>My JSP 'error.jsp' starting page</title>
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="expires" content="0">
<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
<meta http-equiv="description" content="This is my page">
<!--
<link rel="stylesheet" type="text/css" href="styles.css">
-->
</head>
<body>
This is my JSP page. <br>
</body>
</html>
<%@ page language="java" import="java.util.*" pageEncoding="GB18030"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<base href="<%=basePath%>">
<title>My JSP 'error.jsp' starting page</title>
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="expires" content="0">
<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
<meta http-equiv="description" content="This is my page">
<!--
<link rel="stylesheet" type="text/css" href="styles.css">
-->
</head>
<body>
This is my JSP page. <br>
</body>
</html>
知识库
myeclipse6.0下struts2.0+spring2.0+hibern ...
2008-04-18myeclipse6.0下struts2.0+spring2.0+ibatis整合示例
参考网上的例子,自己做了个简单的struts2.0+ibatis+spring2.0登陆的例子。
链接:http://blog.csdn.net/jinlong0/archive/2008/01/11/2034732.aspx
1. 新建web工程
[img] http://shiningwu.iteye.com/upload/picture/pic/12457/86475e67-51e5-3fba-998c-4e1178dfd578.bmp [/img]
点击“finish”。
2. 加入jar包
将下面的jar包加入WEB-INF/lib下
antlr-2.7.2.jar
aopalliance.jar
cglib-2.1.3.jar
commons-collections.jar
commons-dbcp.jar
commons-logging-1.0.4.jar
commons-pool.jar
freemarker-2.3.8.jar
ibatis-2.3.1.710.jar
mysql-connector-java-5.0.4-bin.jar
ognl-2.6.11.jar
oro-2.0.8.jar
spring.jar
struts2-core-2.0.11.1.jar
struts2-spring-plugin-2.0.11.1.jar
xwork-2.0.4.jar
3. 配置web.xml文件
Java代码
<?xml version="1.0" encoding="UTF-8"?>
<web-app version="2.4"
xmlns="http://java.sun.com/xml/ns/j2ee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee
http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
<welcome-file-list>
<welcome-file>login.jsp</welcome-file>
</welcome-file-list>
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/classes/applicationContext.xml</param-value>
</context-param>
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
<filter>
<filter-name>struts2</filter-name>
<filter-class>org.apache.struts2.dispatcher.FilterDispatcher</filter-class>
</filter>
<filter-mapping>
<filter-name>struts2</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
</web-app>
<?xml version="1.0" encoding="UTF-8"?>
<web-app version="2.4"
xmlns="http://java.sun.com/xml/ns/j2ee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee
http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
<welcome-file-list>
<welcome-file>login.jsp</welcome-file>
</welcome-file-list>
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/classes/applicationContext.xml</param-value>
</context-param>
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
<filter>
<filter-name>struts2</filter-name>
<filter-class>org.apache.struts2.dispatcher.FilterDispatcher</filter-class>
</filter>
<filter-mapping>
<filter-name>struts2</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
</web-app>
4. 创建类与类包
结构如下图
[img]http://shiningwu.iteye.com/upload/picture/pic/12455/3668ca76-3bd8-3253-aec6-5d69df169dc8.bmp [/img]
5. 映射数据库表Users.java
Java代码
package org.login.vo;
public class Users {
private Integer id;
private String userName;
private String password;
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
public String getUserName() {
return userName;
}
public void setUserName(String userName) {
this.userName = userName;
}
public String getPassword() {
return password;
}
public void setPassword(String password) {
this.password = password;
}
public Users() {
}
public Users(Integer id, String userName, String password) {
super();
this.id = id;
this.userName = userName;
this.password = password;
}
}
package org.login.vo;
public class Users {
private Integer id;
private String userName;
private String password;
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
public String getUserName() {
return userName;
}
public void setUserName(String userName) {
this.userName = userName;
}
public String getPassword() {
return password;
}
public void setPassword(String password) {
this.password = password;
}
public Users() {
}
public Users(Integer id, String userName, String password) {
super();
this.id = id;
this.userName = userName;
this.password = password;
}
}
6. 映射xml(users.xml)
Java代码
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE sqlMap
PUBLIC "-//ibatis.apache.org//DTD SQL Map 2.0//EN"
"http://ibatis.apache.org/dtd/sql-map-2.dtd">
<sqlMap namespace="User">
<typeAlias alias="user" type="org.login.vo.Users"/>
<select id="recordCount" resultClass="int">
select count(*) as count from users
</select>
<select id="firstPage" resultClass="user" parameterClass="user">
select top $pagesize$ * from users order by id desc
</select>
<!--分页排序-->
<sql id="paginationStart">
<![CDATA[
select * from (select row_.*, rownum rownum_ from (
]]>
</sql>
<sql id="paginationEnd">
<![CDATA[
)row_ where rownum<=#end# ) where rownum_>=#start#
]]>
</sql>
<select id="otherPage" resultClass="user" parameterClass="map">
<include refid="paginationStart"/>
<![CDATA[
SELECT
*
FROM
users
]]>
<include refid="paginationEnd"/>
</select>
<select id="checkUser" parameterClass="user" resultClass="user">
<![CDATA[
SELECT id, username, password FROM users WHERE username = #userName# and password = #password#
]]>
</select>
<select id="getUserById" parameterClass="java.lang.Integer" resultClass="user">
<![CDATA[
SELECT id, username, password FROM users WHERE id = #id#
]]>
</select>
<select id="getAllUser" resultClass="user" parameterClass="map">
<![CDATA[
SELECT id, username, password FROM users limit #start# ,#end#
]]>
</select>
<insert id="insertUser" parameterClass="user">
<![CDATA[
INSERT INTO users (username, password) VALUES (#userName#, #password#)
]]>
</insert>
<update id="updateUser" parameterClass="user">
<![CDATA[
UPDATE users SET username=#userName#, password=#password# WHERE id=#id#
]]>
</update>
<delete id="deleteUser" parameterClass="java.lang.Integer">
<![CDATA[
DELETE FROM users WHERE id = #id#
]]>
</delete>
</sqlMap>
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE sqlMap
PUBLIC "-//ibatis.apache.org//DTD SQL Map 2.0//EN"
"http://ibatis.apache.org/dtd/sql-map-2.dtd">
<sqlMap namespace="User">
<typeAlias alias="user" type="org.login.vo.Users"/>
<select id="recordCount" resultClass="int">
select count(*) as count from users
</select>
<select id="firstPage" resultClass="user" parameterClass="user">
select top $pagesize$ * from users order by id desc
</select>
<!--分页排序-->
<sql id="paginationStart">
<![CDATA[
select * from (select row_.*, rownum rownum_ from (
]]>
</sql>
<sql id="paginationEnd">
<![CDATA[
)row_ where rownum<=#end# ) where rownum_>=#start#
]]>
</sql>
<select id="otherPage" resultClass="user" parameterClass="map">
<include refid="paginationStart"/>
<![CDATA[
SELECT
*
FROM
users
]]>
<include refid="paginationEnd"/>
</select>
<select id="checkUser" parameterClass="user" resultClass="user">
<![CDATA[
SELECT id, username, password FROM users WHERE username = #userName# and password = #password#
]]>
</select>
<select id="getUserById" parameterClass="java.lang.Integer" resultClass="user">
<![CDATA[
SELECT id, username, password FROM users WHERE id = #id#
]]>
</select>
<select id="getAllUser" resultClass="user" parameterClass="map">
<![CDATA[
SELECT id, username, password FROM users limit #start# ,#end#
]]>
</select>
<insert id="insertUser" parameterClass="user">
<![CDATA[
INSERT INTO users (username, password) VALUES (#userName#, #password#)
]]>
</insert>
<update id="updateUser" parameterClass="user">
<![CDATA[
UPDATE users SET username=#userName#, password=#password# WHERE id=#id#
]]>
</update>
<delete id="deleteUser" parameterClass="java.lang.Integer">
<![CDATA[
DELETE FROM users WHERE id = #id#
]]>
</delete>
</sqlMap>
7. 接口及实现
接口IUserDAO.java
Java代码
package org.login.dao;
import java.util.List;
import org.login.vo.Users;
public interface IUserDAO {
List<Users> getAllUser();
Users getUserById(Integer id);
boolean isLogin(Users user);
boolean insertUser(Users user);
boolean updateUser(Users user);
boolean deleteUser(Integer id);
}
package org.login.dao;
import java.util.List;
import org.login.vo.Users;
public interface IUserDAO {
List<Users> getAllUser();
Users getUserById(Integer id);
boolean isLogin(Users user);
boolean insertUser(Users user);
boolean updateUser(Users user);
boolean deleteUser(Integer id);
}
实现UserDAO
Java代码
package org.login.dao.Impl;
import java.sql.SQLException;
import java.util.List;
import org.login.dao.IUserDAO;
import org.login.vo.Users;
import com.ibatis.sqlmap.client.SqlMapClient;
public class UserDAO implements IUserDAO {
private SqlMapClient client = null;
public SqlMapClient getClient() {
return client;
}
public void setClient(SqlMapClient client) {
this.client = client;
}
public boolean deleteUser(Integer id) {
try {
client.delete("deleteUser", id);
return true;
} catch (SQLException e) {
e.printStackTrace();
}
return false;
}
public List<Users> getAllUser() {
List<Users> list = null;
try {
list = client.queryForList("getAllUser");
} catch (SQLException e) {
e.printStackTrace();
}
return list;
}
public boolean insertUser(Users user) {
try {
client.insert("insertUser", user);
return true;
} catch (SQLException e) {
e.printStackTrace();
}
return false;
}
public boolean updateUser(Users user) {
try {
client.update("updateUser", user);
return true;
} catch (SQLException e) {
e.printStackTrace();
}
return false;
}
public boolean isLogin(Users user) {
try {
Users u = (Users) client.queryForObject("checkUser", user);
if (u != null) {
return true;
}
} catch (SQLException e) {
e.printStackTrace();
}
return false;
}
public Users getUserById(Integer id) {
Users u = null;
try {
u = (Users) client.queryForObject("getUserById", id);
} catch (SQLException e) {
e.printStackTrace();
}
return u;
}
}
package org.login.dao.Impl;
import java.sql.SQLException;
import java.util.List;
import org.login.dao.IUserDAO;
import org.login.vo.Users;
import com.ibatis.sqlmap.client.SqlMapClient;
public class UserDAO implements IUserDAO {
private SqlMapClient client = null;
public SqlMapClient getClient() {
return client;
}
public void setClient(SqlMapClient client) {
this.client = client;
}
public boolean deleteUser(Integer id) {
try {
client.delete("deleteUser", id);
return true;
} catch (SQLException e) {
e.printStackTrace();
}
return false;
}
public List<Users> getAllUser() {
List<Users> list = null;
try {
list = client.queryForList("getAllUser");
} catch (SQLException e) {
e.printStackTrace();
}
return list;
}
public boolean insertUser(Users user) {
try {
client.insert("insertUser", user);
return true;
} catch (SQLException e) {
e.printStackTrace();
}
return false;
}
public boolean updateUser(Users user) {
try {
client.update("updateUser", user);
return true;
} catch (SQLException e) {
e.printStackTrace();
}
return false;
}
public boolean isLogin(Users user) {
try {
Users u = (Users) client.queryForObject("checkUser", user);
if (u != null) {
return true;
}
} catch (SQLException e) {
e.printStackTrace();
}
return false;
}
public Users getUserById(Integer id) {
Users u = null;
try {
u = (Users) client.queryForObject("getUserById", id);
} catch (SQLException e) {
e.printStackTrace();
}
return u;
}
}
服务层接口IUserService.java
Java代码
package org.login.service;
import java.util.List;
import org.login.vo.Users;
public interface IUserService {
List<Users> getAllUser();
Users getUserById(Integer id);
boolean isLogin(Users user);
boolean insertUser(Users user);
boolean updateUser(Users user);
boolean deleteUser(Integer id);
}
package org.login.service;
import java.util.List;
import org.login.vo.Users;
public interface IUserService {
List<Users> getAllUser();
Users getUserById(Integer id);
boolean isLogin(Users user);
boolean insertUser(Users user);
boolean updateUser(Users user);
boolean deleteUser(Integer id);
}
服务层实现UserService.java
Java代码
package org.login.service.Impl;
import java.util.List;
import org.login.dao.IUserDAO;
import org.login.service.IUserService;
import org.login.vo.Users;
public class UserService implements IUserService {
private IUserDAO userDAO = null;
public IUserDAO getUserDAO() {
return userDAO;
}
public void setUserDAO(IUserDAO userDAO) {
this.userDAO = userDAO;
}
public boolean deleteUser(Integer id) {
return userDAO.deleteUser(id);
}
public List<Users> getAllUser() {
return userDAO.getAllUser();
}
public boolean insertUser(Users user) {
return userDAO.insertUser(user);
}
public boolean isLogin(Users user) {
return userDAO.isLogin(user);
}
public boolean updateUser(Users user) {
return userDAO.updateUser(user);
}
public Users getUserById(Integer id) {
return userDAO.getUserById(id);
}
}
package org.login.service.Impl;
import java.util.List;
import org.login.dao.IUserDAO;
import org.login.service.IUserService;
import org.login.vo.Users;
public class UserService implements IUserService {
private IUserDAO userDAO = null;
public IUserDAO getUserDAO() {
return userDAO;
}
public void setUserDAO(IUserDAO userDAO) {
this.userDAO = userDAO;
}
public boolean deleteUser(Integer id) {
return userDAO.deleteUser(id);
}
public List<Users> getAllUser() {
return userDAO.getAllUser();
}
public boolean insertUser(Users user) {
return userDAO.insertUser(user);
}
public boolean isLogin(Users user) {
return userDAO.isLogin(user);
}
public boolean updateUser(Users user) {
return userDAO.updateUser(user);
}
public Users getUserById(Integer id) {
return userDAO.getUserById(id);
}
}
Struts中Action实现Login.java
Java代码
package org.login.actions;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import javax.servlet.http.HttpServletRequest;
import javax.xml.registry.infomodel.User;
import org.login.page.PageUtil;
import org.login.service.IUserService;
import org.login.vo.Users;
import com.opensymphony.xwork2.ActionSupport;
import com.opensymphony.xwork2.ModelDriven;
import com.opensymphony.xwork2.Preparable;
public class Login extends ActionSupport implements ModelDriven<Users>, Preparable {
private IUserService userService ;
private String id ;
private int pageIndex=1 ;
private String pageBar ;
private List<Users> list;
private Users user;
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public IUserService getUserService() {
return userService;
}
public void setUserService(IUserService userService) {
this.userService = userService;
}
public int getPageIndex() {
return pageIndex;
}
public void setPageIndex(int pageIndex) {
this.pageIndex = pageIndex;
}
public String getPageBar() {
return pageBar;
}
public void setPageBar(String pageBar) {
this.pageBar = pageBar;
}
public List<Users> getList() {
return list;
}
public void setList(List<Users> list) {
this.list = list;
}
public Users getUser() {
return user;
}
public void setUser(Users user) {
this.user = user;
}
public void prepare() throws Exception {
if (id == null || id.length() == 0)
user = new Users();
else
user = getUserService().getUserById(Integer.parseInt(id));
}
public String execute() throws Exception {
if (getUserService().isLogin(user)) {
return SUCCESS;
}
return INPUT;
}
public String save() throws Exception {
if (getUserService().insertUser(user)) {
return SUCCESS;
}
return ERROR;
}
public String edit() {
return SUCCESS;
}
public String update() throws Exception {
if (getUserService().updateUser(user)) {
return SUCCESS;
}
return ERROR;
}
public String delete() throws Exception {
if (getUserService().deleteUser(Integer.valueOf(id))) {
return SUCCESS;
}
return ERROR;
}
public String findAllUsers() throws Exception {
PageUtil page = new PageUtil();
int count = getUserService().getCount();
page.setCurPage(pageIndex);
page.setTotalRow(count);
pageBar = page.getToolsMenu();
Map<String,Integer> pageMap = new HashMap<String,Integer>();
pageMap.put("start", page.getStart());
pageMap.put("end", page.getPageSize());
list = getUserService().getAllUser(pageMap);
return SUCCESS;
}
public Users getModel() {
return user;
}
}
package org.login.actions;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import javax.servlet.http.HttpServletRequest;
import javax.xml.registry.infomodel.User;
import org.login.page.PageUtil;
import org.login.service.IUserService;
import org.login.vo.Users;
import com.opensymphony.xwork2.ActionSupport;
import com.opensymphony.xwork2.ModelDriven;
import com.opensymphony.xwork2.Preparable;
public class Login extends ActionSupport implements ModelDriven<Users>, Preparable {
private IUserService userService ;
private String id ;
private int pageIndex=1 ;
private String pageBar ;
private List<Users> list;
private Users user;
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public IUserService getUserService() {
return userService;
}
public void setUserService(IUserService userService) {
this.userService = userService;
}
public int getPageIndex() {
return pageIndex;
}
public void setPageIndex(int pageIndex) {
this.pageIndex = pageIndex;
}
public String getPageBar() {
return pageBar;
}
public void setPageBar(String pageBar) {
this.pageBar = pageBar;
}
public List<Users> getList() {
return list;
}
public void setList(List<Users> list) {
this.list = list;
}
public Users getUser() {
return user;
}
public void setUser(Users user) {
this.user = user;
}
public void prepare() throws Exception {
if (id == null || id.length() == 0)
user = new Users();
else
user = getUserService().getUserById(Integer.parseInt(id));
}
public String execute() throws Exception {
if (getUserService().isLogin(user)) {
return SUCCESS;
}
return INPUT;
}
public String save() throws Exception {
if (getUserService().insertUser(user)) {
return SUCCESS;
}
return ERROR;
}
public String edit() {
return SUCCESS;
}
public String update() throws Exception {
if (getUserService().updateUser(user)) {
return SUCCESS;
}
return ERROR;
}
public String delete() throws Exception {
if (getUserService().deleteUser(Integer.valueOf(id))) {
return SUCCESS;
}
return ERROR;
}
public String findAllUsers() throws Exception {
PageUtil page = new PageUtil();
int count = getUserService().getCount();
page.setCurPage(pageIndex);
page.setTotalRow(count);
pageBar = page.getToolsMenu();
Map<String,Integer> pageMap = new HashMap<String,Integer>();
pageMap.put("start", page.getStart());
pageMap.put("end", page.getPageSize());
list = getUserService().getAllUser(pageMap);
return SUCCESS;
}
public Users getModel() {
return user;
}
}
8. 配置文件
struts.xml
Java代码
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE struts PUBLIC
"-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
"http://struts.apache.org/dtds/struts-2.0.dtd">
<struts>
<constant name="struts.objectFactory.spring.autoWire" value="type" />
<constant name="struts.objectFactory" value="spring" />
<include file="struts-default.xml"/>
<package name="struts2" extends="struts-default">
<default-interceptor-ref name="paramsPrepareParamsStack" />
<!-- aciton的class为applicationContext.xml中的注册名 -->
<action name="login" class="LoginAction">
<result name="success">/success.jsp</result>
<result name="input">/login.jsp</result>
</action>
<action name="save" class="LoginAction" method="save">
<result name="success" type="redirect-action">show.action</result>
<result name="error">/error.jsp</result>
</action>
<action name="edit" class="LoginAction" method="edit">
<result name="success">update.jsp</result>
</action>
<action name="update" class="LoginAction" method="update">
<result name="success" type="redirect-action">show.action</result>
<result name="error">/error.jsp</result>
</action>
<action name="delete" class="LoginAction" method="delete">
<result name="success" type="redirect-action">show.action</result>
<result name="error">/error.jsp</result>
</action>
<action name="show" class="LoginAction" method="findAllUsers">
<result name="success">/list.jsp</result>
<result name="error">/error.jsp</result>
</action>
</package>
</struts>
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE struts PUBLIC
"-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
"http://struts.apache.org/dtds/struts-2.0.dtd">
<struts>
<constant name="struts.objectFactory.spring.autoWire" value="type" />
<constant name="struts.objectFactory" value="spring" />
<include file="struts-default.xml"/>
<package name="struts2" extends="struts-default">
<default-interceptor-ref name="paramsPrepareParamsStack" />
<!-- aciton的class为applicationContext.xml中的注册名 -->
<action name="login" class="LoginAction">
<result name="success">/success.jsp</result>
<result name="input">/login.jsp</result>
</action>
<action name="save" class="LoginAction" method="save">
<result name="success" type="redirect-action">show.action</result>
<result name="error">/error.jsp</result>
</action>
<action name="edit" class="LoginAction" method="edit">
<result name="success">update.jsp</result>
</action>
<action name="update" class="LoginAction" method="update">
<result name="success" type="redirect-action">show.action</result>
<result name="error">/error.jsp</result>
</action>
<action name="delete" class="LoginAction" method="delete">
<result name="success" type="redirect-action">show.action</result>
<result name="error">/error.jsp</result>
</action>
<action name="show" class="LoginAction" method="findAllUsers">
<result name="success">/list.jsp</result>
<result name="error">/error.jsp</result>
</action>
</package>
</struts>
struts.properties文件
Java代码
struts.locale=zh_CN
struts.i18n.encoding=UTF-8
struts.objectFactory=spring
struts.locale=zh_CN
struts.i18n.encoding=UTF-8
struts.objectFactory=spring
ibatis的配置文件config.xml
Java代码
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE sqlMapConfig
PUBLIC "-//ibatis.apache.org//DTD SQL Map Config 2.0//EN"
"http://ibatis.apache.org/dtd/sql-map-config-2.dtd">
<sqlMapConfig>
<sqlMap resource="org/login/vo/users.xml"/>
</sqlMapConfig>
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE sqlMapConfig
PUBLIC "-//ibatis.apache.org//DTD SQL Map Config 2.0//EN"
"http://ibatis.apache.org/dtd/sql-map-config-2.dtd">
<sqlMapConfig>
<sqlMap resource="org/login/vo/users.xml"/>
</sqlMapConfig>
Spring配置文件applicationContext.xml
Java代码
<?xml version="1.0" encoding="UTF-8"?>
<beans default-autowire="byType"
xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd">
<bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource" destroy-method="close">
<property name="driverClassName" value="com.mysql.jdbc.Driver" />
<property name="url" value="jdbc:mysql://192.168.151.238:3306/chgl" />
<property name="username" value="vcom" />
<property name="password" value="vcom_8968888" />
</bean>
<bean id="client" class="org.springframework.orm.ibatis.SqlMapClientFactoryBean">
<property name="dataSource">
<ref local="dataSource"/>
</property>
<property name="configLocation">
<value>classpath:config.xml</value>
</property>
</bean>
<!-- bean中的class为实现接口的类;property的name为类中引用的属性名称;ref为spring注册的名称,如上面的client-->
<bean id="userDao"
class="org.login.dao.Impl.UserDAO">
<property name="client" ref="client" />
</bean>
<bean id="userService"
class="org.login.service.Impl.UserService">
<property name="userDAO" ref="userDao"></property>
</bean>
<bean id="LoginAction" class="org.login.actions.Login">
<property name="userService" ref="userService"></property>
</bean>
</beans>
<?xml version="1.0" encoding="UTF-8"?>
<beans default-autowire="byType"
xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd">
<bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource" destroy-method="close">
<property name="driverClassName" value="com.mysql.jdbc.Driver" />
<property name="url" value="jdbc:mysql://192.168.151.238:3306/chgl" />
<property name="username" value="vcom" />
<property name="password" value="vcom_8968888" />
</bean>
<bean id="client" class="org.springframework.orm.ibatis.SqlMapClientFactoryBean">
<property name="dataSource">
<ref local="dataSource"/>
</property>
<property name="configLocation">
<value>classpath:config.xml</value>
</property>
</bean>
<!-- bean中的class为实现接口的类;property的name为类中引用的属性名称;ref为spring注册的名称,如上面的client-->
<bean id="userDao"
class="org.login.dao.Impl.UserDAO">
<property name="client" ref="client" />
</bean>
<bean id="userService"
class="org.login.service.Impl.UserService">
<property name="userDAO" ref="userDao"></property>
</bean>
<bean id="LoginAction" class="org.login.actions.Login">
<property name="userService" ref="userService"></property>
</bean>
</beans>
9. UI层
登陆页面login.jsp
Java代码
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<%@ taglib uri="/struts-tags" prefix="s" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>login.jsp</title>
</head>
<body>
<s:form action="login" method="post">
<s:textfield name="userName" label="User Name" />
<s:password name="password" label="Password" />
<s:submit value="Submit" />
</s:form>
</body>
</html>
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<%@ taglib uri="/struts-tags" prefix="s" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>login.jsp</title>
</head>
<body>
<s:form action="login" method="post">
<s:textfield name="userName" label="User Name" />
<s:password name="password" label="Password" />
<s:submit value="Submit" />
</s:form>
</body>
</html>
添加用户页面adduser.jsp
Java代码
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<%@ taglib uri="/struts-tags" prefix="s" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>addUser.jsp</title>
</head>
<body>
<s:form action="save">
<s:textfield name="userName" label="User Name" />
<s:password name="password" label="Password" />
<s:submit value="Save" />
</s:form>
</body>
</html>
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<%@ taglib uri="/struts-tags" prefix="s" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>addUser.jsp</title>
</head>
<body>
<s:form action="save">
<s:textfield name="userName" label="User Name" />
<s:password name="password" label="Password" />
<s:submit value="Save" />
</s:form>
</body>
</html>
用户列表页面list.jsp
Java代码
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<%@ taglib uri="/struts-tags" prefix="s" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Users list</title>
<style type="text/css">
table {
border-collapse: collapse;
}
</style>
</head>
<body>
<br /><br /><br /><br />
<s:form action="show">
<table border="1" width="50%" align="center">
<tr bgcolor="#cccc00">
<td align="center">UserID</td>
<td align="center">UserName</td>
<td align="center">Password</td>
<td colspan="2" align="center">Options</td>
</tr>
<s:iterator value="list" id="user" status="st">
<tr <s:if test="#st.odd">style="background-color:#dddddd"</s:if>
<s:else>style="background-color:#eeeeee"</s:else>>
<td align="center"><s:property value="id" /></td>
<td align="center"> <s:property value="userName" /></td>
<td align="center"> <s:property value="password" /></td>
<td align="center">
<s:url id="update" action="edit">
<s:param name="id">
<s:property value="id" />
</s:param>
</s:url>
<s:a href="%{update}">update</s:a>
</td>
<td align="center">
<s:url id="delete" action="delete">
<s:param name="id">
<s:property value="id" />
</s:param>
</s:url>
<s:a href="%{delete}">delete</s:a>
</td>
</tr>
</s:iterator>
<tr>
<td colspan="4">
<s:property value="#request.pageBar" escape="false"/>
</td>
</tr>
</table>
</s:form>
</body>
</html>
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<%@ taglib uri="/struts-tags" prefix="s" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Users list</title>
<style type="text/css">
table {
border-collapse: collapse;
}
</style>
</head>
<body>
<br /><br /><br /><br />
<s:form action="show">
<table border="1" width="50%" align="center">
<tr bgcolor="#cccc00">
<td align="center">UserID</td>
<td align="center">UserName</td>
<td align="center">Password</td>
<td colspan="2" align="center">Options</td>
</tr>
<s:iterator value="list" id="user" status="st">
<tr <s:if test="#st.odd">style="background-color:#dddddd"</s:if>
<s:else>style="background-color:#eeeeee"</s:else>>
<td align="center"><s:property value="id" /></td>
<td align="center"> <s:property value="userName" /></td>
<td align="center"> <s:property value="password" /></td>
<td align="center">
<s:url id="update" action="edit">
<s:param name="id">
<s:property value="id" />
</s:param>
</s:url>
<s:a href="%{update}">update</s:a>
</td>
<td align="center">
<s:url id="delete" action="delete">
<s:param name="id">
<s:property value="id" />
</s:param>
</s:url>
<s:a href="%{delete}">delete</s:a>
</td>
</tr>
</s:iterator>
<tr>
<td colspan="4">
<s:property value="#request.pageBar" escape="false"/>
</td>
</tr>
</table>
</s:form>
</body>
</html>
用户更新页面update.jsp
Java代码
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<%@ taglib uri="/struts-tags" prefix="s" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>update.jsp</title>
</head>
<body>
<s:form action="update" method="post">
<s:textfield name="id" label="ID" value="%{id}" readonly="true"/>
<s:textfield name="userName" label="User Name" value="%{userName}" required="true"/>
<s:textfield name="password" label="Password" value="%{password}" required="true"/>
<s:submit value="Update" />
</s:form>
</body>
</html>
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<%@ taglib uri="/struts-tags" prefix="s" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>update.jsp</title>
</head>
<body>
<s:form action="update" method="post">
<s:textfield name="id" label="ID" value="%{id}" readonly="true"/>
<s:textfield name="userName" label="User Name" value="%{userName}" required="true"/>
<s:textfield name="password" label="Password" value="%{password}" required="true"/>
<s:submit value="Update" />
</s:form>
</body>
</html>
成功页面success.jsp
Java代码
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<%@ taglib uri="/struts-tags" prefix="s" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>success</title>
</head>
<body>
This is Success page. <br>
<br /><br />
<a href="show.action">显示用户列表</a> <a href="adduser.jsp">添加用户</a>
</body>
</html>
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<%@ taglib uri="/struts-tags" prefix="s" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>success</title>
</head>
<body>
This is Success page. <br>
<br /><br />
<a href="show.action">显示用户列表</a> <a href="adduser.jsp">添加用户</a>
</body>
</html>
失败页面error.jsp
Java代码
<%@ page language="java" import="java.util.*" pageEncoding="GB18030"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<base href="<%=basePath%>">
<title>My JSP 'error.jsp' starting page</title>
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="expires" content="0">
<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
<meta http-equiv="description" content="This is my page">
<!--
<link rel="stylesheet" type="text/css" href="styles.css">
-->
</head>
<body>
This is my JSP page. <br>
</body>
</html>
<%@ page language="java" import="java.util.*" pageEncoding="GB18030"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<base href="<%=basePath%>">
<title>My JSP 'error.jsp' starting page</title>
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="expires" content="0">
<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
<meta http-equiv="description" content="This is my page">
<!--
<link rel="stylesheet" type="text/css" href="styles.css">
-->
</head>
<body>
This is my JSP page. <br>
</body>
</html>
发表评论
-
struts2 redirect 参数 取不到
2009-12-03 16:07 2306关键字: struts2 redirect 参数 取不到 ... -
spring定时任务
2009-08-17 15:48 2100applicationContext.xml <?xm ... -
spring quartz 多定时任务
2009-08-17 15:31 1529<bean id="TaskAuto&qu ... -
The error occurred while applying a parameter map.
2009-08-17 11:37 21185关于“The error occurred whi ... -
用HttpSessionAttributeListener接口实现在线统计
2009-08-16 12:14 1358以下是一些不详细的代码,主要是说明原理: 捕获Sessio ... -
struts2 iterator status index
2009-08-14 17:34 11234<script type="text/ja ... -
ibatis The error occurred while applying a parameter map
2009-08-09 11:21 28463The error occurred while applyi ... -
struts2 标签截取字符串
2009-08-02 11:16 2410struts2 标签截取字符串,有点强大哦 <s:pr ... -
ibatis 双向关联不能实现
2009-08-01 11:07 1132最近用ibatis做持久层框架,好不容易吧关系给配置好了,又出 ... -
hibernate ibatis
2009-08-01 11:02 1404一。 inverse = ? ... -
struts2 selectedIndex 使用
2009-07-30 17:57 1472var ss = document.selectform ... -
struts2 类似 struts1的很低级问题
2009-07-30 15:25 1217本想通过超链接传递参数,但是网页地址栏会暴漏参数信息,于是选择 ... -
struts2 标签小体会
2009-07-30 15:16 1128<s:iterator id="m" ... -
ibatis 简单实例
2009-07-20 19:01 1610在 iBATIS SQL Maps 的世界 ... -
ibatis javaBean 书写问题
2009-07-18 15:55 1336There is no WRITEABLE property ... -
dwr spring集成
2009-07-14 18:55 2199最近用dwr做了个登陆验证的例子,可真是几经波折呀(程序很简单 ... -
spring拦截器
2009-07-02 11:31 1625今天在SSH中用到spring拦 ... -
Spring学习笔记之Bean基本管理(BeanFactory,ApplicationContext
2009-06-17 15:56 1090Spring2中: BeanFactory接口定义了6种方法 ... -
Beans, BeanFactory和ApplicationContext
2009-06-17 15:52 1095在Spring中,两个最基本 ... -
http://www.ibatis.com/dtd/sql-map-2.dtd
2009-06-16 23:06 7156在做spring ibatis整合测试的时候出现如下错误 实体 ...
相关推荐
标题 "ibatis+struts2.0+spring" 指的是一个集成开发环境,它结合了三个重要的Java企业级框架:iBatis、Struts2.0和Spring。这个项目可能是为了帮助开发者理解如何在实际应用中整合这三个组件,以便构建更高效、可...
Struts2.0、Spring、iBatis和JSON是Java Web开发中常用的技术栈,它们在构建企业级应用中发挥着关键作用。这篇详细的解释将深入探讨这些技术以及它们如何协同工作。 首先,Struts2.0是一个基于MVC(模型-视图-控制...
本示例是"Ibatis+struts2.0+Spring2.5"的整合,这是一个经典的Java Web开发技术栈,用于构建高效、灵活的企业级应用。下面将详细阐述这三个框架的集成及其核心功能。 1. **Ibatis**:Ibatis 是一个轻量级的持久层...
Struts1.2+Struts2.1.6+spring 2.0+hibernate3.1+Ibatis2.3 SSH
Struts2.0+Spring+Ibatis讲义
Struts1.2+Struts2.1.6+spring 2.0+hibernate3.1+Ibatis2.3内个框架的集成
Struts2.0+Spring2.5.1+ibatis2.3的整合是一个常见的Java Web应用程序开发模式,主要用于构建高效、可维护性高的企业级系统。这种整合将Struts2作为表现层框架,Spring作为控制层和业务层框架,而iBatis则作为数据...
Struts1.2、Spring2.0 和 iBATIS2.3 是早期广泛使用的Java Web开发框架组合,它们各自承担着不同的职责,共同构建了一个功能完善的新闻发布系统。在这个系统中,Struts作为表现层框架,负责处理用户请求并展现响应;...
"spring2.0+struts2.0+ibatis2.3完整整合"是一个经典的Java Web开发组合,这个组合在过去的许多年里被广泛应用,为开发者提供了强大的功能和灵活的架构。 **Spring框架(2.0版本)** Spring是一个全面的后端应用...
Struts2.0、Spring和iBATIS是Java开发中常用的三大开源框架,它们的集成使用可以构建出高效、灵活的企业级应用。本文档主要涵盖了这三者在实际项目中的配置与应用。 首先,我们来看Struts2.0框架的配置。Struts2的...
在IT领域,构建高效、可扩展的企业级应用是至关重要的,而"Ext2.0+Struts2+Spring2.5+Ibatis2"的组合就是一种常见的技术栈,用于实现这样的目标。这个技术组合提供了从用户界面到数据访问的全方位解决方案。 **Ext...
Struts1、Spring2.0和iBatis是Java Web开发中的三个重要框架,它们各自在应用程序的不同层面发挥着关键作用。Struts1是MVC(Model-View-Controller)架构的一个实现,负责处理用户的请求并展示结果;Spring2.0则是一...
本演示示例主要使用目前最新,最流行技术Struts2.1 +Spring 2.5.1+ibatis2.3整合开发而成,这与我以前发布的版本中最大特色是整合了Spring2.5.1中的注解功能和半自动化工具ibatis技术,这是本示例的两大特色,简化了配置...
【标题】"Maven+Spring+Ibatis+Struts2.0+MQ+Memcached 项目构建"涉及了多个核心的Java开发技术和框架,这些技术的集成应用在现代企业级应用开发中非常常见。让我们逐一深入理解这些技术及其在项目中的作用。 1. ...
本项目"Structs2.0+Spring2.5+Ibatis整合例子"就是这样一个示例,展示了如何将Struts2、Spring和iBatis这三个流行的技术栈整合在一起,以实现MVC(模型-视图-控制器)架构。以下将详细阐述这三个框架的核心功能以及...
Struts1.2、Spring2.0和Ibatis2.0是Java开发中经典的三大开源框架,它们在企业级应用开发中广泛使用。这个小项目是将这三个框架整合在一起,以实现一个简单但完整的功能。下面我们将深入探讨这些知识点。 **Struts...
总结起来,这个"struts1.2+ibatis+DWR2.0+MySql5.0增删改查的小例子"涵盖了Web开发中的一些核心技术和实践,对于初学者来说,这是一个很好的学习资源,能够帮助他们快速掌握Java Web开发的基础知识,并逐步深入到更...
采用了struts2.0,spring2.2,ibatis,quartz,extjs3.0 实现了关于短信的调度框架,对接收人维护,动态添加每日短信数据,编写短信模版,最后通过quartz定时发送,因为短信接口收费所以不提供,需要jar包自己下载,...
Struts2.0+Springframework2.5+ibatis2.3完美整合用户登录及增删改查示例
这个压缩包文件包含了一个基于J2EE架构的高级项目源码,主要采用了Struts2.0、Hibernate、Spring和ExtJS这四大核心技术。下面将详细解释这些技术及其在项目中的应用。 **Struts2.0** 是一个MVC(Model-View-...