SSH开发个人博客(一)

java jdk1.8
依赖包版本分别用 struts2.3.1,hibernate4.2,spring
先做个首页面,使用bootstrap框架就能很轻松的制作一个页面,命名为myBlog.html。
在eclipse中建立一个web项目,配置web.xml



  ssh_demo
  
    myBlog.html
  
  
  
    struts2
    org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter                    
  
  
    struts2
    /*
  

建立struts2.xml配置文件





    
    
        /myBlog.html        
    
    

blogAction:

public class blogAction extends ActionSupport {
    public String execute() throws Exception {
        return SUCCESS;
    }   
}

启动tomcat,效果如下:


SSH开发个人博客(一)_第1张图片

项目工程结构如下:


SSH开发个人博客(一)_第2张图片

你可能感兴趣的:(SSH开发个人博客(一))