idea设置常用自设置快捷键及坐标

         
             
               org.mybatis
               mybatis
               3.5.5
             

             
             
               mysql
               mysql-connector-java
               5.1.46
             

             
             
               junit
               junit
               4.13
               test
             

             
             
               org.slf4j
               slf4j-api
               1.7.20
             

             
             
               ch.qos.logback
               logback-classic
               1.2.3
             

             
             
               ch.qos.logback
               logback-core
               1.2.3
             
   mybatis 坐标:mb
-------------------------------------------------------------------------------------------------------------------------

   
       
       
            javax.servlet
            javax.servlet-api
            3.1.0
            provided
       

       
       
            commons-io
            commons-io
            2.11.0
       

       
            com.alibaba.fastjson2
            fastjson2
            2.0.26
       
    servlet坐标:sl还有 ser

------------------------------------------------------------------------------------------------------------------------

   
           
               
                    org.apache.tomcat.maven
                    tomcat7-maven-plugin
                    2.2
                   
                        utf-8
                        8088
                        /day12
                   

               

           

       
                  tomcat坐标:tc

--------------------------------------------------------------------------------------------------------------------

@Test
public void testSelectAll() throws IOException {
    //1. 获取SqlSessionFactory
    String resource = "mybatis-config.xml";
    InputStream inputStream = Resources.getResourceAsStream(resource);
    SqlSessionFactory sqlSessionFactory = new SqlSessionFactoryBuilder().build(inputStream);
    //2. 获取SqlSession对象
    SqlSession sqlSession = sqlSessionFactory.openSession();
}   mybatis获取核心类Java快捷键:myb

-------------------------------------------------------------------------------------------------------------------------

response.setContentType("text/html;charset=utf-8");

解决响应乱码Java:rsc

-------------------------------------------------------------------------------------------------------------------------

你可能感兴趣的:(intellij-idea,mybatis,java)