说明:这是一个论坛后台管理的一个demo,主要是为了了解struts2的开发流程。同时这里我们使用了extJS3.0这个框架,需要在工程中引入相关的框架文件。webRoot/res
中有favicon.ico、forum.css、read_forum.gif
这个三个文件。而在webRoot/admin/ext
中有adapter文件夹、resources文件夹、ext-all.js、ext-lang-zh-CN.js
,其中这里的两个文件夹是直接从extJS3.0中拷贝过来的。(工程struts2_3000_BBS2009_06
)
一、建立数据库
create database bbs2009;
use bbs2009;
CREATE TABLE `_category` (
`id` int(10) NOT NULL AUTO_INCREMENT,
`name` varchar(50) DEFAULT NULL,
`description` varchar(200) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8
二、建立相关的包
-
com.bjsxt.bbs2009.modle
存放实体 -
com.bjsxt.bbs2009.service
存放业务类 -
com.bjsxt.bbs2009.action
存放action -
com.bjsxt.bbs2009.util
存放工具类
说明:这里我们建立的包不太符合MVC开发模式,这里设计的较为简单。
三、开发
3.1实体
Category.java
package com.bjsxt.bbs2009.modle;
public class Category {
private int id;
private String name ;
private String description;
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
}
3.2工具类
DB.java
package com.bjsxt.bbs2009.util;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;
public class DB {
public static Connection createConne(){
Connection connection = null;
try {
Class.forName("com.mysql.jdbc.Driver");
connection = DriverManager.getConnection("jdbc:mysql://localhost:3305/bbs2009", "root", "walp1314");
} catch (ClassNotFoundException | SQLException e) {
e.printStackTrace();
}
return connection;
}
public static PreparedStatement prepare(Connection conn, String sql) {
PreparedStatement ps = null;
try {
ps = conn.prepareStatement(sql);
} catch (SQLException e) {
e.printStackTrace();
}
return ps;
}
public static void close(Connection conn) {
if(conn == null) return ;
try {
conn.close();
conn = null;
} catch (SQLException e) {
e.printStackTrace();
}
}
public static void close(Statement stmt) {
try {
stmt.close();
stmt = null;
} catch (SQLException e) {
e.printStackTrace();
}
}
public static void close(ResultSet rs) {
try {
rs.close();
rs = null;
} catch (SQLException e) {
e.printStackTrace();
}
}
}
3.3业务
CategoryService.java
package com.bjsxt.bbs2009.service;
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.util.ArrayList;
import java.util.List;
import com.bjsxt.bbs2009.modle.Category;
import com.bjsxt.bbs2009.util.DB;
public class CategoryService {
public void add(Category c){
Connection connection = DB.createConne();
String sql = "insert into _category values(null, ?, ?)";
PreparedStatement ps = DB.prepare(connection, sql);
try{
ps.setString(1, c.getName());
ps.setString(2, c.getDescription());
ps.executeUpdate();
}catch(SQLException e){
e.printStackTrace();
}
DB.close(ps);
DB.close(connection);
}
public List list(){
Connection connection = DB.createConne();
String sql = "select * from _category";
PreparedStatement ps = DB.prepare(connection, sql);
List categories = new ArrayList();
try{
ResultSet result = ps.executeQuery();
while(result.next()){
Category category = new Category();
category.setId(result.getInt("id"));
category.setName(result.getString("name"));
category.setDescription(result.getString("description"));
categories.add(category);
}
}catch(SQLException e){
e.printStackTrace();
}
DB.close(ps);
DB.close(connection);
return categories;
}
public void delete(Category c){
deleteById(c.getId());
}
public void deleteById(int id){
Connection connection = DB.createConne();
String sql = "delete from _category where id = ?";
PreparedStatement ps = DB.prepare(connection, sql);
try{
ps.setInt(1, id);
ps.executeUpdate();
}catch(SQLException e){
e.printStackTrace();
}
DB.close(ps);
DB.close(connection);
}
public void update(Category c){
Connection connection = DB.createConne();
String sql = "update _category set name = ? , description = ? where id = ?";
PreparedStatement ps = DB.prepare(connection, sql);
try{
ps.setString(1, c.getName());
ps.setString(2, c.getDescription());
ps.setInt(3, c.getId());
ps.executeUpdate();
}catch(SQLException e){
e.printStackTrace();
}
DB.close(ps);
DB.close(connection);
}
public Category loadById(int id){
Connection connection = DB.createConne();
String sql = "select * from _category where id = ?";
PreparedStatement ps = DB.prepare(connection, sql);
Category category = null;
try{
ps.setInt(1, id);
ResultSet result = ps.executeQuery();
if(result.next()){
category = new Category();
category.setId(result.getInt("id"));
category.setName(result.getString("name"));
category.setDescription(result.getString("description"));
}
}catch(SQLException e){
e.printStackTrace();
}
DB.close(ps);
DB.close(connection);
return category;
}
}
说明:这里我们提供了
- 添加方法:
public void add(Category c)
- 查询所有帖子方法:
public List
list() - 删除帖子:
public void delete(Category c)
- 根据id删除帖子方法:
public void deleteById(int id)
- 更新:
public void update(Category c)
- 根据id查找:
public Category loadById(int id)
3.4action
struts.xml
/admin/index.html
/admin/{1}_{2}.jsp
/admin/{1}_{2}.jsp
/index.jsp
CategoryAction.java
package com.bjsxt.bbs2009.action;
import java.util.List;
import com.bjsxt.bbs2009.modle.Category;
import com.bjsxt.bbs2009.service.CategoryService;
import com.opensymphony.xwork2.ActionSupport;
public class CategoryAction extends ActionSupport{
private List categories;
//这里我们一般要使用单例,如果交给spring管理就是单例
private CategoryService service = new CategoryService();
private Category category;//struts2会将其初始化
private int id ;
public String list(){
categories = service.list();
return SUCCESS;
}
public List getCategories() {
return categories;
}
public String add(){
service.add(category);
return SUCCESS;
}
public String addInput(){
return INPUT;
}
public String update(){
service.update(category);
return SUCCESS;
}
public String updateInput(){
this.category = this.service.loadById(id);
return INPUT;
}
public String delete(){
service.deleteById(id);
return SUCCESS;
}
public void setCategories(List categories) {
this.categories = categories;
}
public CategoryService getService() {
return service;
}
public void setService(CategoryService service) {
this.service = service;
}
public Category getCategory() {
return category;
}
public void setCategory(Category category) {
this.category = category;
}
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
}
说明:这里我们需要的功能就是在主页面中能显示出帖子的名字,然后我们可以对其进行管理(添加,删除,修改)。需要注意的是我们需要保存Category对象和id,以便于之后的取值。
主页面(admin/index.html
)
BBS2009论坛管理平台
说明:
- 1.在struts中:
/index.jsp
这是配置的用户访问界面,当我们使用地址:
http://localhost:8080/struts2_3000_BBS2009_06/Category_list
访问时可以看到相关的帖子。
- 2.在后台,我们使用地址:
http://localhost:8080/struts2_3000_BBS2009_06/admin/index.html
访问到后台首页。当我们点击首页中的Category列表
按钮时就会进行跳转,我们可以看到index.html
中:
var item1 = new Ext.Panel( {
title : 'Category管理',
//html : '',
cls : 'empty',
items : [
new Ext.Button({
id : 'Category_list',
text : 'Category列表',
width : '100%',
listeners : {
click : addPanel
}
}),
这里可以看到点击后就去找Category_list
这个action。取得相关的数据后返回Category_list.java
<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
<%@taglib uri="/struts-tags" prefix="s" %>
Category_list
添加Category
|
|
">删除Category|
">更新Category
然后就可以进行相应的管理操作。注意在此页面中我们不仅要显示相关的操作,同时还要显示出相关的信息,注意取得信息的写法。
3.4.1添加
点击添加按钮,则调用action的addInput方法,返回INPUT
,跳转到Category_addInput.jsp
,
输入相关的值之后跳转到Category_add.jsp
显示添加成功消息,添加成功。
3.4.2删除
点击删除按钮,调用action的delete方法,删除之后返回Category_delete.jsp
显示删除成功的消息。
3.4.3修改
点击修改按钮,调用action的updateInput方法,返回INPUT
,跳转到Category_updateInput.jsp
,
添加之后跳转到Category_update.jsp
页面显示修改成功。
最后:
这个demo并不好看,但是主要是用来说明使用通配符配置action和了解struts2的执行流程,加深我们对struts2使用方法的理解。