minSSH的配置文件

resources/conf/jdbc.properties

数据库配置文件,配置数据库连接信息。
`jdbc.driverClassName=com.mysql.jdbc.Driver      jdbc驱动
 jdbc.url=jdbc:mysql://localhost:3306/minssh?useUnicode=true&characterEncoding=UTF-8
 jdbc.username=root    用户名
 jdbc.password=123456   密码
 `   

resources/spring

spring配置文件。
applicationContext.xml 总配置




    
    
        
            
                classpath*:conf/*.properties
            
        
    

    
        
        
        
        
        
        
        
              
        
        
        
        
        
        
        
        
        
                
        
    

    
    
        
        
        
            
                                 
                classpath*:com/ssh/domain/hbm
            
         
            
        
            
                ${jdbc.dialect}
                true
                true
                                
                
                
                
                                
                
                
                             
            
        
    

    



  
      
     
     
     
  



        
    
    
    
 

applicationContext-Quartz.xml

定时器配置







applicationContext-Service.xml

Service层注入配置





    
    
    
    
    
    
    
    

xwork.xml

xwork总配置文件




    

    
          
            
            
                
                
            
        
         
        
          
            /common/error_500.jsp
        
    

     

xwork-home.xml 子配置文件




    

        
            /index.jsp 
            /home/excel_do.jsp 
            /home/upload_file_do.jsp 
            /home/download_list_file_do.jsp   
            /home/test.jsp
            /ttttt.jsp
        

        
        
        
            /home/download_list_file_do.jsp
            /home/message.jsp           
        
        
        
            /home/download_list_file_do.jsp
            /home/message.jsp           
        

        

    


前台页面请求样式为http://localhost:8080/加package里的name加action你的name加!加active里的请求的方法名加在web.xml文件中配置的页面后缀再加需要传输的数据。
如http://localhost:8080/home/home!home.htm。

你可能感兴趣的:(minSSH的配置文件)