IDEA上的新建文件如何添加类型
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了IDEA上的新建文件如何添加类型相关的知识,希望对你有一定的参考价值。
参考技术A 123456789101112131415161718192021222324252627282930313233341、首先使用“附件”组中的“记事本”程序输入如下一段文本,并且将此段文本保存为jpd.reg。REGEDIT4[HKEY-CLASSES-ROOT\.Jdp]@="JdpFile"[HKEY-CLASSES-ROOT\JdpFile]@="Jdp文件"[HKEY-CLASSES-ROOT\JdpFile\shell][HKEY-CLASSES-ROOT\JdpFile\shell\open][HKEY-CLASSES-ROOT\JdpFile\shell\open\command]@="\"C:\\Windows\\NotePad.EXE\"\"%1\" "[HKEY-CLASSES-ROOT\JdpFile\shell\print][HKEY-CLASSES-ROOT\JdpFile\shell\print\command]@="\"C:\\Windows\\Notepad.EXE\" /p \"%1\" "[HKEY﹏CLASSES﹏ROOT\JdpFile\shell\printto][HKEY-CLASSES-ROOT\JdpFile\shell\printto\command]@="\"C:\\Windows\\Notepad.EXE\"\"%1\" \"%2\"\"%3\"\"%4\" "[HKEY-CLASSES-ROOT\JdpFile\DefaultIcon]@="C:\\ Windows\\Notepad.EXE ,1"[HKEY-CLASSES-ROOT\JdpFile\Insertble]@=" "[HKEY-CLASSES-ROOT\JdpFile\protocol][HKEY-CLASSES-ROOT\JdpFile\protocol\StdFileEditing][HKEY-CLASSES-ROOT\JdpFile\protocol\StdFileEditing\verb][HKEY-CLASSES-ROOT\JdpFile\protocol\StdFileEditing\verb\0]@="编辑(&E) "[HKEY-CLASSES-ROOT\JdpFile\protocol\StdFileEditing\server]@="C:\\ Windows\\Notepad.EXE"2、启动注册表编辑器。3、从“注册表”文件中选择“引入<a href="/s?wd=%E6%B3%A8%E5%86%8C%E8%A1%A8%E6%96%87%E4%BB%B6&tn=44039180_cpr&fenlei=mv6quAkxTZn0IZRqIHckPjm4nH00T1d9nWK9uHwhn1Nhmvckn1T0mv4YUWYYPj01rHD3n7qWTZc0IgF_5y9YIZ0lQzqlpA-bmyt8mh7GuZR8mvqVQL7dugPYpyq8Q1nzrHfvPHbYn1D4PWczP1RzPf" target="_blank" class="baidu-highlight">注册表文件</a>”,然后输入jpd.reg文件,则将此文件引人到注册表中,此时,.jpd文件扩展名已经添加到HKEY-CLASSES-ROOT根键下。4、打开HKEY-CLASSES_ROOT\.Jdp分支,然后在此分支下添加一个“ShellNew”子键。5、在“ShellNew”子键中添加一个名为“NullFile”的空串。6、关闭注册表编辑器。7、重新启动计算机。8、打开“新建”菜单,我们发现,在“新建”菜单中将添加一个名为“Jdp文件”的选项。6.IDEA用maven新建带spring框架的工程
5.IDEA用maven新建带spring框架的工程
1.使用maven骨架新建web工程
1.1新建web工程
1.2新建好包,并制定好文件类型
1.3添加框架支持(本文核心,不建议手动添加框架支持)
2.添加spring框架的支持,并添加空白的配置文件
3.配置web.xml(除了springmvc的核心配置,之外如果不需要继承spring的话其他配置可不用添加)
<?xml version="1.0" encoding="UTF-8"?> <web-app xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" version="2.5"> <!-- 1.加入Spring和mybatis的配置文件 --> <context-param> <param-name>contextConfigLocation</param-name> <param-value>classpath:spring-mybatis.xml</param-value> </context-param> <!--2.配置spring监听器:读取配置文件中的JavaBean--> <listener> <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class> </listener> <!-- 3.加载springmvc的核心控制器:所有请求由这个控制器进行分配处理 --> <servlet> <servlet-name>dispatcherServlet</servlet-name> <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class> <init-param> <param-name>contextConfigLocation</param-name> <param-value>classpath:spring-mvc.xml</param-value> </init-param> <load-on-startup>1</load-on-startup> </servlet> <servlet-mapping> <servlet-name>dispatcherServlet</servlet-name> <url-pattern>/</url-pattern> </servlet-mapping> <!-- 4.配置字符编码,解决中文乱码问题:仅限post请求 --> <filter> <filter-name>CharacterEncodingFilter</filter-name> <filter-class>org.springframework.web.filter.CharacterEncodingFilter</filter-class> <init-param> <param-name>encoding</param-name> <param-value>UTF-8</param-value> </init-param> </filter> <filter-mapping> <filter-name>CharacterEncodingFilter</filter-name> <url-pattern>/*</url-pattern> </filter-mapping> </web-app>
4.配置spring-mvc.xml
<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:context="http://www.springframework.org/schema/context" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:aop="http://www.springframework.org/schema/aop" xmlns:mvc="http://www.springframework.org/schema/mvc" xmlns:jee="http://www.springframework.org/schema/jee" xmlns:tx="http://www.springframework.org/schema/tx" xsi:schemaLocation=" http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop.xsd http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc.xsd http://www.springframework.org/schema/jee http://www.springframework.org/schema/jee/spring-jee.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx.xsd"> <!--1.配置业务层的扫描--> <context:component-scan base-package="nick.controller"/> <context:component-scan base-package="nick.service"/> <context:component-scan base-package="nick.dao"/> <!--2.启用注解--> <mvc:annotation-driven/> <!-- 3.配置视图转发器 --> <bean id="viewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver"> <property name="prefix" value="/" /> <property name="suffix" value=".jsp" /> </bean> </beans>
5.至此就配置好了,接下来使用tomcat配置好,运行起来测试即可
以上是关于IDEA上的新建文件如何添加类型的主要内容,如果未能解决你的问题,请参考以下文章
Intellij Idea 15 下新建 Hibernate 项目以及如何添加配置